/*
Theme Name: BoosteSEO
Theme URI: https://boosteseo.com
Author: BoosteSEO
Author URI: https://boosteseo.com
Description: Thème premium pour BoosteSEO — plateforme de netlinking haut de gamme. Design luxe, sombre et moderne, optimisé pour la conversion et le SEO.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boosteseo
Tags: e-commerce, woocommerce, custom-logo, custom-menu, featured-images, full-width-template
*/

/* =====================================================
   BoosteSEO Premium Theme — Core Styles
   ===================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Colors */
  --bseo-black: #0a0a0a;
  --bseo-dark: #111111;
  --bseo-dark-2: #1a1a1a;
  --bseo-dark-3: #222222;
  --bseo-anthracite: #2d2d2d;
  --bseo-gray: #888888;
  --bseo-gray-light: #b0b0b0;
  --bseo-white: #f5f5f5;
  --bseo-pure-white: #ffffff;
  --bseo-green: #1db954;
  --bseo-green-deep: #0d7a3a;
  --bseo-green-glow: rgba(29, 185, 84, 0.15);
  --bseo-gold: #c9a84c;
  --bseo-gold-light: #e0c872;
  --bseo-gold-glow: rgba(201, 168, 76, 0.12);
  --bseo-red: #e74c3c;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1280px;
  --gap: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);

  /* Borders & Radius */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-glow-green: 0 0 30px rgba(29, 185, 84, 0.2);
  --shadow-glow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bseo-black);
  color: var(--bseo-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bseo-green);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--bseo-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bseo-pure-white);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  color: var(--bseo-gray-light);
  margin-bottom: 1em;
}

/* --- Layout --- */
.bseo-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.bseo-section {
  padding: var(--section-pad) 0;
  position: relative;
}

.bseo-section--dark {
  background: var(--bseo-dark);
}

.bseo-section--darker {
  background: var(--bseo-black);
}

.bseo-section-title {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.bseo-section-title span {
  color: var(--bseo-green);
}

.bseo-section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--bseo-gray);
  max-width: 680px;
  margin: 0 auto 48px;
}

.bseo-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--bseo-gold);
  margin-bottom: 12px;
}

.bseo-grid {
  display: grid;
  gap: var(--gap);
}

.bseo-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bseo-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bseo-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .bseo-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .bseo-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bseo-grid--4,
  .bseo-grid--3,
  .bseo-grid--2 { grid-template-columns: 1fr; }
}

/* --- Buttons --- */
.bseo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bseo-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.bseo-btn:hover::before {
  opacity: 1;
}

.bseo-btn--primary {
  background: linear-gradient(135deg, var(--bseo-green), var(--bseo-green-deep));
  color: var(--bseo-pure-white);
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.3);
}

.bseo-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-green);
  color: var(--bseo-pure-white);
}

.bseo-btn--secondary {
  background: transparent;
  color: var(--bseo-gold);
  border: 1px solid var(--bseo-gold);
}

.bseo-btn--secondary:hover {
  background: var(--bseo-gold);
  color: var(--bseo-black);
  transform: translateY(-2px);
}

.bseo-btn--gold {
  background: linear-gradient(135deg, var(--bseo-gold), var(--bseo-gold-light));
  color: var(--bseo-black);
  font-weight: 700;
}

.bseo-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

/* --- Header / Navigation --- */
.bseo-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.bseo-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.bseo-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bseo-logo img {
  height: 42px;
  width: auto;
  transition: height var(--transition);
}

.bseo-header.scrolled .bseo-logo img {
  height: 34px;
}

.bseo-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.bseo-nav__list {
  display: flex;
  list-style: none;
  gap: 28px;
}

.bseo-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bseo-gray-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.bseo-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bseo-green);
  transition: width var(--transition);
}

.bseo-nav__link:hover,
.bseo-nav__link.active {
  color: var(--bseo-pure-white);
}

.bseo-nav__link:hover::after,
.bseo-nav__link.active::after {
  width: 100%;
}

.bseo-nav__cart {
  position: relative;
  color: var(--bseo-white);
  font-size: 1.2rem;
}

.bseo-nav__cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--bseo-green);
  color: var(--bseo-pure-white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.bseo-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.bseo-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bseo-white);
  margin: 6px 0;
  transition: all var(--transition);
}

@media (max-width: 900px) {
  .bseo-menu-toggle { display: block; }
  
  .bseo-nav__list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bseo-dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }

  .bseo-nav__list.open {
    right: 0;
  }
}

/* --- Hero Section --- */
.bseo-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.bseo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bseo-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(29,185,84,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(29,185,84,0.04) 0%, transparent 40%);
}

.bseo-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='1' cy='1' r='0.5' fill='%23ffffff08'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.bseo-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.bseo-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bseo-green-glow);
  border: 1px solid rgba(29,185,84,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bseo-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s var(--ease) both;
}

.bseo-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s var(--ease) 0.1s both;
}

.bseo-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--bseo-green), var(--bseo-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bseo-hero__desc {
  font-size: 1.15rem;
  color: var(--bseo-gray);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s var(--ease) 0.2s both;
}

.bseo-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.bseo-hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeInUp 0.6s var(--ease) 0.4s both;
}

.bseo-hero__stat {
  text-align: left;
}

.bseo-hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--bseo-green);
}

.bseo-hero__stat-label {
  font-size: 0.8rem;
  color: var(--bseo-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .bseo-hero__stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- Why Choose Us / Features --- */
.bseo-features__card {
  background: var(--bseo-dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bseo-features__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bseo-green), var(--bseo-gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.bseo-features__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(29,185,84,0.15);
}

.bseo-features__card:hover::before {
  opacity: 1;
}

.bseo-features__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--bseo-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--bseo-green);
}

.bseo-features__card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.bseo-features__card p {
  font-size: 0.92rem;
  color: var(--bseo-gray);
}

/* --- Blog Network Section --- */
.bseo-network__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.bseo-network__toggle-label {
  font-size: 0.9rem;
  color: var(--bseo-gray-light);
}

.bseo-toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
}

.bseo-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.bseo-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--bseo-anthracite);
  border-radius: 28px;
  transition: var(--transition);
}

.bseo-toggle-slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--bseo-white);
  border-radius: 50%;
  transition: var(--transition);
}

.bseo-toggle-switch input:checked + .bseo-toggle-slider {
  background: var(--bseo-green);
}

.bseo-toggle-switch input:checked + .bseo-toggle-slider::before {
  transform: translateX(24px);
}

.bseo-blog-card {
  background: var(--bseo-dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.bseo-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,0.15);
}

.bseo-blog-card__img {
  height: 180px;
  background: var(--bseo-dark-3);
  overflow: hidden;
  position: relative;
}

.bseo-blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.bseo-blog-card:hover .bseo-blog-card__img img {
  transform: scale(1.05);
}

.bseo-blog-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--bseo-gold);
  color: var(--bseo-black);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bseo-blog-card__body {
  padding: 24px;
}

.bseo-blog-card__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--bseo-pure-white);
}

.bseo-blog-card__name.hidden-name {
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

.bseo-blog-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.bseo-metric {
  text-align: center;
  padding: 10px 6px;
  background: var(--bseo-dark-3);
  border-radius: var(--radius-sm);
}

.bseo-metric__value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bseo-green);
}

.bseo-metric__label {
  font-size: 0.65rem;
  color: var(--bseo-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* --- Steps / How it Works --- */
.bseo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.bseo-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.bseo-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(29,185,84,0.12);
  margin-bottom: 16px;
  line-height: 1;
}

.bseo-step__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bseo-green-glow);
  border: 1px solid rgba(29,185,84,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bseo-green);
}

.bseo-step h4 {
  margin-bottom: 8px;
}

.bseo-step p {
  font-size: 0.88rem;
  color: var(--bseo-gray);
}

@media (max-width: 900px) {
  .bseo-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .bseo-steps { grid-template-columns: 1fr; }
}

/* --- Testimonials --- */
.bseo-testimonials-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}

.bseo-testimonial {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--bseo-dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.bseo-testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(29,185,84,0.08);
}

.bseo-testimonial__stars {
  display: flex;
  gap: 2px;
  color: var(--bseo-gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.bseo-testimonial__text {
  font-size: 0.95rem;
  color: var(--bseo-gray-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.bseo-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bseo-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bseo-green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bseo-green);
  font-size: 1rem;
}

.bseo-testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bseo-pure-white);
}

.bseo-testimonial__role {
  font-size: 0.78rem;
  color: var(--bseo-gray);
}

@media (max-width: 900px) {
  .bseo-testimonial { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 640px) {
  .bseo-testimonial { flex: 0 0 85%; }
}

/* --- Comparison Table --- */
.bseo-comparison {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
}

.bseo-comparison th,
.bseo-comparison td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.bseo-comparison thead th {
  background: var(--bseo-dark-2);
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bseo-comparison thead th:nth-child(2) {
  background: linear-gradient(180deg, rgba(29,185,84,0.15), rgba(29,185,84,0.05));
  color: var(--bseo-green);
  border-top: 3px solid var(--bseo-green);
}

.bseo-comparison tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.bseo-comparison td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--bseo-pure-white);
}

.bseo-check { color: var(--bseo-green); font-weight: 700; }
.bseo-cross { color: var(--bseo-gray); }
.bseo-partial { color: var(--bseo-gold); }

/* --- Product Cards (WooCommerce) --- */
.bseo-products .product {
  background: var(--bseo-dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

.bseo-products .product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.bseo-products .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 16px 20px 8px;
  color: var(--bseo-pure-white);
}

.bseo-products .price {
  padding: 0 20px 16px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--bseo-green);
  font-weight: 700;
}

.bseo-products .add_to_cart_button,
.bseo-products .button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--bseo-green), var(--bseo-green-deep));
  color: var(--bseo-pure-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
}

.bseo-products .add_to_cart_button:hover,
.bseo-products .button:hover {
  box-shadow: var(--shadow-glow-green);
  transform: translateY(-1px);
}

/* --- Footer --- */
.bseo-footer {
  background: var(--bseo-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 24px;
}

.bseo-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.bseo-footer__brand p {
  font-size: 0.88rem;
  color: var(--bseo-gray);
  margin-top: 16px;
  max-width: 300px;
}

.bseo-footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bseo-gold);
  margin-bottom: 20px;
}

.bseo-footer__links {
  list-style: none;
}

.bseo-footer__links li {
  margin-bottom: 10px;
}

.bseo-footer__links a {
  color: var(--bseo-gray);
  font-size: 0.88rem;
  transition: color var(--transition);
}

.bseo-footer__links a:hover {
  color: var(--bseo-green);
}

.bseo-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--bseo-gray);
}

.bseo-footer__social {
  display: flex;
  gap: 16px;
}

.bseo-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bseo-dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bseo-gray);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.bseo-footer__social a:hover {
  background: var(--bseo-green);
  color: var(--bseo-pure-white);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .bseo-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .bseo-footer__grid {
    grid-template-columns: 1fr;
  }
  .bseo-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- CTA Banner --- */
.bseo-cta {
  text-align: center;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.bseo-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(29,185,84,0.08), transparent 70%);
}

.bseo-cta__content {
  position: relative;
  z-index: 2;
}

.bseo-cta h2 {
  margin-bottom: 16px;
}

.bseo-cta p {
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bseo-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.bseo-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- WooCommerce Overrides --- */
.woocommerce .quantity .qty {
  background: var(--bseo-dark-3);
  color: var(--bseo-white);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-family: var(--font-mono);
}

.woocommerce-cart .woocommerce-cart-form table {
  background: var(--bseo-dark-2);
  border-radius: var(--radius);
  overflow: hidden;
}

.woocommerce-cart .woocommerce-cart-form th {
  background: var(--bseo-dark-3);
  color: var(--bseo-pure-white);
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.woocommerce-cart .woocommerce-cart-form td {
  border-color: rgba(255,255,255,0.05);
  color: var(--bseo-gray-light);
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: linear-gradient(135deg, var(--bseo-green), var(--bseo-green-deep)) !important;
  color: var(--bseo-pure-white) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all var(--transition) !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  box-shadow: var(--shadow-glow-green) !important;
  transform: translateY(-1px) !important;
}

.woocommerce-message,
.woocommerce-info {
  background: var(--bseo-dark-2) !important;
  border-top-color: var(--bseo-green) !important;
  color: var(--bseo-gray-light) !important;
}

.woocommerce-error {
  background: var(--bseo-dark-2) !important;
  border-top-color: var(--bseo-red) !important;
  color: var(--bseo-gray-light) !important;
}

/* Single Product */
.single-product .product .summary {
  color: var(--bseo-gray-light);
}

.single-product .product .summary .product_title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--bseo-pure-white);
  margin-bottom: 16px;
}

.single-product .product .summary .price {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--bseo-green);
  font-weight: 700;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.text-center { text-align: center; }
.text-green { color: var(--bseo-green); }
.text-gold { color: var(--bseo-gold); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
