 :root {
      --primary: #e1523d;       /* festive vermilion */
      --primary-dark: #b63624;
      --accent: #f6b93b;        /* marigold */
      --accent-soft: #ffe6b3;
      --bg: #fff8f2;
      --card-bg: #ffffff;
      --text: #2c2c2c;
      --muted: #777777;
      --shadow-soft: 0 14px 30px rgba(0,0,0,0.06);
      --radius-lg: 18px;
      --radius-full: 999px;
      --transition-default: all 0.25s ease;
    }

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



    body {
      font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top left, #fff4e3, #fffdf9 40%, #ffeae0 100%);
      color: var(--text);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

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

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: min(1180px, 92vw);
      margin: 0 auto;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(18px);
      background: linear-gradient(to right, rgba(255,248,242,0.94), rgba(255,234,220,0.94));
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
      gap: 1rem;
    }

.logo {
  display: flex;
  align-items: center;
}

.logo-img-horizontal {
  height: 40px;        /* match your logo height */
  max-width: 240px;    /* cap width */
  width: auto;
  object-fit: contain;
  display: block;
}


    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: conic-gradient(from 220deg, #ff7043, #ffe082, #ff7043, #ffcc80);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.16);
      position: relative;
      overflow: hidden;
    }

    .logo-mark::before {
      content: "";
      width: 60%;
      height: 60%;
      border-radius: 50%;
      border: 2px dotted rgba(255,255,255,0.9);
      position: absolute;
    }

    .logo-mark span {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    .logo-text-main {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .logo-tagline {
      font-size: 0.72rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      margin-top: -2px;
    }


.logo-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

    .nav-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      font-size: 0.92rem;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 2px;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: var(--radius-full);
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transition: width 0.24s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .pill-badge {
      font-size: 0.75rem;
      padding: 0.3rem 0.9rem;
      border-radius: var(--radius-full);
      background: rgba(225,82,61,0.08);
      border: 1px solid rgba(225,82,61,0.3);
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .pill-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #00c853;
      box-shadow: 0 0 0 5px rgba(0,200,83,0.25);
    }

    .btn-primary {
      padding: 0.55rem 1.1rem;
      border-radius: var(--radius-full);
      border: none;
      font-size: 0.9rem;
      font-weight: 600;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(225,82,61,0.35);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: var(--transition-default);
    }

    .btn-primary span.chevron {
      transform: translateY(1px);
      font-size: 1rem;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(225,82,61,0.45);
    }

    .btn-outline {
      padding: 0.5rem 1rem;
      border-radius: var(--radius-full);
      border: 1px dashed rgba(0,0,0,0.18);
      background: rgba(255,255,255,0.85);
      font-size: 0.85rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      transition: var(--transition-default);
    }

    .btn-outline:hover {
      border-style: solid;
      border-color: var(--primary);
      box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    }

    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      font-size: 1.4rem;
      cursor: pointer;
    }

    .nav-toggle-line {
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #444;
      position: relative;
      display: inline-block;
    }
    .nav-toggle-line::before,
    .nav-toggle-line::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: #444;
    }
    .nav-toggle-line::before { top: -6px; }
    .nav-toggle-line::after { top: 6px; }

    /* Hero */
    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 3rem;
      align-items: center;
    }

    .eyebrow {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.24em;
      color: var(--primary-dark);
      font-weight: 600;
      margin-bottom: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }

    .eyebrow::before {
      content: "";
      width: 22px;
      height: 1.5px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: clamp(2.1rem, 3.1vw + 1.4rem, 3.1rem);
      line-height: 1.15;
      margin-bottom: 0.6rem;
    }

    .hero h1 span.highlight {
      position: relative;
      display: inline-block;
      z-index: 1;
    }

    .hero h1 span.highlight::after {
      content: "";
      position: absolute;
      left: -4%;
      bottom: 6px;
      width: 108%;
      height: 14px;
      border-radius: 999px;
      background: rgba(246,185,59,0.4);
      z-index: -1;
    }

    .hero-sub {
      font-size: 0.97rem;
      color: #555;
      max-width: 34rem;
      margin-bottom: 1.2rem;
    }

    .hero-sub strong {
      color: var(--primary-dark);
      font-weight: 600;
    }

    .hero-highlights {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 1.4rem;
    }

    .hero-chip {
      font-size: 0.78rem;
      padding: 0.4rem 0.9rem;
      border-radius: var(--radius-full);
      border: 1px solid rgba(0,0,0,0.08);
      background: rgba(255,255,255,0.9);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      white-space: nowrap;
    }

    .hero-chip i {
      font-size: 0.9rem;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
      margin-bottom: 1.4rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .meta-item strong {
      display: block;
      font-size: 1.05rem;
      color: #333;
    }

    .meta-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--primary);
      display: inline-block;
      margin-right: 6px;
    }

    /* Hero Art */
    .hero-art {
      position: relative;
    }

    .hero-card {
      position: relative;
      background: radial-gradient(circle at top, #fff8ec 0%, #ffffff 35%, #ffe9da 100%);
      border-radius: 26px;
      box-shadow: var(--shadow-soft);
      padding: 1.4rem;
      overflow: hidden;
    }

    .hero-tag {
      position: absolute;
      top: 1.1rem;
      left: 1.2rem;
      padding: 0.28rem 0.8rem;
      border-radius: var(--radius-full);
      font-size: 0.72rem;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(0,0,0,0.06);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .hero-tag .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #43a047;
    }

    .hero-main-img {
      border-radius: 20px;
      overflow: hidden;
      border: 2px solid rgba(255,255,255,0.9);
    }

    .hero-main-img .placeholder {
      aspect-ratio: 4 / 3;
      background-image:
        radial-gradient(circle at 10% 10%, #ffe082 0, transparent 55%),
        radial-gradient(circle at 80% 20%, #ffccbc 0, transparent 50%),
        radial-gradient(circle at 20% 80%, #ffab91 0, transparent 55%),
        radial-gradient(circle at 80% 85%, #fff3e0 0, transparent 60%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .rangoli-circle {
      width: 70%;
      max-width: 260px;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, #fff 0 20%, transparent 22%),
        conic-gradient(from 90deg, #ff7043, #ffb74d, #ff7043, #ffd54f, #ff7043);
      display: grid;
      place-items: center;
      position: relative;
      box-shadow: 0 18px 40px rgba(0,0,0,0.25);
    }

    .rangoli-circle::before {
      content: "";
      width: 76%;
      height: 76%;
      border-radius: 50%;
      border: 3px dotted rgba(255,255,255,0.8);
      box-shadow: inset 0 0 0 2px rgba(255,255,255,0.4);
    }

    .rangoli-center {
      width: 32%;
      height: 32%;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 20%, #fffde7, #ff9100);
      box-shadow: 0 0 0 5px rgba(255,255,255,0.7);
    }

    .fur-petal {
      position: absolute;
      width: 18%;
      height: 18%;
      border-radius: 999px;
      background: linear-gradient(135deg, #ffebee, #f8bbd0);
      filter: drop-shadow(0 8px 18px rgba(0,0,0,0.26));
    }

    .petal-1 { top: 2%; left: 50%; transform: translateX(-50%) rotate(10deg); }
    .petal-2 { right: 4%; top: 28%; transform: rotate(80deg); }
    .petal-3 { right: 10%; bottom: 16%; transform: rotate(135deg); }
    .petal-4 { left: 8%; bottom: 18%; transform: rotate(-130deg); }
    .petal-5 { left: 2%; top: 30%; transform: rotate(-70deg); }

    .hero-float-card {
      position: absolute;
      bottom: 1.1rem;
      left: 1.2rem;
      padding: 0.7rem 0.9rem;
      border-radius: 16px;
      background: rgba(255,255,255,0.94);
      box-shadow: 0 12px 26px rgba(0,0,0,0.16);
      font-size: 0.8rem;
      min-width: 180px;
    }

    .hero-float-card strong {
      font-size: 0.9rem;
      display: block;
    }

    .hero-float-card small {
      display: block;
      color: var(--muted);
      margin-top: 0.15rem;
    }

    .hero-mini {
      position: absolute;
      right: 1.1rem;
      bottom: 1.4rem;
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
      background: rgba(0,0,0,0.72);
      color: #fff;
      font-size: 0.72rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-mini span.dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ffca28;
    }

    /* Section generic */
    section {
      padding: 2.5rem 0 2.8rem;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .section-title {
      font-size: 1.4rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .section-title span.bar {
      width: 28px;
      height: 2.5px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 999px;
    }

    .section-sub {
      font-size: 0.85rem;
      color: var(--muted);
      max-width: 24rem;
    }

    /* Product Grid */
    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.2rem;
    }

    .filter-pill {
      font-size: 0.8rem;
      padding: 0.35rem 0.9rem;
      border-radius: var(--radius-full);
      border: 1px solid rgba(0,0,0,0.08);
      background: rgba(255,255,255,0.9);
      cursor: pointer;
      transition: var(--transition-default);
    }

    .filter-pill.active,
    .filter-pill:hover {
      background: rgba(225,82,61,0.08);
      border-color: rgba(225,82,61,0.6);
      color: var(--primary-dark);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 1.2rem;
    }

    .product-card {
      background: var(--card-bg);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(0,0,0,0.04);
      position: relative;
      display: flex;
      flex-direction: column;
      transition: var(--transition-default);
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    }

    .product-img-wrap {
      position: relative;
      padding: 0.8rem 0.8rem 0.5rem;
    }

    .product-img {
      border-radius: 14px;
      overflow: hidden;
      background: #fff6ec;
      aspect-ratio: 4 / 3;
      position: relative;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      padding: 0.28rem 0.7rem;
      font-size: 0.72rem;
      border-radius: var(--radius-full);
      background: rgba(0,0,0,0.72);
      color: #fff;
    }

    .badge.secondary {
      left: auto;
      right: 1rem;
      background: rgba(255,255,255,0.95);
      color: #444;
      border: 1px solid rgba(0,0,0,0.06);
    }

    .product-body {
      padding: 0.85rem 0.95rem 0.95rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      flex: 1;
    }

    .product-name {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .product-meta {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .product-price-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-top: 0.4rem;
    }

    .price-main {
      font-weight: 700;
      font-size: 1.02rem;
      color: var(--primary-dark);
    }

    .price-main span.currency {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    .price-strike {
      font-size: 0.75rem;
      text-decoration: line-through;
      color: #999;
      margin-left: 0.35rem;
    }

    .price-off {
      font-size: 0.75rem;
      color: #2e7d32;
      font-weight: 600;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0.65rem;
      font-size: 0.76rem;
      color: var(--muted);
    }

    .stars {
      color: #ffb300;
      font-size: 0.7rem;
      letter-spacing: 1px;
    }

    .btn-add {
      border: none;
      border-radius: var(--radius-full);
      padding: 0.35rem 0.8rem;
      font-size: 0.78rem;
      background: rgba(225,82,61,0.09);
      color: var(--primary-dark);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: var(--transition-default);
      white-space: nowrap;
    }

    .btn-add:hover {
      background: rgba(225,82,61,0.18);
    }

    /* About / Story */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }

    .story-card {
      background: rgba(255,255,255,0.96);
      border-radius: 22px;
      padding: 1.3rem 1.4rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(0,0,0,0.02);
    }

    .pill-heading {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 0.45rem;
    }

    .story-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .story-card p {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 0.4rem;
    }

    .story-list {
      margin-top: 0.6rem;
      font-size: 0.85rem;
      color: #555;
    }

    .story-list li {
      list-style: none;
      margin-bottom: 0.35rem;
      display: flex;
      gap: 0.35rem;
    }

    .story-list li::before {
      content: "✦";
      color: var(--primary);
      font-size: 0.75rem;
      margin-top: 0.1rem;
    }

    .about-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-top: 0.9rem;
    }

    .metric {
      background: var(--bg);
      border-radius: 14px;
      padding: 0.7rem 0.85rem;
      font-size: 0.8rem;
      flex: 1 1 130px;
    }

    .metric strong {
      display: block;
      font-size: 1.05rem;
    }

    .about-right {
      display: grid;
      gap: 0.9rem;
    }

    .about-note {
      font-size: 0.82rem;
      padding: 0.8rem 0.9rem;
      border-radius: 18px;
      background: var(--accent-soft);
      color: #5a4100;
      border: 1px dashed rgba(90,65,0,0.25);
    }

    .meesho-card {
      padding: 0.9rem 1rem;
      border-radius: 18px;
      background: rgba(255,255,255,0.96);
      box-shadow: var(--shadow-soft);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.86rem;
    }

    .meesho-tag {
      font-weight: 600;
    }

    .meesho-link {
      padding: 0.4rem 0.9rem;
      border-radius: var(--radius-full);
      background: #ffebf6;
      border: 1px solid #ff4081;
      color: #ad1457;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    /* Testimonials */
    .testimonials {
      background: #fff9f4;
      border-top: 1px solid rgba(0,0,0,0.03);
      border-bottom: 1px solid rgba(0,0,0,0.03);
    }

    .testimonial-row {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 1.8rem;
      align-items: center;
    }

    .testimonial-list {
      display: grid;
      gap: 0.9rem;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 0.85rem 1rem;
      box-shadow: 0 10px 22px rgba(0,0,0,0.04);
      font-size: 0.85rem;
    }

    .testimonial-card p {
      margin-bottom: 0.4rem;
    }

    .testimonial-author {
      font-size: 0.78rem;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .testimonial-badge {
      padding: 0.25rem 0.6rem;
      border-radius: var(--radius-full);
      background: rgba(225,82,61,0.06);
      font-size: 0.7rem;
    }

    .rating-large {
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.4rem;
    }

    .rating-large span.stars {
      font-size: 0.82rem;
    }

    /* CTA strip */
    .cta-strip {
      margin-top: 2rem;
      background: linear-gradient(90deg, #ffb74d, #ff7043);
      border-radius: 20px;
      padding: 1rem 1.2rem;
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
    }

    .cta-strip p {
      font-size: 0.9rem;
      max-width: 22rem;
    }

    .cta-strip .btn-primary {
      box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    }

    /* Contact / Footer */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 1.8rem;
    }

    .contact-card {
      background: rgba(255,255,255,0.95);
      border-radius: 20px;
      padding: 1.2rem 1.3rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(0,0,0,0.02);
      font-size: 0.9rem;
    }

    .contact-item {
      margin-top: 0.6rem;
      font-size: 0.86rem;
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
    }

    .contact-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(225,82,61,0.08);
      display: grid;
      place-items: center;
      font-size: 0.9rem;
    }

    form {
      display: grid;
      gap: 0.7rem;
    }

    .field {
      display: grid;
      gap: 0.25rem;
      font-size: 0.8rem;
    }

    .field label {
      color: #555;
    }

    .field input,
    .field textarea {
      border-radius: 12px;
      border: 1px solid rgba(0,0,0,0.08);
      padding: 0.55rem 0.7rem;
      font-family: inherit;
      font-size: 0.85rem;
      outline: none;
      background: rgba(255,255,255,0.9);
    }

    .field input:focus,
    .field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 1px rgba(225,82,61,0.15);
    }

    .field textarea {
      resize: vertical;
      min-height: 90px;
    }

    footer {
      border-top: 1px solid rgba(0,0,0,0.03);
      padding: 1.4rem 0 1.5rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    footer .footer-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
      align-items: center;
    }

    .footer-links {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    /* Toast */
    .toast {
      position: fixed;
      left: 50%;
      bottom: 1.5rem;
      transform: translateX(-50%) translateY(120%);
      background: #212121;
      color: #fff;
      padding: 0.6rem 1.1rem;
      border-radius: 999px;
      font-size: 0.8rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 12px 28px rgba(0,0,0,0.35);
      opacity: 0;
      transition: all 0.25s ease;
      z-index: 200;
    }

    .toast.show {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }

    .toast span.dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #00c853;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-grid,
      .about-grid,
      .testimonial-row,
      .contact-grid {
        grid-template-columns: minmax(0,1fr);
      }

      .hero {
        padding-top: 2.4rem;
      }

      .hero-grid {
        gap: 2.2rem;
      }

      .product-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
    }

    @media (max-width: 720px) {
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-top: 0.6rem;
        border-top: 1px solid rgba(0,0,0,0.06);
      }

      .nav-links.open {
        display: flex;
      }

      .nav {
        flex-wrap: wrap;
      }

      .nav-actions {
        margin-left: auto;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
      }

      .cta-strip {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 600px) {
      .product-grid {
        grid-template-columns: minmax(0,1fr);
      }

      .hero-float-card {
        position: static;
        margin-top: 0.7rem;
      }

      .hero-mini {
        right: 0.9rem;
      }
    }
    
    /* Catalog CTA strip below Shop */
.catalog-cta-wrap {
  background: linear-gradient(135deg, rgba(225,82,61,0.06), rgba(246,185,59,0.10));
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.catalog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.4rem 0;
}

.catalog-cta-text h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--primary-dark);
}

.catalog-cta-text p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 26rem;
}

.catalog-cta-action .catalog-btn {
  white-space: nowrap;
}

/* Responsive behavior */
@media (max-width: 800px) {
  .catalog-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 0 1.4rem;
  }

  .catalog-cta-action {
    width: 100%;
  }

  .catalog-cta-action .catalog-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
