
    /* ============ Reset & Base ============ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --primary: #0E5C3A;
      --primary-dark: #0A4530;
      --primary-light: #1A7A4F;
      --accent: #FF7A1A;
      --accent-dark: #E66A0F;
      --dark: #0A1A14;
      --ink: #1B2520;
      --muted: #6B7280;
      --line: #E5E7EB;
      --cream: #F7F4EE;
      --white: #FFFFFF;
      --shadow-sm: 0 2px 8px rgba(10, 26, 20, 0.06);
      --shadow-md: 0 8px 24px rgba(10, 26, 20, 0.08);
      --shadow-lg: 0 20px 50px rgba(10, 26, 20, 0.15);
      --radius: 14px;35
      --radius-lg: 22px;
      --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--ink);
      line-height: 1.6;
      background: var(--white);
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; color: var(--ink); }
    h2 { font-size: clamp(2rem, 4vw, 3rem); }
    h3 { font-size: clamp(1.3rem, 2.4vw, 1.65rem); }
    p { color: #36403B; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--primary);
      margin-bottom: 18px;
    }
    .eyebrow::before {
      content: ''; width: 32px; height: 2px; background: var(--accent);
    }
    .accent { color: var(--accent); }

    /* ============ Top Bar ============ */
    .topbar {
      background: var(--dark); color: #D1D5DB;
      font-size: 0.82rem; padding: 10px 0;
    }
    .topbar .container {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .topbar a:hover { color: var(--accent); }
    .topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
    .topbar-info i { color: var(--accent); margin-right: 6px; }
    .topbar-social { display: flex; gap: 14px; }
    .topbar-social a {
      width: 28px; height: 28px; border-radius: 50%;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.06);
    }
    .topbar-social a:hover { background: var(--accent); color: var(--white); }

    /* ============ Header ============ */
    .header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid transparent;
      transition: all var(--transition);
    }
    .header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
    .header .container {
      display: flex; align-items: center; justify-content: space-between;
      height: 78px; gap: 12px;
    }
    .logo {
      display: flex; align-items: center; gap: 12px;
      font-family: 'Playfair Display', serif; font-weight: 700;
    }
    .logo-img { height: 58px; width: auto; display: block; }

    .nav { display: flex; align-items: center; gap: 36px; }
    .nav-list { display: flex; list-style: none; gap: 32px; }
    .nav-list a {
      font-size: 0.95rem; font-weight: 500; color: var(--ink);
      position: relative; padding: 6px 0;
    }
    .nav-list a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--accent);
      transition: width var(--transition);
    }
    .nav-list a:hover::after, .nav-list a.active::after { width: 100%; }
    .nav-list a:hover, .nav-list a.active { color: var(--primary); }

    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 12px 26px; border-radius: 50px;
      font-size: 0.9rem; font-weight: 600;
      transition: all var(--transition);
      cursor: pointer; white-space: nowrap;
    }
    .btn-primary {
      background: var(--accent); color: var(--white);
      box-shadow: 0 6px 20px rgba(255, 122, 26, 0.32);
    }
    .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 122, 26, 0.4); }
    .btn-ghost { color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
    .btn-ghost:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
    .btn-outline { color: var(--primary); border: 1.5px solid var(--primary); }
    .btn-outline:hover { background: var(--primary); color: var(--white); }

    .menu-toggle {
      display: none; font-size: 1.2rem; color: var(--white);
      background: var(--primary); border-radius: 10px;
      width: 44px; height: 44px; align-items: center; justify-content: center;
      box-shadow: var(--shadow-sm); flex-shrink: 0; flex: 0 0 auto;
    }
    @media (max-width: 1024px) { .menu-toggle { display: inline-flex !important; } }

    /* ============ Hero ============ */
    .hero {
      position: relative; min-height: 92vh; display: flex; align-items: center;
      color: var(--white); overflow: hidden; isolation: isolate;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: -2;
      background: url('../img/hero-vet.jpg') center/cover no-repeat;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0; z-index: -1;
      background:
        linear-gradient(105deg, rgba(10,26,20,0.85) 0%, rgba(10,26,20,0.55) 45%, rgba(10,26,20,0.2) 100%),
        linear-gradient(to bottom, rgba(10,26,20,0.3), rgba(10,26,20,0.7));
    }
    .hero-inner {
      width: 100%;
      padding: 100px 0 80px;
    }
    .hero .eyebrow { color: var(--accent); }
    .hero h1 {
      color: var(--white); font-size: clamp(2.4rem, 5.5vw, 4.5rem);
      font-weight: 700; letter-spacing: -0.02em; max-width: 820px;
      line-height: 1.05; margin-bottom: 24px;
    }
    .hero h1 em {
      font-style: italic; color: var(--accent); font-weight: 600;
    }
    .hero p.lead {
      color: rgba(255,255,255,0.85); font-size: clamp(1rem, 1.4vw, 1.15rem);
      max-width: 580px; margin-bottom: 38px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .hero-stats {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: rgba(10, 26, 20, 0.55);
      backdrop-filter: blur(8px);
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stats .container {
      display: grid; grid-template-columns: repeat(4, 1fr);
      padding: 28px 24px; gap: 24px;
    }
    .stat { color: var(--white); }
    .stat-num {
      font-family: 'Playfair Display', serif; font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--accent);
      line-height: 1; margin-bottom: 6px;
    }
    .stat-num small { font-size: 0.55em; color: var(--white); margin-left: 4px; font-weight: 500; }
    .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.3; }

    .hero-scroll {
      position: absolute; bottom: 130px; right: 40px;
      color: rgba(255,255,255,0.6); font-size: 0.75rem;
      letter-spacing: 0.2em; text-transform: uppercase;
      writing-mode: vertical-rl; display: none;
    }

    /* ============ Section base ============ */
    section { padding: 110px 0; }
    .section-light { background: var(--cream); }
    .section-dark {
      background: var(--dark); color: var(--white);
    }
    .section-dark h2, .section-dark h3 { color: var(--white); }
    .section-dark p { color: rgba(255,255,255,0.75); }

    .section-head {
      max-width: 720px; margin: 0 auto 60px; text-align: center;
    }
    .section-head.left { text-align: left; margin-left: 0; }
    .section-head .eyebrow { justify-content: center; }
    .section-head.left .eyebrow { justify-content: flex-start; }
    .section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 12px; }

    /* ============ Value Props ============ */
    .values { background: var(--white); padding: 80px 0; }
    .values-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 28px; margin-top: -160px; position: relative; z-index: 5;
    }
    .value-card {
      background: var(--white); border-radius: var(--radius);
      padding: 32px 26px; box-shadow: var(--shadow-md);
      border: 1px solid var(--line);
      transition: all var(--transition);
    }
    .value-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--accent);
    }
    .value-icon {
      width: 56px; height: 56px; border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: var(--white); display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 22px;
      position: relative;
    }
    .value-icon::after {
      content: ''; position: absolute; top: -4px; right: -4px;
      width: 16px; height: 16px; background: var(--accent);
      border-radius: 50%;
    }
    .value-card h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
    .value-card p { font-size: 0.92rem; color: var(--muted); }

    /* ============ About ============ */
    .about-grid {
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-images { position: relative; }
    .about-images .img-main {
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/5;
    }
    .about-images .img-main img { width: 100%; height: 100%; object-fit: cover; }
    .about-images .img-float {
      position: absolute; right: -50px; bottom: -40px;
      width: 50%; aspect-ratio: 1; border-radius: var(--radius);
      overflow: hidden; border: 6px solid var(--white);
      box-shadow: var(--shadow-lg);
    }
    .about-images .img-float img { width: 100%; height: 100%; object-fit: cover; }
    .about-badge {
      position: absolute; top: 30px; left: -30px;
      background: var(--accent); color: var(--white);
      width: 130px; height: 130px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; font-weight: 700;
      box-shadow: 0 10px 30px rgba(255, 122, 26, 0.4);
      transform: rotate(-8deg);
    }
    .about-badge .num { font-size: 2.2rem; line-height: 1; }
    .about-badge .lbl { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
    .about-content > .eyebrow { margin-top: 0; }
    .about-content h2 { margin-bottom: 22px; }
    .about-content > p { margin-bottom: 18px; font-size: 1.02rem; color: #36403B; }
    .about-points { list-style: none; margin: 28px 0 36px; }
    .about-points li {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 14px 0; border-bottom: 1px solid var(--line);
    }
    .about-points li:last-child { border-bottom: none; }
    .about-points i {
      color: var(--accent); font-size: 1rem; margin-top: 4px;
      width: 24px; height: 24px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      background: rgba(255, 122, 26, 0.1); border-radius: 50%;
    }
    .about-points strong { display: block; font-size: 1rem; margin-bottom: 2px; }
    .about-points span { font-size: 0.9rem; color: var(--muted); }

    /* ============ Products ============ */
    .products-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
    }
    .product-card {
      background: var(--white); border-radius: var(--radius);
      overflow: hidden; border: 1px solid var(--line);
      transition: all var(--transition);
      display: flex; flex-direction: column;
    }
    .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .product-image {
      aspect-ratio: 1; background: var(--cream); position: relative; overflow: hidden;
    }
    .product-image img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s ease;
    }
    .product-card:hover .product-image img { transform: scale(1.06); }
    .product-tag {
      position: absolute; top: 16px; left: 16px;
      background: var(--primary); color: var(--white);
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 6px 12px; border-radius: 50px;
      white-space: nowrap; max-width: calc(100% - 32px);
      overflow: hidden; text-overflow: ellipsis;
    }
    .product-body { padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column; }
    .product-body h3 {
      font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700;
      margin-bottom: 10px;
    }
    .product-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; flex: 1; }
    .product-meta {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 18px; border-top: 1px solid var(--line);
    }
    .product-meta .price {
      font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
      color: var(--primary);
    }
    .product-meta .price small { font-size: 0.7rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 500; display: block; }
    .product-cta {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--primary); color: var(--white);
      display: inline-flex; align-items: center; justify-content: center;
      transition: all var(--transition);
    }
    .product-cta:hover { background: var(--accent); transform: rotate(-45deg); }

    /* ============ Quality / Numbers ============ */
    .quality {
      background: linear-gradient(rgba(10,26,20,0.88), rgba(10,26,20,0.92)),
                  url('../img/quality-cert.jpg') center/cover no-repeat fixed;
      color: var(--white); position: relative;
    }
    .quality-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: center;
    }
    .quality-content h2 { margin-bottom: 22px; }
    .quality-content > p { margin-bottom: 32px; }
    .quality-features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
    .q-feat {
      padding: 22px 20px; border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius);
      transition: all var(--transition);
    }
    .q-feat:hover { background: rgba(255,255,255,0.06); border-color: var(--accent); }
    .q-feat i { color: var(--accent); font-size: 1.5rem; margin-bottom: 12px; }
    .q-feat h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
    .q-feat p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

    .quality-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    }
    .q-stat {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 32px 26px;
      backdrop-filter: blur(10px);
    }
    .q-stat .num {
      font-family: 'Playfair Display', serif; font-size: 3.2rem; font-weight: 700;
      color: var(--accent); line-height: 1;
    }
    .q-stat .lbl { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-top: 8px; }

    /* ============ Process / Why us ============ */
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .why-card {
      padding: 40px 32px; border-radius: var(--radius-lg);
      background: var(--white); border: 1px solid var(--line);
      transition: all var(--transition); position: relative; overflow: hidden;
    }
    .why-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 0; height: 4px; background: var(--accent);
      transition: width var(--transition);
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
    .why-card:hover::before { width: 100%; }
    .why-num {
      font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700;
      color: var(--cream); line-height: 1; margin-bottom: 16px;
    }
    .why-card h3 { font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
    .why-card p { font-size: 0.95rem; color: var(--muted); }

    /* ============ Testimonial / Vet CTA ============ */
    .vet-cta {
      background: var(--cream); position: relative; overflow: hidden;
    }
    .vet-cta-grid {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
      align-items: center;
    }
    .vet-cta-content h2 { margin-bottom: 20px; }
    .vet-cta-content > p { font-size: 1.05rem; margin-bottom: 28px; }
    .vet-list { list-style: none; margin-bottom: 32px; }
    .vet-list li {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 8px 0; font-size: 0.98rem;
    }
    .vet-list i { color: var(--primary); margin-top: 5px; }
    .vet-cta-image {
      border-radius: var(--radius-lg); overflow: hidden;
      aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
    }
    .vet-cta-image img { width: 100%; height: 100%; object-fit: cover; }

    /* ============ Contact ============ */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
    .contact-info { padding-right: 20px; }
    .contact-info h2 { margin-bottom: 18px; }
    .contact-info > p { color: var(--muted); margin-bottom: 36px; }
    .contact-item {
      display: flex; gap: 18px; align-items: flex-start;
      padding: 22px 0; border-bottom: 1px solid var(--line);
    }
    .contact-item:last-of-type { border-bottom: none; }
    .contact-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: var(--cream); color: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
      transition: all var(--transition);
    }
    .contact-item:hover .contact-icon { background: var(--accent); color: var(--white); transform: rotate(-8deg); }
    .contact-item strong { display: block; font-size: 1rem; margin-bottom: 4px; }
    .contact-item span, .contact-item a { color: var(--muted); font-size: 0.95rem; }
    .contact-item a:hover { color: var(--accent); }

    .contact-form {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 40px; border: 1px solid var(--line);
      box-shadow: var(--shadow-md);
    }
    .contact-form h3 { font-family: 'Inter', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
    .contact-form .hint { color: var(--muted); font-size: 0.9rem; margin-bottom: 26px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
    .form-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
    .form-field input, .form-field select, .form-field textarea {
      padding: 14px 16px; border: 1.5px solid var(--line);
      border-radius: 10px; font-family: inherit; font-size: 0.95rem;
      background: var(--white); transition: border-color var(--transition);
      color: var(--ink);
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      outline: none; border-color: var(--primary);
    }
    .form-field textarea { resize: vertical; min-height: 110px; }
    .form-success {
      display: none; background: #E8F5EE; color: var(--primary);
      padding: 14px 18px; border-radius: 10px; margin-bottom: 18px;
      font-size: 0.9rem; font-weight: 600;
    }
    .form-success.show { display: block; }
    .form-row.submit { grid-template-columns: 1fr; }

    /* ============ Footer ============ */
    .footer {
      background: var(--dark); color: rgba(255,255,255,0.7);
      padding: 80px 0 30px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 50px; margin-bottom: 50px;
    }
    .footer-col h4 {
      color: var(--white); font-family: 'Inter', sans-serif;
      font-size: 0.95rem; font-weight: 700; margin-bottom: 22px;
      text-transform: uppercase; letter-spacing: 0.1em;
    }
    .footer-col p { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
    .footer-col .logo { margin-bottom: 18px; }
    .footer-col .logo-img { height: 66px; filter: brightness(0) invert(1); }
    .footer-col ul { list-style: none; }
    .footer-col ul li { padding: 7px 0; }
    .footer-col ul a { font-size: 0.92rem; color: rgba(255,255,255,0.65); }
    .footer-col ul a:hover { color: var(--accent); padding-left: 6px; }
    .footer-social { display: flex; gap: 12px; margin-top: 22px; }
    .footer-social a {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.08);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--white);
    }
    .footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 28px; display: flex; justify-content: space-between;
      flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.5);
    }

    /* ============ Reveal animation ============ */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .reveal.in { opacity: 1; transform: translateY(0); }

    /* ============ Responsive ============ */
    @media (max-width: 1024px) {
      .hero-stats .container { grid-template-columns: repeat(2, 1fr); }
      .values-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid, .quality-grid, .vet-cta-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
      .about-images .img-float { right: 0; bottom: -30px; width: 45%; }
      .about-badge { left: 0; top: 20px; width: 110px; height: 110px; }
      .why-grid { grid-template-columns: 1fr; gap: 20px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .nav {
        position: fixed; top: 78px; left: 0; right: 0; bottom: 0;
        background: var(--white); flex-direction: column;
        padding: 30px 24px; align-items: stretch;
        transform: translateX(100%); transition: transform var(--transition);
        box-shadow: var(--shadow-md); gap: 20px; overflow-y: auto;
      }
      .nav.open { transform: translateX(0); }
      .nav-list { flex-direction: column; gap: 18px; }
      .nav-list a { font-size: 1.1rem; }
      .nav .btn { justify-content: center; }
    }
    @media (max-width: 768px) {
      section { padding: 70px 0; }
      .topbar { display: none; }
      .header .container { height: 64px; }
      .logo-img { height: 44px; }
      .nav { top: 64px; }
      .hero { min-height: auto; padding: 60px 0 40px; }
      .hero-inner { padding: 60px 20px 40px; }
      .hero-stats { position: relative; }
      .hero-stats .container { padding: 22px 16px; gap: 16px; }
      .values { padding: 50px 0; }
      .values-grid { margin-top: -40px; }
      .values-grid, .products-grid, .quality-features, .quality-stats { grid-template-columns: 1fr 1fr; }
      .quality-features { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 36px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .values-grid, .quality-stats { grid-template-columns: 1fr; }
      .about-images .img-float { width: 55%; }
      .contact-form { padding: 26px; }
    }
    .no-scroll { overflow: hidden; }
    /* ============ Animations & Effects ============ */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes slideRight { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
    @keyframes slideLeft { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
    @keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
    @keyframes drawLine { from { width: 0; } to { width: 100%; } }
    @keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
    @keyframes floatXY { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(28px, -22px); } 66% { transform: translate(-22px, 14px); } }
    @keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: 0.7; } }
    @keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.4); } 50% { box-shadow: 0 0 0 18px rgba(255, 122, 26, 0); } }
    @keyframes kenBurns { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }
    @keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
    @keyframes scrollMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @keyframes blobMove {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(40px, -30px) scale(1.05); }
      50% { transform: translate(-20px, 40px) scale(0.95); }
      75% { transform: translate(30px, 20px) scale(1.02); }
    }
    @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
    @keyframes typing { from { width: 0; } to { width: 100%; } }
    @keyframes blink { 50% { border-color: transparent; } }
    @keyframes revealMask { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }

    /* Reveal variants */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.9s ease, transform 0.9s ease; }
    .reveal-left.in { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.9s ease, transform 0.9s ease; }
    .reveal-right.in { opacity: 1; transform: translateX(0); }
    .reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.9s ease, transform 0.9s ease; }
    .reveal-scale.in { opacity: 1; transform: scale(1); }
    .reveal-mask { clip-path: inset(0 0 0 100%); transition: clip-path 1s cubic-bezier(0.7, 0, 0.3, 1); }
    .reveal-mask.in { clip-path: inset(0 0 0 0); }

    /* Stagger children */
    .stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .stagger.in > * { opacity: 1; transform: translateY(0); }
    .stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
    .stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
    .stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
    .stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
    .stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
    .stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

    /* ============ Page Loader ============ */
    .page-loader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--dark);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 28px;
      transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    .page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-mark {
      width: 76px; height: 76px; border-radius: 18px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      display: flex; align-items: center; justify-content: center;
      color: var(--white); font-family: 'Inter', sans-serif; font-weight: 800; font-size: 2.2rem;
      position: relative; animation: pulse 1.6s ease-in-out infinite;
    }
    .loader-mark img { width: 46px; height: 46px; object-fit: contain; }
    .loader-mark::after {
      content: ''; position: absolute; inset: -8px; border-radius: 22px;
      border: 2px solid var(--accent);
      animation: spinSlow 2.4s linear infinite;
      border-top-color: transparent; border-right-color: transparent;
    }
    .loader-bars { display: flex; gap: 8px; }
    .loader-bars span {
      display: block; width: 6px; height: 24px;
      background: var(--accent); border-radius: 3px;
      animation: loaderBounce 1s ease-in-out infinite;
    }
    .loader-bars span:nth-child(2) { animation-delay: 0.15s; }
    .loader-bars span:nth-child(3) { animation-delay: 0.3s; }
    .loader-bars span:nth-child(4) { animation-delay: 0.45s; }
    @keyframes loaderBounce {
      0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
      50% { transform: scaleY(1); opacity: 1; }
    }
    .loader-text {
      color: rgba(255,255,255,0.6); font-size: 0.8rem;
      letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500;
    }

    /* ============ Hero effects ============ */
    .hero { perspective: 1200px; }
    .hero-bg {
      animation: kenBurns 22s ease-in-out infinite alternate;
      will-change: transform;
    }
    .hero-shapes {
      position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
    }
    .hero-shape {
      position: absolute; border-radius: 50%; filter: blur(60px);
      opacity: 0.4; animation: blobMove 14s ease-in-out infinite;
    }
    .hero-shape.s1 { width: 380px; height: 380px; background: var(--primary); top: 10%; left: -5%; animation-delay: 0s; }
    .hero-shape.s2 { width: 280px; height: 280px; background: var(--accent); bottom: 20%; right: 8%; animation-delay: -4s; opacity: 0.25; }
    .hero-shape.s3 { width: 220px; height: 220px; background: #4FC3F7; top: 50%; left: 40%; animation-delay: -8s; opacity: 0.18; }

    .hero-grid {
      position: absolute; inset: 0; z-index: -1; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }

    /* Split text reveal */
    .split-text { display: inline-block; overflow: hidden; vertical-align: bottom; }
    .split-text > span { display: inline-block; transform: translateY(110%); animation: textUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
    .split-text > span:nth-child(1) { animation-delay: 0.05s; }
    .split-text > span:nth-child(2) { animation-delay: 0.15s; }
    .split-text > span:nth-child(3) { animation-delay: 0.25s; }
    .split-text > span:nth-child(4) { animation-delay: 0.35s; }
    .split-text > span:nth-child(5) { animation-delay: 0.45s; }
    @keyframes textUp { to { transform: translateY(0); } }

    .hero h1 em.split-text > span { color: var(--accent); }

    /* Hero text reveal on load */
    .hero .eyebrow { opacity: 0; transform: translateX(-30px); animation: slideRight 0.8s 0.1s ease forwards; }
    .hero h1 { opacity: 0; animation: fadeIn 0.6s 0.3s ease forwards; }
    .hero p.lead { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 1.1s ease forwards; }
    .hero-actions { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 1.3s ease forwards; }
    .hero-stats { opacity: 0; animation: fadeUp 0.8s 1.5s ease forwards; }

    /* Animated underline for nav */
    .nav-list a { position: relative; }
    .nav-list a::before {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 100%; height: 1px; background: currentColor;
      transform: scaleX(0); transform-origin: right;
      transition: transform 0.4s ease;
    }
    .nav-list a:hover::before { transform: scaleX(1); transform-origin: left; }
    .nav-list a::after {
      content: ''; position: absolute; bottom: -8px; left: 50%;
      width: 4px; height: 4px; background: var(--accent);
      border-radius: 50%; transform: translate(-50%, 8px); opacity: 0;
      transition: all 0.3s ease;
    }
    .nav-list a:hover::after, .nav-list a.active::after { opacity: 1; transform: translate(-50%, 0); }
    .nav-list a::after { display: none; }

    /* Magnetic / glow buttons */
    .btn-primary { position: relative; overflow: hidden; isolation: isolate; }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: translateX(-100%); transition: transform 0.6s ease;
    }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary::after {
      content: ''; position: absolute; inset: 0;
      box-shadow: 0 0 0 0 rgba(255, 122, 26, 0.5);
      border-radius: inherit; opacity: 0; transition: opacity 0.3s ease;
    }
    .btn-primary:hover { animation: pulseGlow 1.6s ease-in-out infinite; }

    /* Animated CTA icon arrow */
    .btn i { transition: transform 0.35s ease; }
    .btn:hover i { transform: translateX(4px); }

    /* ============ 3D Tilt cards ============ */
    .tilt-card {
      transform-style: preserve-3d;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      will-change: transform;
    }
    .value-card, .product-card, .why-card, .q-stat, .q-feat {
      transform-style: preserve-3d;
    }
    .value-card::after, .product-card::after, .why-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,122,26,0.0), rgba(255,122,26,0.0));
      border-radius: inherit; pointer-events: none;
      transition: background 0.3s ease;
    }
    .value-card:hover::after, .product-card:hover::after, .why-card:hover::after {
      background: linear-gradient(135deg, rgba(255,122,26,0.05), rgba(14,92,58,0.05));
    }

    /* Icon spin on hover */
    .value-icon, .q-feat i, .contact-icon {
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
    }
    .value-card:hover .value-icon,
    .q-feat:hover i,
    .contact-item:hover .contact-icon { transform: rotate(360deg) scale(1.08); }

    /* Product card shine */
    .product-card { position: relative; overflow: hidden; }
    .product-card .shine {
      position: absolute; top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
      transition: left 0.7s ease; pointer-events: none;
    }
    .product-card:hover .shine { left: 150%; }

    /* Product card image zoom stronger */
    .product-image { overflow: hidden; }
    .product-image img { transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .product-card:hover .product-image img { transform: scale(1.12) rotate(2deg); }

    /* Why card top border slide */
    .why-card::before {
      content: ''; position: absolute; top: 0; left: 0;
      width: 0; height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--primary));
      transition: width 0.5s ease;
    }
    .why-card:hover::before { width: 100%; }

    /* ============ Section dividers ============ */
    .section-divider {
      height: 1px; margin: 0;
      background: linear-gradient(90deg, transparent, var(--line), transparent);
    }

    /* ============ Marquee ============ */
    .marquee {
      background: var(--cream);
      padding: 36px 0; overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .marquee-track {
      display: flex; gap: 60px; align-items: center;
      animation: scrollMarquee 30s linear infinite;
      width: max-content;
    }
    .marquee-item {
      display: flex; align-items: center; gap: 12px;
      color: var(--muted); font-weight: 600;
      white-space: nowrap; font-size: 0.95rem;
      transition: color 0.3s ease;
    }
    .marquee-item:hover { color: var(--primary); }
    .marquee-item i { color: var(--accent); font-size: 1.4rem; }
    .marquee:hover .marquee-track { animation-play-state: paused; }

    /* ============ Floating elements ============ */
    .floating { animation: floatY 5s ease-in-out infinite; }
    .floating-delayed { animation: floatY 5s ease-in-out infinite; animation-delay: -2.5s; }
    .floating-slow { animation: floatXY 9s ease-in-out infinite; }

    /* ============ Gradient text ============ */
    .gradient-text {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientShift 6s ease infinite;
    }

    /* ============ Animated background pattern ============ */
    .bg-pattern {
      position: relative;
    }
    .bg-pattern::before {
      content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
      background-image: radial-gradient(circle at 20% 20%, rgba(14,92,58,0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,122,26,0.05) 0%, transparent 50%);
    }
    .bg-pattern > * { position: relative; z-index: 1; }

    /* ============ Counter color pulse ============ */
    .stat-num, .q-stat .num {
      background: linear-gradient(135deg, var(--accent) 0%, #FFB07A 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientShift 4s ease infinite;
    }
    .q-stat .num { animation: gradientShift 5s ease infinite; }

    /* ============ Form input animation ============ */
    .form-field { position: relative; }
    .form-field input, .form-field select, .form-field textarea {
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(14,92,58,0.1);
      transform: translateY(-1px);
    }
    .form-field label { transition: color 0.3s ease; }
    .form-field input:focus + label, .form-field:focus-within label { color: var(--primary); }

    /* ============ Scroll progress bar ============ */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px; z-index: 1000;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      width: 0%;
      transition: width 0.1s linear;
      box-shadow: 0 0 10px rgba(255,122,26,0.5);
    }

    /* ============ Back to top button ============ */
    .back-to-top {
      position: fixed; bottom: 30px; right: 30px; z-index: 99;
      width: 50px; height: 50px; border-radius: 50%;
      background: var(--primary); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(14,92,58,0.4);
      opacity: 0; visibility: hidden; transform: translateY(20px);
      transition: all 0.3s ease;
    }
    .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--accent); transform: translateY(-4px); }

    /* ============ Cursor follower (subtle) ============ */
    .cursor-glow {
      position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,122,26,0.08) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease;
      opacity: 0;
      mix-blend-mode: screen;
    }
    @media (max-width: 1024px) { .cursor-glow { display: none; } }

    /* ============ Subtle badge pulse ============ */
    .about-badge { animation: floatY 4s ease-in-out infinite; }

    /* ============ Animated arrow scroll indicator ============ */
    .scroll-indicator {
      position: absolute; bottom: 120px; left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.5); font-size: 0.7rem;
      letter-spacing: 0.3em; text-transform: uppercase;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      z-index: 5;
    }
    .scroll-indicator::after {
      content: ''; width: 1px; height: 40px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      animation: scrollDown 1.8s ease-in-out infinite;
    }
    @keyframes scrollDown {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ============ Responsive tweaks ============ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
  
    /* ============ Page-specific ============ */
    .page-hero {
      min-height: 50vh; padding: 160px 0 80px;
      position: relative; color: var(--white); overflow: hidden;
    }
    .page-hero--sm { min-height: 40vh; padding: 80px 0 80px; }
    .page-hero-bg {
      position: absolute; inset: 0; z-index: -2;
      background-size: cover; background-position: center;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0; z-index: -1;
      background: linear-gradient(105deg, rgba(10,26,20,0.85) 0%, rgba(10,26,20,0.5) 100%);
    }
    .breadcrumb {
      display: flex; gap: 10px; align-items: center; font-size: 0.85rem;
      color: rgba(255,255,255,0.7); margin-bottom: 18px;
    }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb i { font-size: 0.6rem; }
    .page-hero h1 { color: var(--white); max-width: 800px; }

    /* ============ Product listing ============ */
    .product-toolbar {
      display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
      align-items: center; margin-bottom: 50px;
    }
    .filter-tabs {
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .filter-tab {
      padding: 10px 20px; border-radius: 50px;
      background: var(--white); border: 1.5px solid var(--line);
      font-size: 0.88rem; font-weight: 600;
      color: var(--ink); cursor: pointer;
      transition: all 0.3s ease;
    }
    .filter-tab:hover { border-color: var(--primary); color: var(--primary); }
    .filter-tab.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
    .product-search {
      display: flex; align-items: center; gap: 10px;
      background: var(--white); border: 1.5px solid var(--line);
      border-radius: 50px; padding: 8px 18px; min-width: 280px;
      transition: border-color 0.3s ease;
    }
    .product-search:focus-within { border-color: var(--primary); }
    .product-search i { color: var(--muted); }
    .product-search input {
      border: none; outline: none; background: transparent;
      flex: 1; font-family: inherit; font-size: 0.95rem; color: var(--ink);
    }

    .product-meta-row {
      display: flex; align-items: center; gap: 16px; margin-bottom: 12px;
      font-size: 0.82rem; color: var(--muted);
    }
    .product-meta-row .sku { font-weight: 600; color: var(--primary); }
    .product-meta-row .cat {
      padding: 4px 10px; background: var(--cream); border-radius: 20px;
      color: var(--primary); font-weight: 600;
    }

    /* ============ Product Detail ============ */
    .product-detail {
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 70px;
    }
    .pd-gallery { min-width: 0; }
    .pd-gallery-sticky { position: sticky; top: 100px; }
    .pd-main-image {
      aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden;
      background: var(--cream); margin-bottom: 16px;
      box-shadow: var(--shadow-md);
    }
    .pd-main-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .pd-main-image:hover img { transform: scale(1.05); }
    .pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .pd-thumb {
      aspect-ratio: 1; border-radius: 10px; overflow: hidden;
      background: var(--cream); border: 2px solid transparent;
      cursor: pointer; transition: all 0.3s ease;
    }
    .pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .pd-thumb:hover, .pd-thumb.active { border-color: var(--accent); }

    .pd-info h1 { font-size: clamp(2rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
    .pd-info .eyebrow { margin-bottom: 14px; }
    .pd-meta-bar {
      display: flex; flex-wrap: wrap; gap: 16px; padding: 20px 0;
      border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
      margin: 24px 0;
    }
    .pd-meta-item { display: flex; gap: 10px; align-items: center; font-size: 0.9rem; }
    .pd-meta-item i { color: var(--accent); }
    .pd-meta-item strong { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }

    .pd-description { font-size: 1.05rem; line-height: 1.8; color: #36403B; margin-bottom: 30px; }
    .pd-description p { margin-bottom: 14px; }

    .pd-section {
      padding: 30px; border-radius: var(--radius-lg);
      background: var(--cream); margin-bottom: 24px;
    }
    .pd-section h3 {
      font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700;
      display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
      color: var(--primary);
    }
    .pd-section h3 i { color: var(--accent); }
    .pd-section p { color: #36403B; }

    .composition-table {
      width: 100%; border-collapse: collapse;
      background: var(--white); border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--shadow-sm);
    }
    .composition-table th, .composition-table td {
      padding: 14px 18px; text-align: left; font-size: 0.92rem;
      border-bottom: 1px solid var(--line);
    }
    .composition-table th {
      background: var(--primary); color: var(--white);
      font-weight: 600; font-size: 0.82rem;
      text-transform: uppercase; letter-spacing: 0.08em;
    }
    .composition-table tr:last-child td { border-bottom: none; }
    .composition-table tbody tr { transition: background 0.2s ease; }
    .composition-table tbody tr:hover { background: var(--cream); }
    .composition-table tr.comp-group td {
      background: var(--cream); color: var(--primary);
      font-weight: 700; font-size: 0.82rem;
      letter-spacing: 0.06em; text-transform: uppercase;
    }
    .composition-table td:nth-child(4) {
      font-weight: 700; color: var(--primary);
    }

    .pd-actions {
      display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px;
    }
    .pd-feature-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0; }
    .pd-feature-list li {
      display: flex; gap: 10px; align-items: center; font-size: 0.92rem;
    }
    .pd-feature-list i { color: var(--primary); }

    /* ============ Simple page content ============ */
    .simple-content {
      max-width: 800px; margin: 0 auto;
    }
    .simple-content h2 { margin: 40px 0 18px; }
    .simple-content p { font-size: 1.05rem; color: #36403B; margin-bottom: 18px; line-height: 1.8; }
    .simple-content ul { margin: 20px 0 20px 24px; }
    .simple-content ul li { padding: 6px 0; color: #36403B; }

    /* ============ Page header for non-hero pages ============ */
    .section-header-light {
      padding: 80px 0 50px; background: var(--cream);
      border-bottom: 1px solid var(--line);
    }
    .section-header-light h1 { margin-bottom: 14px; }
    .section-header-light p { color: var(--muted); font-size: 1.05rem; max-width: 700px; }

    /* ============ Quick view modal-like ============ */
    .feature-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
    .feature-block {
      padding: 30px; border-radius: var(--radius-lg);
      background: var(--white); border: 1px solid var(--line);
    }
    .feature-block .icon-circle {
      width: 56px; height: 56px; border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: var(--white); display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 18px;
    }
    .feature-block h3 {
      font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 700;
      margin-bottom: 10px;
    }
    .feature-block p { color: var(--muted); font-size: 0.95rem; }

    /* ============ Filtre açılır listesi (mobil) ============ */
    .filter-select { display: none; }

    /* ============ Mobil düzeltmeler (dosya sonu — base kuralları ezer) ============ */
    @media (max-width: 1024px) {
      /* backdrop-filter, fixed .nav için containing block oluşturur;
         kaldırılınca mobil menü viewport'a göre konumlanır */
      .header { backdrop-filter: none; -webkit-backdrop-filter: none; }
      .product-detail { grid-template-columns: minmax(0, 1fr); gap: 40px; }
      .product-detail > * { min-width: 0; }
      .pd-gallery-sticky { position: static; }
    }
    @media (max-width: 768px) {
      .scroll-indicator { display: none; }
      .feature-grid-2 { grid-template-columns: 1fr; gap: 20px; }
      .composition-table { display: block; overflow-x: auto; white-space: nowrap; }
      .page-hero, .page-hero--sm { min-height: auto; padding: 70px 0 40px; }
      .filter-tabs { display: none; }
      .filter-select {
        display: block; width: 100%;
        padding: 12px 18px; border-radius: 50px;
        border: 1.5px solid var(--line); background: var(--white);
        font-family: inherit; font-size: 0.9rem; font-weight: 600;
        color: var(--ink); appearance: none; -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230E5C3A' stroke-width='2' fill='none'/%3E%3C/svg%3E");
        background-repeat: no-repeat; background-position: right 18px center;
        cursor: pointer;
      }
      .product-search { min-width: 0; width: 100%; }
      .products-grid { gap: 12px; }
      .product-card .product-body { padding: 14px 12px 16px; }
      .product-card .product-body h3 { font-size: 0.95rem; margin-bottom: 6px; }
      .product-card .product-body p {
        font-size: 0.78rem; margin-bottom: 12px;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .product-card .product-image { display: flex; flex-direction: column; aspect-ratio: auto; }
      .product-card .product-tag {
        position: static; order: -1; align-self: flex-start; width: auto;
        margin: 10px 10px 6px; font-size: 0.6rem; padding: 4px 10px;
        letter-spacing: 0.04em; max-width: calc(100% - 20px);
      }
      .product-card .product-image img { flex: none; width: 100%; height: auto; aspect-ratio: 1; }
      .product-meta-row { gap: 8px; margin-bottom: 8px; font-size: 0.72rem; }
      .product-meta-row .cat {
        display: inline-block; max-width: 100%; padding: 3px 8px;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      }
      .product-meta { padding-top: 12px; }
      .product-meta .price { font-size: 0.85rem; }
      .product-cta { width: 30px; height: 30px; font-size: 0.8rem; }
    }
    @media (max-width: 480px) {
      .pd-feature-list { grid-template-columns: 1fr; }
      .pd-actions .btn { width: 100%; justify-content: center; }
      #products-preview .products-grid {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 78%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 10px;
        scrollbar-width: none;
      }
      #products-preview .products-grid::-webkit-scrollbar { display: none; }
      #products-preview .product-card { scroll-snap-align: start; }
    }
