/*
Theme Name: Nisabiya v3
Theme URI: https://nisabiya.in
Author: Nisabiya Clothing & Accessories
Author URI: https://nisabiya.in
Description: Custom WordPress theme for Nisabiya — Premium Customized Abayas. WooCommerce ready with WhatsApp ordering, India SEO optimized.
Version: 2.4.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: nisabiya
Tags: woocommerce, e-commerce, custom, abaya, fashion, india
*/

/* ============================================================
   NISABIYA DESIGN TOKENS
   Brand: Black #0A0A0A | Hot Pink #E8007D | White #FFFFFF
   Accent Light: #FF4DAD | Dark Pink: #B8005E | Soft BG: #F7F7F7
   ============================================================ */

:root {
  --brand-black:    #0A0A0A;
  --brand-pink:     #E8007D;
  --brand-pink-lt:  #FF4DAD;
  --brand-pink-dk:  #B8005E;
  --brand-white:    #FFFFFF;
  --soft-bg:        #F7F7F7;
  --text-dark:      #1A1A1A;
  --text-mid:       #555555;
  --text-light:     #999999;
  --border:         #E5E5E5;
  --success:        #22C55E;
  --whatsapp:       #25D366;

  --font-display:   'Playfair Display', serif;
  --font-body:      'Inter', sans-serif;

  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --radius-pill:    50px;

  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 20px rgba(232,0,125,0.15);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.12);

  --transition:     0.25s ease;
  --max-width:      1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--brand-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--brand-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--text-mid); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-pink);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-pink);
  color: var(--brand-white);
}
.btn-primary:hover {
  background: var(--brand-pink-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--brand-pink);
  border: 2px solid var(--brand-pink);
}
.btn-outline:hover {
  background: var(--brand-pink);
  color: var(--brand-white);
}

.btn-dark {
  background: var(--brand-black);
  color: var(--brand-white);
}
.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--brand-white);
  font-size: 0.85rem;
  padding: 11px 20px;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   OFFER POPUP (Editable from WP Customizer — replaces old top banner)
   ============================================================ */
#offer-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
#offer-popup-overlay.active { opacity: 1; visibility: visible; }
body.offer-popup-open { overflow: hidden; }

#offer-popup {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--brand-pink);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  padding: 36px 28px 28px;
  text-align: center;
  transform: translateY(16px) scale(.97);
  transition: transform .3s ease;
}
#offer-popup-overlay.active #offer-popup { transform: translateY(0) scale(1); }

#offer-popup-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none; border: none;
  font-size: 1.5rem; line-height: 1;
  color: var(--text-light);
  cursor: pointer;
}
#offer-popup-close:hover { color: var(--brand-pink); }

#offer-popup-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-black);
  margin-bottom: 10px;
}
#offer-popup-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
#offer-popup-text a { color: var(--brand-pink); text-decoration: underline; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  background: var(--brand-black);
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 2px solid var(--brand-pink);
}

/* Floating header — desktop only */
@media (min-width: 1025px) {
  #site-header {
    top: 16px;
    margin: 16px auto 0;
    max-width: var(--max-width);
    border: 2px solid var(--brand-pink);
    border-radius: var(--radius-lg);
    box-shadow:
      0 10px 30px rgba(0,0,0,0.45),
      0 2px 10px rgba(232,0,125,0.18);
  }
  .header-inner { height: 76px; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-pink);
  transition: width var(--transition);
}
.main-nav a:hover,
.main-nav a.current-menu-item { color: var(--brand-pink); }
.main-nav a:hover::after,
.main-nav a.current-menu-item::after { width: 100%; }

/* Browse Collection nav button */
.main-nav a.nav-collection-btn {
  background: var(--brand-pink);
  color: #fff !important;
  padding: 7px 14px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.1px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s !important;
}
.main-nav a.nav-collection-btn::after { display: none !important; }
.main-nav a.nav-collection-btn:hover { background: var(--brand-pink-dark, #B8005E) !important; color: #fff !important; transform: scale(1.03); }

/* Categories dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.current-menu-item { color: var(--brand-pink); }
.nav-caret { font-size: 0.65rem; transition: transform 0.2s; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--brand-black);
  border: 1px solid rgba(232,0,125,0.25);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.85rem !important;
  padding: 9px 14px;
  border-radius: 7px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.current-menu-item {
  background: rgba(232,0,125,0.12);
  color: var(--brand-pink) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-whatsapp {
  background: var(--whatsapp);
  color: var(--brand-white);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition);
}
.header-whatsapp:hover { background: #1ebe5a; }

.cart-icon {
  color: var(--brand-white);
  font-size: 1.2rem;
  position: relative;
  transition: color var(--transition);
}
.cart-icon:hover { color: var(--brand-pink); }

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--brand-pink);
  color: var(--brand-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 */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-white);
  transition: all 0.3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  background: var(--brand-black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(232,0,125,0.03) 0px,
      rgba(232,0,125,0.03) 1px,
      transparent 1px,
      transparent 40px
    );
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-content { color: var(--brand-white); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,0,125,0.15);
  border: 1px solid rgba(232,0,125,0.4);
  color: var(--brand-pink-lt);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--brand-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title em {
  color: var(--brand-pink);
  font-style: normal;
}

.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand-pink);
  font-family: var(--font-display);
}
.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.hero-image {
  position: relative;
}
.hero-image-frame {
  background: rgba(232,0,125,0.08);
  border: 1px solid rgba(232,0,125,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
  padding: 40px;
}
.hero-img-placeholder .icon { font-size: 3rem; margin-bottom: 12px; }
.hero-img-placeholder p { font-size: 0.85rem; }

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--brand-pink);
  color: var(--brand-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hero-badge strong { font-size: 1.3rem; display: block; }
.hero-badge span { font-size: 0.72rem; opacity: 0.9; }

/* ============================================================
   USP STRIP
   ============================================================ */
#usp-strip {
  background: var(--brand-pink);
  padding: 18px 0;
  overflow: hidden;
}

.usp-track {
  display: flex;
  gap: 60px;
  animation: usp-scroll 20s linear infinite;
  width: max-content;
}
.usp-track:hover { animation-play-state: paused; }

@keyframes usp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.usp-item .icon { font-size: 1.1rem; }

/* ============================================================
   PRODUCT CATALOG
   ============================================================ */
#catalog {
  background: var(--soft-bg);
}

.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: var(--brand-white);
  color: var(--text-mid);
  transition: all var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--brand-pink);
  color: var(--brand-white);
  border-color: var(--brand-pink);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Product Card */
.product-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0f0f0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-pink);
  color: var(--brand-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-badge.oos {
  background: #555;
}

.product-badge.new { background: var(--brand-pink); }
.product-badge.sale { background: #f97316; }
.product-badge.bestseller { background: #7c3aed; }

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--brand-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
}
.product-wishlist:hover { background: var(--brand-pink); color: var(--brand-white); }

.product-info {
  padding: 16px;
}

.product-cat {
  font-size: 0.7rem;
  color: var(--brand-pink);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.price-current {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-black);
  font-family: var(--font-display);
}
.price-original {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* WooCommerce overrides for product card */
.product-card .btn-whatsapp svg,
.product-card .btn-whatsapp .wa-icon { display: inline; }

/* OOS overlay */
.product-card.out-of-stock .product-img-wrap::after {
  content: 'Out of Stock';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.product-card.out-of-stock .btn-whatsapp {
  opacity: 0.5;
  pointer-events: none;
}

/* ============================================================
   CUSTOM ORDER SECTION
   ============================================================ */
#custom-order {
  background: var(--brand-black);
  position: relative;
  overflow: hidden;
}

.custom-order-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(232,0,125,0.18) 0%, transparent 60%);
}

.custom-order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.custom-order-content .section-title { color: var(--brand-white); }
.custom-order-content .section-label { color: var(--brand-pink-lt); }
.custom-order-content p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

.custom-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.custom-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,0,125,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text strong {
  display: block;
  color: var(--brand-white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.feature-text span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.custom-order-form {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--brand-black);
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--brand-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-pink);
  box-shadow: 0 0 0 3px rgba(232,0,125,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works { background: var(--brand-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-pink), var(--brand-pink-lt));
  z-index: 0;
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--brand-black);
  color: var(--brand-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 3px solid var(--brand-pink);
  font-family: var(--font-display);
}

.step-item h3 { margin-bottom: 8px; font-size: 1rem; }
.step-item p { font-size: 0.85rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--soft-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }

.stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--brand-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--brand-black); }
.author-loc  { font-size: 0.75rem; color: var(--text-light); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
#wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-float-btn {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.wa-float-label {
  background: var(--brand-black);
  color: var(--brand-white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  animation: wa-pulse 3s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.85; transform: translateY(-3px); }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--brand-black);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  border-top: 2px solid var(--brand-pink);
}

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

.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }

.footer-col h5 {
  color: var(--brand-white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--brand-pink); }

.footer-contact { font-size: 0.85rem; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--brand-pink); }

.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--brand-pink); color: var(--brand-white); }

/* SEO — Shop by Category footer links */
.footer-cat-links {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0 6px;
}
.footer-cat-links h5 { margin-bottom: 12px; }
.footer-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-cat-pill {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 13px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-cat-pill:hover { background: var(--brand-pink); border-color: var(--brand-pink); color: #fff; }

/* SEO — "People also searching for" keyword cluster (sitewide, above footer) */
.people-also-search {
  background: var(--soft-bg);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
}
.people-also-search h5 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.pas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pas-pill {
  font-size: 0.76rem;
  color: var(--text-mid);
  background: var(--brand-white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 5px 13px;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
}
.pas-pill:hover { background: var(--brand-pink); border-color: var(--brand-pink); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce-notices-wrapper { max-width: var(--max-width); margin: 0 auto; padding: 20px; }

/* Single product */
.woocommerce div.product { max-width: var(--max-width); margin: 0 auto; padding: 48px 20px; }
.woocommerce div.product .product_title { font-family: var(--font-display); font-size: 2rem; margin-bottom: 12px; }
.woocommerce div.product .price { color: var(--brand-pink); font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; }

.woocommerce button.button.alt {
  background: var(--brand-pink) !important;
  color: var(--brand-white) !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  padding: 14px 28px !important;
}
.woocommerce button.button.alt:hover {
  background: var(--brand-pink-dk) !important;
}

/* Cart */
.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3 { font-family: var(--font-display); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image-frame { aspect-ratio: 4/3; max-height: 300px; }

  .main-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--brand-black); flex-direction: column; padding: 24px; gap: 20px; border-top: 1px solid rgba(232,0,125,0.3); }
  .main-nav.open { display: flex; }
  .menu-toggle { display: flex; }

  .header-whatsapp span { display: none; }

  .custom-order-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .catalog-header { flex-direction: column; align-items: flex-start; }

  /* Footer bottom: stack and center on mobile */
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom > div { align-items: center !important; text-align: center !important; }

  /* Categories dropdown: inline expand on mobile instead of floating panel */
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; font-size: 0.95rem !important; padding: 4px 0; }
  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(255,255,255,0.04);
    border: none;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    padding: 4px 0 4px 12px;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-menu a { font-size: 0.88rem !important; padding: 10px 12px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 12px; }
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 16px; }
}

/* ============================================================
   SOCIAL FEED SECTION — Instagram & Facebook
   ============================================================ */

#social-feed {
  background: var(--brand-black);
  position: relative;
  overflow: hidden;
}

#social-feed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(232,0,125,0.12) 0%, transparent 55%);
  pointer-events: none;
}

/* Header */
.social-feed-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.social-feed-header .section-title { color: var(--brand-white); }
.social-feed-header .section-desc  { color: rgba(255,255,255,0.6); }
.social-feed-header .section-desc strong { color: var(--brand-pink-lt); }

/* Follow Buttons */
.social-follow-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}

.insta-btn {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--brand-white);
}
.insta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

.fb-btn {
  background: #1877F2;
  color: var(--brand-white);
}
.fb-btn:hover { background: #0f5ec0; transform: translateY(-2px); }

/* Feed Tab Switcher */
.feed-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  padding: 4px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 32px;
}

.feed-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.feed-tab.active {
  background: var(--brand-pink);
  color: var(--brand-white);
  box-shadow: 0 2px 12px rgba(232,0,125,0.4);
}

.feed-tab:not(.active):hover {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

/* Feed Panels */
.feed-panel { display: none; }
.feed-panel.active { display: block; }

/* Smash Balloon override — match brand */
.smash-feed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Placeholder Grid (shown before plugin installed) */
.feed-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.feed-placeholder-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
}

.feed-placeholder-item--fb {
  aspect-ratio: 4/3;
}

/* Shimmer animation */
.placeholder-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.03) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

/* Install Notice */
.feed-install-notice {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(232,0,125,0.3);
  border-radius: var(--radius-lg);
  max-width: 480px;
  margin: 0 auto;
}

.install-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.feed-install-notice h4 {
  color: var(--brand-white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feed-install-notice p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.install-steps {
  margin-top: 14px !important;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.35) !important;
  background: rgba(255,255,255,0.04);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  line-height: 1.6;
}

/* Bottom CTA */
.social-feed-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-feed-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}
.social-feed-cta p strong {
  color: var(--brand-white);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .social-feed-header { flex-direction: column; align-items: flex-start; }
  .feed-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-tab span { display: none; }
  .social-feed-cta { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
  .feed-placeholder-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .social-follow-btns { flex-direction: column; width: 100%; }
  .social-follow-btn { justify-content: center; }
}

/* ============================================================
   V3 — HERO REDESIGN
   ============================================================ */
#hero {
  background: var(--brand-black);
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 0 40px 0;
}

.hero-float-el {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-float-1 {
  width: 500px; height: 500px;
  background: rgba(232,0,125,0.12);
  top: -100px; right: -100px;
  animation: float-drift 8s ease-in-out infinite;
}
.hero-float-2 {
  width: 300px; height: 300px;
  background: rgba(232,0,125,0.07);
  bottom: -50px; left: 10%;
  animation: float-drift 12s ease-in-out infinite reverse;
}
@keyframes float-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(20px,-30px) scale(1.05); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  /* #hero is a flex container, which makes this a flex item — without an
     explicit width, flex items shrink-wrap to their content instead of
     filling the row, and the .container's `margin: 0 auto` then centers
     that shrunken box. Force it to actually fill #hero (still capped by
     .container's max-width) so the grid columns — and left-aligned text
     inside them — get the real available width instead of hugging content. */
  width: 100%;
}

/* ============================================================
   HERO BACKGROUND VIDEO
   video + poster sit at z-index 0, a dark gradient overlay at
   z-index 1 for legibility, and .hero-inner (text/CTA) at z-index 2
   ============================================================ */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--brand-black);
}

.hero-video-bg .hero-video,
.hero-video-bg .hero-video-poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Poster <img> shows instantly (fast LCP) and sits under the <video>;
   once JS starts playback it fades the video in over the poster. */
.hero-video-bg .hero-video-poster-fallback {
  z-index: 0;
}
.hero-video-bg .hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-video-bg .hero-video.is-playing {
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Anchored to the left, where the text sits, and fully clear by ~55%
     so the video is unobstructed across the right side of the frame. */
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.62) 22%,
    rgba(0,0,0,0.25) 42%,
    rgba(0,0,0,0) 58%
  );
}

/* When video is active, drop the two-column layout; keep the text
   pinned to the left edge of the normal container (flush with the
   logo/nav above it) and cap its width so the rest of the frame —
   where the video's subject is — stays fully visible. */
.hero-inner--video {
  grid-template-columns: 1fr;
}
.hero-inner--video .hero-content {
  color: var(--brand-white);
  max-width: 560px;
}
.hero-inner--video .hero-subtitle {
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.hero-inner--video .hero-title,
.hero-inner--video .hero-eyebrow {
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}

@media (max-width: 992px) {
  .hero-video-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.3) 40%,
      rgba(0,0,0,0.62) 100%
    );
  }
  .hero-inner--video .hero-content { max-width: 100%; }
  /* On narrow crops, bias the frame right-of-center to keep the
     subject in view instead of a flat center crop. */
  .hero-video-bg .hero-video,
  .hero-video-bg .hero-video-poster-fallback {
    object-position: 65% center;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,0,125,0.12);
  border: 1px solid rgba(232,0,125,0.35);
  color: var(--brand-pink-lt);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--brand-pink);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  color: var(--brand-white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 800;
}
.hero-title em { color: var(--brand-pink); font-style: normal; }
.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-subtitle strong { color: var(--brand-white); }

/* CTA group */
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--brand-white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  white-space: nowrap;
}
.btn-hero-wa:hover {
  background: #1dbe5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.btn-arrow { transition: transform var(--transition); }
.btn-hero-wa:hover .btn-arrow { transform: translateX(4px); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--brand-white);
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
}
.btn-call:hover { background: rgba(255,255,255,0.15); }

/* WhatsApp number display */
.hero-wa-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  position: relative;
}
.wa-pulse-ring {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  border: 2px solid rgba(37,211,102,0.4);
  position: absolute;
  left: -10px;
  animation: wa-ring 2s ease-out infinite;
  display: none;
}
@keyframes wa-ring {
  0%   { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.online-badge {
  background: rgba(37,211,102,0.15);
  color: #25D366;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37,211,102,0.3);
}

/* Trust bar */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-num  { font-size: 1.3rem; font-weight: 800; color: var(--brand-pink); font-family: var(--font-display); display:block; }
.trust-label{ font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* Hero Image Panel */
.hero-image-panel { position: relative; }

.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  border: 1px solid rgba(232,0,125,0.2);
}
.hero-img-crop {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--brand-pink);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-img-placeholder-wrap {
  background: rgba(232,0,125,0.06);
  border: 1px dashed rgba(232,0,125,0.25);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating product cards */
.hero-float-card {
  position: absolute;
  background: rgba(20,20,20,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,0,125,0.25);
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  min-width: 150px;
  animation: card-bob 4s ease-in-out infinite;
}
.hero-float-card--1 { bottom: 24px; left: -24px; animation-delay: 0s; }
.hero-float-card--2 { top: 40px; right: -24px; animation-delay: 2s; }
@keyframes card-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float-card-img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; }
.float-card-info span { font-size: 0.65rem; color: var(--brand-pink); display: block; text-transform: uppercase; letter-spacing: 0.08em; }
.float-card-info strong { font-size: 0.82rem; color: #fff; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
#what-we-make { background: var(--soft-bg); }

.section-intro { margin-bottom: 48px; }
.section-intro .section-desc { max-width: 600px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--brand-pink);
  box-shadow: 0 8px 32px rgba(232,0,125,0.12);
  transform: translateY(-4px);
}
.service-card--popular {
  border-color: var(--brand-pink);
  background: linear-gradient(135deg, #fff 0%, #fff5fa 100%);
}

.service-card-popular-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--brand-pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card-icon  { font-size: 2.2rem; margin-bottom: 14px; }
.service-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; color: var(--brand-black); }
.service-card-sub   { font-size: 0.72rem; color: var(--brand-pink); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.service-card-desc  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; flex: 1; }

.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.service-tag  {
  background: rgba(232,0,125,0.08);
  color: var(--brand-pink-dk);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232,0,125,0.2);
}

.service-card-btn { margin-top: auto; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
#gallery { background: var(--brand-black); }
#gallery .section-title { color: var(--brand-white); }
#gallery .section-desc  { color: rgba(255,255,255,0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item { border-radius: var(--radius-md); overflow: hidden; }

.gallery-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #111;
}

/* Crop position classes */
.gallery-img        { width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease; }
.crop-center        { object-position: center center; }
.crop-top           { object-position: center top; }
.crop-bottom        { object-position: center bottom; }
.crop-left          { object-position: left center; }
.crop-right         { object-position: right center; }

.gallery-img-wrap:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-img-wrap:hover .gallery-overlay { opacity: 1; }

.gallery-cat   { font-size: 0.68rem; color: var(--brand-pink-lt); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; display:block; margin-bottom:4px; }
.gallery-label { font-size: 0.9rem; color: #fff; font-weight: 600; margin-bottom: 10px; }

/* Gallery placeholder */
.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-placeholder-item {
  aspect-ratio: 3/4;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(232,0,125,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   WHOLESALE SECTION
   ============================================================ */
.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.wholesale-features { display: flex; flex-direction: column; gap: 18px; }
.wholesale-feature  { display: flex; align-items: flex-start; gap: 14px; }
.wf-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: rgba(232,0,125,0.12);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wholesale-img {
  width: 100%; border-radius: var(--radius-lg);
  object-fit: cover; aspect-ratio: 4/5;
}
.wholesale-img-placeholder {
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(232,0,125,0.25);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}

/* ============================================================
   STEP — updated icons
   ============================================================ */
.step-count {
  font-size: 0.72rem;
  color: var(--brand-pink);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.step-num {
  font-size: 2rem;
  width: 64px; height: 64px;
  background: var(--brand-black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid var(--brand-pink);
}

/* ============================================================
   TESTIMONIALS — product tag
   ============================================================ */
.testimonial-product-tag {
  display: inline-block;
  background: rgba(232,0,125,0.08);
  color: var(--brand-pink-dk);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232,0,125,0.2);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
  background: linear-gradient(135deg, var(--brand-black) 0%, #1a0010 100%);
  border-top: 2px solid var(--brand-pink);
  padding: 72px 0;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.final-cta-content h2 { color: var(--brand-white); font-size: clamp(1.5rem,3vw,2rem); }
.final-cta-content p  { color: rgba(255,255,255,0.6); margin-top: 8px; max-width: 520px; }
.final-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE — V3
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .wholesale-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #hero { padding: 0 0 40px 0; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image-panel { order: -1; }
  .hero-img-main, .hero-img-placeholder-wrap { aspect-ratio: 4/3; max-height: 280px; }
  .hero-float-card { display: none; }
  .hero-title { font-size: 2rem; }
  .hero-trust { gap: 12px; }
  .trust-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-placeholder-grid { grid-template-columns: repeat(2, 1fr); }

  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .btn-hero-wa, .btn-call { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============================================================
   INSPIRATION TEASER — Homepage Section
   ============================================================ */
#inspiration-teaser { background: var(--brand-white); }

.inspo-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Style Cards Grid */
.inspo-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.inspo-style-card {
  border-radius: var(--radius-md);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(232,0,125,0.15);
  min-height: 160px;
}
.inspo-style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.inspo-style-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,0,125,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.inspo-style-card img.card-custom-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.inspo-style-card:has(img.card-custom-img)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.75));
  z-index: 1;
}
.inspo-card-link {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  text-decoration: none;
}
.inspo-style-pin {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-top: -2px;
}
.inspo-style-pin:hover { color: var(--brand-pink-lt); }

.inspo-style-badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-pink);
  background: rgba(232,0,125,0.15);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  width: fit-content;
}

.inspo-style-icon {
  font-size: 1.8rem;
  margin: 4px 0;
}

.inspo-style-info strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.inspo-style-info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

.inspo-style-cta {
  font-size: 0.72rem;
  color: var(--brand-pink-lt);
  font-weight: 700;
  margin-top: auto;
  transition: color var(--transition);
}
.inspo-style-card:hover .inspo-style-cta { color: #fff; }

/* ============================================================
   PAGE TEMPLATES — common styles used across all pages
   ============================================================ */
.page-hero-dark {
  background: var(--brand-black);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 2px solid var(--brand-pink);
  position: relative;
  overflow: hidden;
}
.page-hero-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(232,0,125,0.12) 0%, transparent 60%);
}
.page-hero-dark h1 { color: var(--brand-white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero-dark p  { color: rgba(255,255,255,0.6); margin-top: 12px; }

/* Prose content pages */
.prose-content {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.prose-content h2 { color: var(--brand-black); margin: 28px 0 10px; font-size: 1.1rem; }
.prose-content h3 { color: var(--brand-black); margin: 20px 0 8px; font-size: 1rem; }
.prose-content a  { color: var(--brand-pink); }

/* ============================================================
   RESPONSIVE — Inspiration teaser
   ============================================================ */
@media (max-width: 1024px) {
  .inspo-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .inspo-teaser-inner { grid-template-columns: 1fr; gap: 36px; }
  .inspo-teaser-grid  { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .inspo-style-card   { min-height: 130px; padding: 12px 10px; }
  .inspo-style-icon   { font-size: 1.4rem; }
  .inspo-style-info strong { font-size: 0.75rem; }
  .inspo-style-cta    { display: none; }
  .inspo-style-pin    { display: none; }
}

@media (max-width: 480px) {
  .inspo-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   BLOG SYSTEM — Home, Cards, Article, Shortcodes
   ============================================================ */

.nis-fi-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-black) 0%, #2a0016 45%, var(--brand-pink-dk) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}
.nis-fi-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.10) 0, transparent 40%),
                     radial-gradient(circle at 80% 75%, rgba(232,0,125,0.35) 0, transparent 45%);
  z-index: 0;
}
.nis-fi-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 14px);
  z-index: 0;
}
.nis-fi-inner { position: relative; z-index: 1; padding: 20px; }
.nis-fi-icon { font-size: 2.1rem; margin-bottom: 10px; opacity: 0.9; }
.nis-fi-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-pink-lt);
  display: block;
  margin-bottom: 6px;
}
.nis-fi-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.5;
}
.nis-fi-placeholder.nis-fi-sm { aspect-ratio: 4/3; border-radius: var(--radius-md); }
.nis-fi-placeholder.nis-fi-sm .nis-fi-icon { font-size: 1.5rem; margin-bottom: 6px; }
.nis-fi-placeholder.nis-fi-sm .nis-fi-desc { display: none; }
.nis-fi-placeholder.nis-fi-sm .nis-fi-label { font-size: 0.6rem; }

.blog-hero {
  background: var(--brand-black);
  padding: 90px 0 56px;
  text-align: center;
  border-bottom: 2px solid var(--brand-pink);
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(232,0,125,0.16) 0%, transparent 65%);
}
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.blog-hero h1 em { color: var(--brand-pink-lt); font-style: normal; }
.blog-hero p.blog-hero-sub { color: rgba(255,255,255,0.6); max-width: 560px; margin: 14px auto 0; font-size: 1rem; }

.blog-filter-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 28px;
}
.blog-filter-pill {
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  background: rgba(255,255,255,0.03);
}
.blog-filter-pill:hover, .blog-filter-pill.is-active {
  background: var(--brand-pink);
  border-color: var(--brand-pink);
  color: #fff;
}

.blog-grid-wrap { background: var(--soft-bg); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-thumb { position: relative; }
.blog-card-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--brand-pink); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
  z-index: 2;
}
.blog-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: 0.72rem; color: var(--text-light); margin-bottom: 8px; display: flex; gap: 8px; align-items: center; }
.blog-card-title { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.35; color: var(--brand-black); margin-bottom: 10px; }
.blog-card:hover .blog-card-title { color: var(--brand-pink); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-card-readmore { margin-top: 16px; font-size: 0.8rem; font-weight: 700; color: var(--brand-pink); display: inline-flex; align-items: center; gap: 6px; }

.blog-featured {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 0;
  background: var(--brand-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}
.blog-featured-thumb img, .blog-featured-thumb .nis-fi-placeholder { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 0; aspect-ratio: auto; }
.blog-featured-body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .blog-card-cat { position: static; display: inline-block; margin-bottom: 14px; width: fit-content; }
.blog-featured-body h2 { color: #fff; font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.3; margin-bottom: 14px; }
.blog-featured-body p { color: rgba(255,255,255,0.62); font-size: 0.92rem; line-height: 1.7; margin-bottom: 22px; }

.blog-wa-strip {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #1ebe5a 100%);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  margin: 44px 0;
}
.blog-wa-strip h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.blog-wa-strip p { color: rgba(255,255,255,0.85); font-size: 0.85rem; max-width: 420px; }
.blog-wa-strip .btn { background: #fff; color: var(--whatsapp); flex-shrink: 0; }
.blog-wa-strip .btn:hover { background: var(--brand-black); color: #fff; }

.nis-product-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.nis-product-banner:hover { border-color: var(--brand-pink); box-shadow: var(--shadow-md); }
.nis-product-banner-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-pink-dk) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.nis-product-banner-text { flex: 1; min-width: 0; }
.nis-product-banner-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-pink); display: block; margin-bottom: 3px; }
.nis-product-banner-title { font-size: 0.95rem; font-weight: 700; color: var(--brand-black); line-height: 1.3; }
.nis-product-banner-sub { font-size: 0.78rem; color: var(--text-mid); margin-top: 2px; }
.nis-product-banner-cta { flex-shrink: 0; display: flex; gap: 8px; }
@media (max-width: 640px) {
  .nis-product-banner { flex-wrap: wrap; }
  .nis-product-banner-cta { width: 100%; }
  .nis-product-banner-cta .btn { flex: 1; justify-content: center; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-thumb img, .blog-featured-thumb .nis-fi-placeholder { min-height: 220px; }
}

.nis-wa-cta {
  background: var(--brand-black);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  text-align: center;
  margin: 36px 0;
  border: 1px solid rgba(232,0,125,0.25);
  position: relative;
  overflow: hidden;
}
.nis-wa-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37,211,102,0.15) 0%, transparent 60%);
}
.nis-wa-cta-inner { position: relative; z-index: 1; }
.nis-wa-cta p { color: rgba(255,255,255,0.75); margin-bottom: 18px; font-size: 0.92rem; }
.nis-wa-cta strong { color: #fff; }

.nis-pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  color: var(--brand-black);
  border-left: 4px solid var(--brand-pink);
  padding: 6px 0 6px 24px;
  margin: 32px 0;
  font-style: italic;
}
.nis-pull-quote span { color: var(--brand-pink); }

.article-meta-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
.article-meta-left { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--text-light); }
.reading-badge { background: var(--soft-bg); padding: 4px 12px; border-radius: var(--radius-pill); font-weight: 600; color: var(--text-mid); }
.share-bar { display: flex; gap: 8px; }
.share-btn {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--soft-bg); color: var(--text-mid); transition: var(--transition); flex-shrink: 0;
}
.share-btn:hover { background: var(--brand-pink); color: #fff; transform: translateY(-2px); }
.share-btn.share-wa:hover { background: var(--whatsapp); }
.share-btn.share-pin:hover { background: #E60023; }

.article-toc {
  background: var(--soft-bg);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 32px;
}
.article-toc-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--brand-pink); margin-bottom: 10px; }
.article-toc ol { list-style: decimal; padding-left: 18px; }
.article-toc li { font-size: 0.85rem; margin-bottom: 6px; }
.article-toc a { color: var(--text-mid); }
.article-toc a:hover { color: var(--brand-pink); }

.nis-faq-block { margin: 36px 0; }
.nis-faq-title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 16px; color: var(--brand-black); }
.nis-faq-item { border: 1.5px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.nis-faq-q {
  width: 100%; text-align: left; padding: 15px 18px; background: #fff; border: none; cursor: pointer;
  font-size: 0.88rem; font-weight: 700; color: var(--brand-black); display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body);
}
.nis-faq-q .nis-faq-arr { color: var(--brand-pink); transition: 0.25s; flex-shrink: 0; margin-left: 14px; }
.nis-faq-a { display: none; padding: 0 18px 16px; font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

.related-posts-title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 20px; color: var(--brand-black); }

.article-author-box {
  display: flex; gap: 16px; align-items: center;
  background: var(--soft-bg); border-radius: var(--radius-md);
  padding: 20px 22px; margin: 40px 0;
}
.article-author-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-pink) 0%, var(--brand-pink-dk) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1.2rem;
}
.article-author-box strong { color: var(--brand-black); display: block; font-size: 0.9rem; }
.article-author-box span { color: var(--text-mid); font-size: 0.8rem; }

.blog-breadcrumb { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.blog-breadcrumb a { color: rgba(255,255,255,0.7); }
.blog-breadcrumb a:hover { color: var(--brand-pink-lt); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 70px 0 40px; }
  .blog-wa-strip { flex-direction: column; text-align: center; }
  .article-meta-bar { flex-direction: column; align-items: flex-start; }
}
