/*
--------------------------------------------------------------
 NBAURA – Modern. Elegant. Powerful.
--------------------------------------------------------------

Theme Name: NBAURA
Theme URI: https://nbaura.com/nbaura
Author: Your Name
Author URI: https://nbaura.com
Description: NBAURA is a modern, elegant and performance-focused WordPress theme for creating stunning websites.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: nbaura
Domain Path: /languages
Tags: blog, one-column, two-columns, right-sidebar,
      custom-background, custom-logo, custom-menu,
      featured-images, full-width-template, rtl-language-support,
      theme-options, translation-ready

--------------------------------------------------------------
*/

:root {
  --sage: #7A9E7E;
  --sage-dark: #4A6B4E;
  --charcoal: #2C2C2A;
  --cream: #F9F4EE;
}

html {
  scroll-behavior: smooth;
}

/* Slider Container */
.mainHeroSlider {
  width: 100%;
  height: 88vh;
}


.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  align-items: center;
  background: var(--cream);
}

.hero-content { padding: 0 80px; }

.hero h1 {
  font-size: 58px;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  margin-bottom: 20px;
}

.btn-primary {
  background: var(--sage-dark);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

/* Swiper Fade Optimization */
.swiper-slide {
  opacity: 0 !important;
  transition-property: opacity;
}
.swiper-slide-active {
  opacity: 1 !important;
}


 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --sage: #7A9E7E;
    --sage-light: #EBF2EC;
    --sage-dark: #4A6B4E;
    --cream: #F9F4EE;
    --warm-white: #FDFBF8;
    --charcoal: #2C2C2A;
    --mid: #6B6B68;
    --border: rgba(44,44,42,0.12);
    --gold: #C9913D;
    --gold-light: #FBF0E0;
    --radius: 12px;
    --radius-sm: 6px;
    --shadow: 0 4px 24px rgba(44,44,42,0.08);
    --shadow-hover: 0 12px 40px rgba(44,44,42,0.14);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

  /* ─── ANNOUNCEMENT BAR ─── */
  .announcement-bar {
    background: var(--sage-dark);
    color: white;
    text-align: center;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 9px 20px;
  }

  /* ─── NAVIGATION ─── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253,251,248,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }
  .logo-leaf {
    width: 36px;
    height: 36px;
    background: var(--sage);
    border-radius: 50% 50% 50% 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-leaf svg { width: 18px; height: 18px; fill: white; }
  .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
  .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.02em;
  }
  .logo-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    color: var(--sage-dark);
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin-left: 24px;
  }
  .nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .nav-links a:hover { border-color: var(--sage); color: var(--sage-dark); }
  .nav-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .nav-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    position: relative;
  }
  .nav-icon-btn:hover { background: var(--sage-light); }
  .cart-count {
    position: absolute;
    top: -4px; right: -4px;
    width: 16px; height: 16px;
    background: var(--sage-dark);
    color: white;
    font-size: 9px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-nav-cta {
    background: var(--sage-dark);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-nav-cta:hover { background: var(--sage); }

  /* ─── HERO ─── */
  .hero {
    min-height: 88vh;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .hero-content {
    padding: 80px 64px 80px 80px;
    max-width: 600px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-light);
    color: var(--gold);
    border: 1px solid rgba(201,145,61,0.25);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.12;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 22px;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
  }
  .hero-desc {
    font-size: 16px;
    color: var(--mid);
    margin-bottom: 36px;
    max-width: 420px;
    line-height: 1.7;
  }
  .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .btn-primary {
    background: var(--sage-dark);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary:hover { background: var(--sage); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: var(--charcoal);
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--charcoal);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .btn-outline:hover { background: var(--charcoal); color: white; }
  .hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--mid);
    font-weight: 500;
  }
  .trust-icon {
    width: 20px; height: 20px;
    fill: var(--sage);
  }
  .hero-visual {
    position: relative;
    height: 88vh;
    overflow: hidden;
  }
  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(122,158,126,0.06) 40px,
        rgba(122,158,126,0.06) 42px
      ),
      linear-gradient(160deg, #e8f2e9 0%, #ddeedd 40%, #cde0cf 100%);
  }
  .hero-product-card {
    position: absolute;
    width: 360px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(44,44,42,0.16);
  }
  .hero-product-img {
    margin-top: 100px;
    width: 100%;
    height: 560px;
    /* background: linear-gradient(135deg, #c8dfc9 0%, #a5c8a8 50%, #85b58a 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .bedsheet-illustration {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-product-info {
    padding: 20px 24px;
  }
  .hero-product-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--charcoal);
  }
  .hero-product-info .price {
    font-size: 22px;
    font-weight: 600;
    color: var(--sage-dark);
  }
  .hero-product-info .price-old {
    font-size: 14px;
    color: var(--mid);
    text-decoration: line-through;
    margin-left: 8px;
  }
  .hero-floating-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gold);
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
  .hero-float-review {
    position: absolute;
    bottom: 80px;
    right: -20px;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(44,44,42,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    min-width: 180px;
  }
  .stars-mini { color: #f0a02c; font-size: 12px; }
  .hero-float-orders {
    position: absolute;
    top: 100px;
    left: -30px;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(44,44,42,0.12);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
  }
  .float-orders-num {
    font-size: 22px;
    font-weight: 700;
    color: var(--sage-dark);
    font-family: 'Playfair Display', serif;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--charcoal);
    color: white;
    padding: 18px 32px;
  }
  .trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
  }
  .trust-bar-item svg { width: 20px; height: 20px; fill: var(--sage); flex-shrink: 0; }
  .trust-bar-item strong { font-weight: 600; }

  /* ─── SECTIONS ─── */
  section { padding: 80px 32px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-label {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 12px;
  }
  .section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-header p {
    font-size: 16px;
    color: var(--mid);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ─── CATEGORIES ─── */
  .categories { background: var(--warm-white); }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .cat-card {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    aspect-ratio: 3/4;
    text-decoration: none;
    display: block;
  }
  .cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
  .cat-card-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cat-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(44,44,42,0.75) 0%, transparent 100%);
    color: white;
  }
  .cat-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .cat-info span {
    font-size: 12.5px;
    opacity: 0.85;
    font-weight: 400;
  }
  .cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--sage-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
  }

  /* ─── PRODUCTS ─── */
  .products { background: var(--cream); }
  .product-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: white;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-btn.active, .filter-btn:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: white;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
  }
  .product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
  .product-img {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
  }
  .product-img-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,44,42,0.0);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    transition: background 0.25s;
  }
  .product-card:hover .product-overlay { background: rgba(44,44,42,0.12); }
  .product-quick-add {
    background: white;
    color: var(--charcoal);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .product-card:hover .product-quick-add { transform: translateY(0); opacity: 1; }
  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .badge-new { background: var(--sage-dark); color: white; }
  .badge-sale { background: #D85A30; color: white; }
  .badge-hot { background: var(--gold); color: white; }
  .badge-exclusive { background: var(--charcoal); color: white; }
  .product-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
  }
  .product-info { padding: 16px 18px 20px; }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
  }
  .product-sub {
    font-size: 12.5px;
    color: var(--mid);
    margin-bottom: 10px;
  }
  .product-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
  }
  .color-dot {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1.5px rgba(0,0,0,0.15);
    cursor: pointer;
  }
  .product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
  }
  .product-price {
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
  }
  .product-price-old {
    font-size: 13px;
    color: var(--mid);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
  }
  .product-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--mid);
  }
  .product-stars .star { color: #f0a02c; font-size: 12px; }

  /* ─── WHY NB AURA ─── */
  .why-section { background: var(--sage-light); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .why-visual {
    position: relative;
  }
  .why-main-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
  }
  .why-img-area {
    height: 300px;
    background: linear-gradient(135deg, #b5d4b8 0%, #8fb894 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .why-stats-bar {
    display: flex;
    padding: 20px 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
  }
  .why-stat {
    text-align: center;
    flex: 1;
    border-right: 1px solid var(--border);
  }
  .why-stat:last-child { border-right: none; }
  .why-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--sage-dark);
  }
  .why-stat-label {
    font-size: 11.5px;
    color: var(--mid);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .why-float-cert {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 24px rgba(201,145,61,0.3);
  }
  .why-float-cert .cert-icon { font-size: 24px; margin-bottom: 4px; }
  .why-features { }
  .why-features h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .why-features p {
    font-size: 15.5px;
    color: var(--mid);
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .feature-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
  .feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .feature-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(44,44,42,0.08);
  }
  .feature-icon-wrap svg { width: 22px; height: 22px; fill: var(--sage-dark); }
  .feature-text h4 { font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
  .feature-text p { font-size: 13.5px; color: var(--mid); line-height: 1.55; }

  /* ─── FABRIC GUIDE ─── */
  .fabric-guide { background: var(--warm-white); }
  .fabric-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  .fabric-tab {
    padding: 9px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: white;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--mid);
    cursor: pointer;
    transition: all 0.2s;
  }
  .fabric-tab.active, .fabric-tab:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: white;
  }
  .fabric-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  .fabric-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px 20px;
    border: 1.5px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .fabric-card:hover { border-color: var(--sage); box-shadow: var(--shadow); }
  .fabric-card-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fabric-card h3 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
  .fabric-card p { font-size: 13px; color: var(--mid); line-height: 1.55; margin-bottom: 14px; }
  .fabric-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .fabric-tag {
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--cream); }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
  }
  .review-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
  }
  .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .reviewer-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
  }
  .reviewer-info h4 { font-size: 14px; font-weight: 600; color: var(--charcoal); font-family: 'DM Sans', sans-serif; }
  .reviewer-info span { font-size: 12px; color: var(--mid); }
  .review-stars { color: #f0a02c; font-size: 14px; margin-bottom: 10px; }
  .review-text { font-size: 14px; color: var(--mid); line-height: 1.65; font-style: italic; }
  .review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--sage-dark);
    font-weight: 600;
    margin-top: 12px;
  }

  /* ─── GIFTING SECTION ─── */
  .gifting { background: var(--charcoal); color: white; overflow: hidden; position: relative; }
  .gifting-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background: repeating-linear-gradient(
      60deg, white, white 1px, transparent 1px, transparent 30px
    );
  }
  .gifting-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .gifting h2 { font-size: 40px; color: white; line-height: 1.15; margin-bottom: 16px; }
  .gifting p { color: rgba(255,255,255,0.7); font-size: 15.5px; line-height: 1.7; margin-bottom: 32px; }
  .gifting-features { list-style: none; margin-bottom: 40px; }
  .gifting-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14.5px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .gifting-features li:last-child { border-bottom: none; }
  .gift-check { width: 20px; height: 20px; background: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .gift-check svg { width: 10px; height: 10px; fill: white; }
  .btn-gold {
    background: var(--gold);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
  }
  .btn-gold:hover { opacity: 0.9; }
  .gifting-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .gift-box-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
  }
  .gift-box-card:hover { background: rgba(255,255,255,0.1); }
  .gift-icon {
    width: 52px; height: 52px;
    background: rgba(122,158,126,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }
  .gift-box-info h4 { color: white; font-size: 15px; font-weight: 600; font-family: 'DM Sans', sans-serif; margin-bottom: 4px; }
  .gift-box-info span { color: rgba(255,255,255,0.6); font-size: 13px; }
  .gift-price { margin-left: auto; color: var(--gold); font-size: 18px; font-weight: 700; font-family: 'Playfair Display', serif; }

  /* ─── VASTU SECTION ─── */
  .vastu-section { background: var(--gold-light); }
  .vastu-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .vastu-inner h2 { font-size: 36px; color: var(--charcoal); margin-bottom: 16px; }
  .vastu-inner p { font-size: 15.5px; color: var(--mid); max-width: 580px; margin: 0 auto 40px; line-height: 1.7; }
  .vastu-colors {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .vastu-color-chip {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .vastu-color-chip:hover { transform: translateY(-3px); }
  .vastu-swatch {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin: 0 auto 8px;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  .vastu-color-chip span { font-size: 11.5px; font-weight: 500; color: var(--mid); }

  /* ─── NEWSLETTER ─── */
  .newsletter { background: var(--sage-dark); color: white; padding: 64px 32px; }
  .newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }
  .newsletter h2 { color: white; font-size: 34px; margin-bottom: 12px; }
  .newsletter p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 15.5px; }
  .email-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
  .email-input {
    flex: 1;
    padding: 13px 18px;
    border-radius: 50px;
    border: none;
    font-size: 14.5px;
    outline: none;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-email {
    background: var(--gold);
    color: white;
    padding: 13px 24px;
    border-radius: 50px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }

  /* ─── CART SIDEBAR ─── */
  .cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44,44,42,0.5);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .cart-overlay.open { opacity: 1; pointer-events: all; }
  .cart-sidebar {
    position: fixed;
    right: 0; top: 0; bottom: 0;
    width: 400px;
    background: white;
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(44,44,42,0.12);
  }
  .cart-sidebar.open { transform: translateX(0); }
  .cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
  }
  .cart-header h3 { font-size: 18px; color: var(--charcoal); }
  .cart-close {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--mid);
  }
  .cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
  .cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .cart-item-img {
    width: 70px; height: 70px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cart-item-details { flex: 1; }
  .cart-item-details h4 { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; font-family: 'DM Sans', sans-serif; }
  .cart-item-details span { font-size: 12.5px; color: var(--mid); }
  .cart-item-price { font-size: 15px; font-weight: 600; color: var(--charcoal); }
  .cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }
  .qty-btn {
    width: 26px; height: 26px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--charcoal);
    transition: background 0.15s;
  }
  .qty-btn:hover { background: var(--sage-light); }
  .qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
  .cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
  .cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .btn-checkout {
    width: 100%;
    background: var(--sage-dark);
    color: white;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s;
  }
  .btn-checkout:hover { background: var(--sage); }
  .btn-continue {
    width: 100%;
    background: transparent;
    color: var(--mid);
    padding: 10px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 500;
    border: none;
    cursor: pointer;
  }

  /* ─── PRODUCT MODAL ─── */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44,44,42,0.55);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal-box {
    background: white;
    border-radius: 20px;
    max-width: 820px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-overlay.open .modal-box { transform: scale(1); }
  .modal-img-area {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .modal-close {
    position: absolute;
    top: 14px; left: 14px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 1;
  }
  .modal-content { padding: 32px; overflow-y: auto; }
  .modal-content h2 { font-size: 24px; margin-bottom: 6px; color: var(--charcoal); }
  .modal-content .subtitle { color: var(--mid); font-size: 14px; margin-bottom: 16px; }
  .modal-price { font-size: 28px; font-weight: 700; color: var(--sage-dark); margin-bottom: 20px; }
  .modal-price span { font-size: 16px; color: var(--mid); text-decoration: line-through; margin-left: 10px; font-weight: 400; }
  .option-label { font-size: 13px; font-weight: 600; color: var(--charcoal); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 10px; }
  .size-options { display: flex; gap: 8px; margin-bottom: 20px; }
  .size-btn {
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: white;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
  }
  .size-btn.active, .size-btn:hover { background: var(--sage-dark); border-color: var(--sage-dark); color: white; }
  .color-options { display: flex; gap: 10px; margin-bottom: 24px; }
  .color-option {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1.5px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: box-shadow 0.15s;
  }
  .color-option.active { box-shadow: 0 0 0 2.5px var(--sage-dark); }
  .modal-add-btn {
    width: 100%;
    background: var(--sage-dark);
    color: white;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.2s;
  }
  .modal-add-btn:hover { background: var(--sage); }
  .modal-perks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
  .modal-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--mid);
  }
  .modal-perk svg { width: 16px; height: 16px; fill: var(--sage); flex-shrink: 0; }

  /* ─── FOOTER ─── */
  

/* =========================
   FOOTER DESIGN
========================= */

.nba-footer{
    background:#111;
    padding:40px 70px 25px;
    color:#cfcfcf;
    font-family: 'Poppins', sans-serif;
    position:relative;
    border-top:1px solid rgba(255,255,255,0.08);
}

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

.footer-logo h2{
    color:#fff;
    font-size:36px;
    margin:0;
    font-weight:700;
}

.footer-logo span{
    color:#c8a46b;
    font-size:12px;
    letter-spacing:3px;
}

.footer-contact{
    display:flex;
    align-items:center;
    gap:35px;
    flex-wrap:wrap;
}

.contact-item{
    color:#bdbdbd;
    font-size:15px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:22px;
    flex-wrap:wrap;
    gap:20px;
}

.copyright{
    color:#8c8c8c;
    font-size:14px;
}

.footer-links{
    display:flex;
    gap:28px;
}

.footer-links a{
    text-decoration:none;
    color:#bdbdbd;
    transition:0.3s;
    font-size:15px;
}

.footer-links a:hover{
    color:#fff;
}

/* WhatsApp Button */

.whatsapp-btn{
    position:fixed;
    right:10px;
    top:96%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 20px rgba(37,211,102,0.5);
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-50%) scale(1.08);
}

.whatsapp-btn img{
    width:28px;
    height:28px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .nba-footer{
        padding:40px 25px;
    }

    .footer-top{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-contact{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-links{
        flex-wrap:wrap;
        gap:15px;
    }

    .whatsapp-btn{
        right:20px;
        bottom:20px;
        top:auto;
        transform:none;
    }

    .whatsapp-btn:hover{
        transform:scale(1.08);
    }
}
  

  /* SVG decorative bedsheet */
  .bedsheet-svg { width: 80%; max-width: 300px; }

  /* product list page */

  .shop-banner {
  background-color: #f9f5f0; /* Image ke background jaisa light cream color */
  padding: 60px 20px 20px 20px;
  font-family: 'Playfair Display', serif; /* Serif font for the heading */
}

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Content left, count right */
  align-items: flex-end; /* Sab kuch niche se align hoga */
  position: relative;
}

.banner-content {
  max-width: 600px; /* Text ko zyada phailne se rokne ke liye */
}

.banner-content h1 {
  font-size: 48px;
  margin: 0 0 10px 0;
  color: #333;
  font-weight: 600;
}

.banner-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

.product-count {
  font-size: 16px;
  color: #666;
  font-family: Arial, sans-serif; /* Side text ke liye simple font */
  padding-bottom: 5px; /* Alignment fine-tune karne ke liye */
}

.product-link-wrapper {
    text-decoration: none !important; /* Underline hatane ke liye */
    color: inherit !important; /* Text color black/charcoal rakhne ke liye */
    display: block;
}
.product-card:hover {
    transform: translateY(-5px); /* Hover effect */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
#pagination{
      text-align: center;
    margin-top: 20px;

}
.pagination-inner >a,span{
      font-size: 30px;
}


/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-count {
    margin-top: 20px;
  }
}

/* product details page */

:root {
    --sage: #7A9E7E;
    --sage-dark: #4A6B4E;
    --cream: #F9F4EE;
    --charcoal: #2C2C2A;
}

.nbaura-product-wrapper {
    background: #FDFBF8;
    font-family: 'DM Sans', sans-serif;
    color: var(--charcoal);
}

.nb-announcement {
    background: var(--sage);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.nb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nb-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-top: 30px;
}

.nb-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 10px 0;
}

.nb-current-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--sage-dark);
}

/* Add to Cart Button Styling */
.single_add_to_cart_button {
    background-color: var(--sage-dark) !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    width: 100%;
    margin-top: 20px !important;
}

.nb-acc-trigger {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
}

.nb-acc-content {
    padding: 15px 0;
    display: none;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nb-main-grid { grid-template-columns: 1fr; }
}