/* ============================================================
   TENA HEALTHCARE — MAIN STYLESHEET
   Palette: Teal #467F8D | Deep Teal #345F6A | Mist #F0F7F9
            Seafoam #7EB8C4 | Charcoal #2A3639 | Cool White #F8FBFC
   ============================================================ */

   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

   /* ── RESET & BASE ── */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   
  :root {
    --rose:      #7EB8C4;
    --rose-dark: #5A9AAD;
    --plum:      #467F8D;
    --plum-light:#5A9AAD;
    --plum-dark: #345F6A;
    --ivory:     #F0F7F9;
    --ivory-dark:#E3EFF2;
    --sage:      #8FBCB0;
    --charcoal:  #2A3639;
    --warm-white:#F8FBFC;
    --text-muted:#5A7279;
    --border:    #CFE0E5;
    --primary-rgb: 70, 127, 141;

    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body:    'DM Sans', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 48px;

    --shadow-sm:  0 2px 8px rgba(var(--primary-rgb),.07);
    --shadow-md:  0 8px 28px rgba(var(--primary-rgb),.12);
    --shadow-lg:  0 20px 60px rgba(var(--primary-rgb),.18);
   
     --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   
     --container:  1240px;
     --header-h:   76px;
   }
   
   html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
   
   body {
     font-family: var(--ff-body);
     color: var(--charcoal);
     background: var(--warm-white);
     line-height: 1.65;
     overflow-x: hidden;
     max-width: 100%;
   }
   
   img { max-width: 100%; display: block; }
   a  { text-decoration: none; color: inherit; }
   ul { list-style: none; }
   button { cursor: pointer; border: none; background: none; font-family: inherit; }
   input, textarea, select { font-family: inherit; }
   
   .container {
     width: 100%;
     max-width: var(--container);
     margin: 0 auto;
     padding: 0 24px;
   }
   
   .section-pad { padding: 96px 0; }
   .section-pad-sm { padding: 64px 0; }
   
   /* ── TYPOGRAPHY ── */
   .display-xl { font-family: var(--ff-display); font-size: clamp(2.8rem,5vw,4.5rem); line-height: 1.1; font-weight: 700; }
   .display-lg { font-family: var(--ff-display); font-size: clamp(2rem,4vw,3.2rem); line-height: 1.15; font-weight: 700; }
   .display-md { font-family: var(--ff-display); font-size: clamp(1.6rem,3vw,2.4rem); line-height: 1.2; font-weight: 600; }
   .display-sm { font-family: var(--ff-display); font-size: clamp(1.2rem,2vw,1.6rem); line-height: 1.3; font-weight: 600; }
   
   .eyebrow {
     display: inline-block;
     font-size: .75rem;
     font-weight: 600;
     letter-spacing: .18em;
     text-transform: uppercase;
     color: var(--rose-dark);
     margin-bottom: 12px;
   }
   
   .section-heading {
     font-family: var(--ff-display);
     font-size: clamp(1.8rem,3.5vw,2.8rem);
     color: var(--plum);
     line-height: 1.2;
     margin-bottom: 16px;
   }
   
   .section-sub {
     color: var(--text-muted);
     max-width: 560px;
     font-size: 1.05rem;
   }
   
   /* ── BUTTONS ── */
   .btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 14px 32px;
     border-radius: 100px;
     font-size: .95rem;
     font-weight: 600;
     transition: var(--transition);
     letter-spacing: .02em;
   }
   
  .btn-primary {
    background: var(--plum);
    color: #fff;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb),.3);
  }
  .btn-primary:hover {
    background: var(--plum-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb),.4);
  }
   
   .btn-outline {
     background: transparent;
     color: var(--plum);
     border: 2px solid var(--plum);
   }
   .btn-outline:hover {
     background: var(--plum);
     color: #fff;
     transform: translateY(-2px);
   }
   
  .btn-rose {
    background: linear-gradient(135deg, var(--rose), var(--rose-dark));
    color: #fff;
    box-shadow: 0 4px 18px rgba(var(--primary-rgb),.35);
  }
  .btn-rose:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(var(--primary-rgb),.45);
  }
   
   .btn-white {
     background: #fff;
     color: var(--plum);
     box-shadow: 0 4px 16px rgba(0,0,0,.12);
   }
   .btn-white:hover {
     background: var(--ivory);
     transform: translateY(-2px);
   }
   
   /* ── ANNOUNCEMENT BAR ── */
  .announcement-bar {
    background: var(--plum-dark);
     color: #fff;
     text-align: center;
     padding: 0;
     font-size: .82rem;
     letter-spacing: .03em;
     position: relative;
     z-index: 1001;
     overflow: hidden;
     height: 40px;
     display: flex;
     align-items: center;
   }
   .announcement-track {
     display: flex;
     width: max-content;
     animation: announcement-scroll 32s linear infinite;
     will-change: transform;
   }
   .announcement-track:hover {
     animation-play-state: paused;
   }
   .announcement-group {
     display: flex;
     align-items: center;
     gap: 0;
     flex-shrink: 0;
     white-space: nowrap;
     padding-right: 48px;
   }
   .announcement-item {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 0 8px;
     color: rgba(255,255,255,.95);
     font-weight: 500;
   }
   .announcement-item i {
     color: var(--rose);
     font-size: .78rem;
     flex-shrink: 0;
   }
   .announcement-item strong {
     color: #fff;
     font-weight: 600;
   }
   .announcement-sep {
     color: rgba(255,255,255,.35);
     padding: 0 18px;
     font-weight: 300;
   }
   @keyframes announcement-scroll {
     from { transform: translateX(0); }
     to { transform: translateX(-50%); }
   }
   
   /* ── HEADER ── */
   .site-header {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: rgba(240,247,249,.95);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid var(--border);
     transition: box-shadow var(--transition);
   }
   .site-header.scrolled { box-shadow: var(--shadow-md); }
   
   .header-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: var(--header-h);
     gap: 24px;
   }
   
   .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
   }
   .logo-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, var(--rose), var(--plum));
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 1.1rem;
   }

   .logo-img {
     width: 44px;
     height: 44px;
     object-fit: contain;
     flex-shrink: 0;
     border-radius: 8px;
   }
   .logo-text { font-family: var(--ff-display); }
   .logo-name { display: block; font-size: 1.2rem; font-weight: 700; color: var(--plum); line-height: 1.1; }
   .logo-tag  { display: block; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--rose-dark); }
   
   .main-nav { display: flex; align-items: center; gap: 4px; }
   .main-nav a {
     padding: 8px 16px;
     font-size: .95rem;
     font-weight: 500;
     color: var(--charcoal);
     border-radius: 100px;
     transition: var(--transition);
     position: relative;
   }
   .main-nav a::after {
     content: '';
     position: absolute;
     bottom: 4px;
     left: 16px;
     right: 16px;
     height: 2px;
     background: var(--rose);
     transform: scaleX(0);
     transition: var(--transition);
     border-radius: 2px;
   }
   .main-nav a:hover, .main-nav a.active { color: var(--plum); }
   .main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
   
   .header-icons { display: flex; align-items: center; gap: 4px; }
   .icon-btn {
     width: 42px; height: 42px;
     border-radius: 10px;
     display: flex; align-items: center; justify-content: center;
     color: var(--charcoal);
     transition: var(--transition);
     position: relative;
   }
   .icon-btn:hover { background: var(--ivory-dark); color: var(--plum); }
   
   .cart-badge {
     position: absolute;
     top: 4px; right: 4px;
     background: var(--rose-dark);
     color: #fff;
     font-size: .65rem;
     font-weight: 700;
     width: 17px; height: 17px;
     border-radius: 50%;
     display: flex; align-items: center; justify-content: center;
     line-height: 1;
   }
   
   .menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
   .menu-toggle span {
     display: block;
     width: 22px; height: 2px;
     background: var(--plum);
     border-radius: 2px;
     transition: var(--transition);
   }
   
   /* Mobile nav overlay */
   .mobile-nav {
     display: none;
     position: fixed;
     top: 0; left: 0; right: 0; bottom: 0;
     background: var(--warm-white);
     z-index: 999;
     flex-direction: column;
     padding: 100px 32px 40px;
     gap: 8px;
     transform: translateX(100%);
     transition: transform var(--transition);
   }
   .mobile-nav.open { transform: translateX(0); }
   .mobile-nav a {
     font-family: var(--ff-display);
     font-size: 1.8rem;
     font-weight: 600;
     color: var(--plum);
     padding: 12px 0;
     border-bottom: 1px solid var(--border);
     transition: var(--transition);
   }
   .mobile-nav a:hover { color: var(--rose-dark); padding-left: 12px; }
   
   /* ── HERO SLIDER ── */
   .hero-swiper {
     height: 92vh;
     min-height: 560px;
     max-height: 860px;
     width: 100%;
     max-width: 100%;
     overflow: hidden;
   }
   
   .hero-slide {
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
   }

  .hero-slide-1 { background: linear-gradient(135deg, #EEF6F8 0%, #E0EFF3 40%, #D0E8EE 100%); }
  .hero-slide-2 { background: linear-gradient(135deg, #E8F2F5 0%, #D8E8ED 40%, #C8DFE6 100%); }
  .hero-slide-3 { background: linear-gradient(135deg, #EDF5F2 0%, #E0EFE8 40%, #D4E8DF 100%); }
   
   .hero-bg-shape {
     position: absolute;
     border-radius: 50%;
     opacity: .18;
     animation: floatShape 8s ease-in-out infinite;
   }
   .hero-bg-shape.s1 { width: 600px; height: 600px; background: var(--rose); top: -200px; right: -150px; }
   .hero-bg-shape.s2 { width: 300px; height: 300px; background: var(--plum); bottom: -100px; left: -80px; animation-delay: 2s; }
   .hero-bg-shape.s3 { width: 200px; height: 200px; background: var(--sage); top: 30%; right: 30%; animation-delay: 4s; }
   
   @keyframes floatShape {
     0%,100% { transform: translateY(0) scale(1); }
     50% { transform: translateY(-20px) scale(1.05); }
   }
   
   .hero-content {
     position: relative;
     z-index: 2;
     max-width: 640px;
   }
   .hero-content .eyebrow { font-size: .8rem; }
   .hero-content h1 { margin-bottom: 20px; }
   .hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 480px; }
   .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
   
   .hero-image-wrap {
     position: absolute;
     right: 0; top: 0; bottom: 0;
     width: 45%;
     display: flex; align-items: center; justify-content: center;
     overflow: hidden;
   }
   .hero-illustration {
     width: 100%;
     height: 100%;
     display: flex; align-items: center; justify-content: center;
     font-size: clamp(4rem, 18vw, 12rem);
     opacity: .15;
     user-select: none;
     overflow: hidden;
   }
   
   /* Swiper pagination/nav */
   .hero-swiper .swiper-pagination { bottom: 32px; }
   .hero-swiper .swiper-pagination-bullet { width: 10px; height: 10px; background: var(--plum); opacity: .3; }
   .hero-swiper .swiper-pagination-bullet-active { opacity: 1; width: 28px; border-radius: 5px; }
   .hero-swiper .swiper-button-next,
   .hero-swiper .swiper-button-prev {
     width: 48px; height: 48px;
     border-radius: 50%;
     background: #fff;
     box-shadow: var(--shadow-md);
     color: var(--plum);
   }
   .hero-swiper .swiper-button-next::after,
   .hero-swiper .swiper-button-prev::after { font-size: .85rem; font-weight: 800; }
   
   /* ── INTRO SHOWCASE (Watch & Learn) ── */
   .intro-section {
     background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
     color: #fff;
     overflow: hidden;
     position: relative;
   }
   .intro-section::before {
     content: '';
     position: absolute;
     width: 500px; height: 500px;
     border-radius: 50%;
     background: rgba(255,255,255,.06);
     top: -180px; right: -120px;
     pointer-events: none;
   }

   .intro-showcase {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 64px;
     align-items: center;
   }

   .intro-visual {
     position: relative;
     max-width: 440px;
     margin: 0 auto;
   }

   .intro-glow {
     position: absolute;
     inset: 10% 5%;
     background: radial-gradient(ellipse, rgba(126,184,196,.35) 0%, transparent 70%);
     border-radius: 50%;
     animation: introGlow 4s ease-in-out infinite;
     pointer-events: none;
   }

   @keyframes introGlow {
     0%, 100% { opacity: .6; transform: scale(1); }
     50% { opacity: 1; transform: scale(1.08); }
   }

   .intro-woman-frame {
     border-radius: var(--radius-xl);
     overflow: hidden;
     border: 4px solid rgba(255,255,255,.2);
     box-shadow: 0 24px 60px rgba(0,0,0,.25);
     aspect-ratio: 4/5;
     background: rgba(255,255,255,.08);
     animation: introFloatWoman 6s ease-in-out infinite;
   }

   @keyframes introFloatWoman {
     0%, 100% { transform: translateY(0); }
     50% { transform: translateY(-12px); }
   }

   .intro-woman-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center top;
     display: block;
   }

   .intro-pad-img {
     position: absolute;
     bottom: -16px;
     left: -24px;
     width: 46%;
     max-width: 200px;
     height: auto;
     filter: drop-shadow(0 20px 40px rgba(0,0,0,.3));
     animation: introFloatPad 5s ease-in-out infinite;
     border-radius: var(--radius-md);
   }

   @keyframes introFloatPad {
     0%, 100% { transform: translateY(0) rotate(-3deg); }
     50% { transform: translateY(-14px) rotate(3deg); }
   }

   .intro-content { text-align: left; }

   .intro-eyebrow { color: var(--rose) !important; }

   .intro-heading {
     color: #fff !important;
     margin-bottom: 20px;
   }

   .intro-text {
     color: rgba(255,255,255,.82);
     font-size: 1.05rem;
     line-height: 1.8;
     margin-bottom: 18px;
     max-width: 520px;
   }

   .intro-shop-btn {
     margin-top: 12px;
     animation: introBtnPulse 2.5s ease-in-out infinite;
   }

   .intro-shop-btn:hover {
     animation: none;
     transform: translateY(-3px) scale(1.03);
   }

   @keyframes introBtnPulse {
     0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,.15); }
     50% { box-shadow: 0 8px 32px rgba(255,255,255,.35); }
   }
   
   /* ── WHY CHOOSE US ── */
   .why-section { background: var(--ivory); }
   .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
   
   .why-card {
     background: #fff;
     border-radius: var(--radius-md);
     padding: 36px 28px;
     text-align: center;
     border: 1px solid var(--border);
     transition: var(--transition);
     position: relative;
     overflow: hidden;
   }
   .why-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, var(--rose), var(--plum));
     opacity: 0;
     transition: var(--transition);
   }
   .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
   .why-card:hover::before { opacity: 1; }
   .why-card:hover .why-icon,
   .why-card:hover h3,
   .why-card:hover p { color: #fff; position: relative; z-index: 1; }
   
   .why-icon {
     width: 64px; height: 64px;
     border-radius: 16px;
     background: linear-gradient(135deg, var(--ivory-dark), var(--border));
     display: flex; align-items: center; justify-content: center;
     margin: 0 auto 20px;
     font-size: 1.5rem;
     color: var(--plum);
     transition: var(--transition);
   }
   .why-card:hover .why-icon { background: rgba(255,255,255,.2); }
   .why-card h3 { font-family: var(--ff-display); color: var(--plum); margin-bottom: 10px; font-size: 1.1rem; transition: var(--transition); }
   .why-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; transition: var(--transition); }
   
   /* ── TRUSTED CARE ── */
   .trusted-section {}
   .trusted-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
   }
   .trusted-image-wrap {
     position: relative;
     border-radius: var(--radius-lg);
     overflow: hidden;
   }
   .trusted-img-placeholder {
     width: 100%; aspect-ratio: 4/5;
     background: linear-gradient(135deg, var(--ivory-dark), var(--rose) 60%, var(--plum));
     border-radius: var(--radius-lg);
     display: flex; align-items: center; justify-content: center;
     font-size: 8rem;
     color: rgba(255,255,255,.3);
   }
   .trusted-badge {
     position: absolute;
     bottom: 28px; left: -24px;
     background: #fff;
     border-radius: var(--radius-md);
     padding: 16px 24px;
     box-shadow: var(--shadow-lg);
     display: flex; align-items: center; gap: 12px;
     font-weight: 600;
     color: var(--plum);
   }
   .trusted-badge-icon { color: var(--rose-dark); font-size: 1.4rem; }
   
   .trusted-content { }
   .trusted-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
   .trusted-feature {
     display: flex; gap: 16px; align-items: flex-start;
     padding: 20px;
     border-radius: var(--radius-sm);
     border: 1px solid var(--border);
     transition: var(--transition);
   }
   .trusted-feature:hover { border-color: var(--rose); box-shadow: var(--shadow-sm); background: var(--ivory); }
   .tf-icon {
     width: 44px; height: 44px; flex-shrink: 0;
     border-radius: 10px;
     background: linear-gradient(135deg, var(--ivory-dark), var(--border));
     display: flex; align-items: center; justify-content: center;
     color: var(--plum);
   }
   .tf-text h4 { font-family: var(--ff-display); color: var(--plum); margin-bottom: 4px; }
   .tf-text p  { color: var(--text-muted); font-size: .9rem; }
   
   /* ── MANUFACTURING VIDEO ── */
   .mfg-section { background: var(--ivory); text-align: center; }

   .mfg-showcase {
     display: grid;
     grid-template-columns: 1.1fr 1fr;
     gap: 28px;
     align-items: stretch;
     max-width: 1000px;
     margin: 0 auto 40px;
     text-align: left;
   }

   .mfg-video-thumb {
     position: relative;
     display: block;
     width: 100%;
     border: none;
     padding: 0;
     border-radius: var(--radius-lg);
     overflow: hidden;
     cursor: pointer;
     background: var(--plum-dark);
     box-shadow: var(--shadow-lg);
     aspect-ratio: 16/10;
     transition: var(--transition);
   }

   .mfg-video-thumb:hover {
     transform: translateY(-4px);
     box-shadow: 0 24px 56px rgba(var(--primary-rgb),.25);
   }

   .mfg-video-poster {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     opacity: .92;
     transition: var(--transition);
   }

   .mfg-video-thumb:hover .mfg-video-poster { opacity: .75; transform: scale(1.03); }

   .mfg-play-btn {
     position: absolute;
     top: 50%; left: 50%;
     transform: translate(-50%, -50%);
     width: 72px; height: 72px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--rose), var(--rose-dark));
     color: #fff;
     display: flex; align-items: center; justify-content: center;
     font-size: 1.4rem;
     padding-left: 4px;
     box-shadow: 0 8px 28px rgba(0,0,0,.3);
     animation: mfgPlayPulse 2s ease-in-out infinite;
     transition: var(--transition);
   }

   .mfg-video-thumb:hover .mfg-play-btn {
     transform: translate(-50%, -50%) scale(1.1);
     animation: none;
   }

   @keyframes mfgPlayPulse {
     0%, 100% { box-shadow: 0 8px 28px rgba(0,0,0,.3), 0 0 0 0 rgba(var(--primary-rgb),.4); }
     50% { box-shadow: 0 8px 28px rgba(0,0,0,.3), 0 0 0 14px rgba(var(--primary-rgb),0); }
   }

   .mfg-video-label {
     position: absolute;
     bottom: 0; left: 0; right: 0;
     padding: 16px 20px;
     background: linear-gradient(transparent, rgba(52,95,106,.85));
     color: #fff;
     font-size: .9rem;
     font-weight: 600;
     text-align: center;
   }

   .mfg-images {
     display: grid;
     grid-template-rows: 1fr 1fr;
     gap: 16px;
   }

   .mfg-image-card {
     border-radius: var(--radius-md);
     overflow: hidden;
     box-shadow: var(--shadow-md);
     border: 2px solid var(--border);
     background: #fff;
     transition: var(--transition);
   }

   .mfg-image-card:hover {
     transform: translateY(-3px);
     box-shadow: var(--shadow-lg);
     border-color: var(--rose);
   }

   .mfg-image-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     min-height: 140px;
   }

   /* Video popup modal */
   .video-modal {
     position: fixed;
     inset: 0;
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 24px;
     opacity: 0;
     pointer-events: none;
     transition: opacity .35s ease;
   }

   .video-modal.open {
     opacity: 1;
     pointer-events: all;
   }

   .video-modal-backdrop {
     position: absolute;
     inset: 0;
     background: rgba(42,54,57,.85);
     backdrop-filter: blur(8px);
   }

   .video-modal-box {
     position: relative;
     width: 100%;
     max-width: 900px;
     z-index: 1;
     transform: scale(.92);
     transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
   }

   .video-modal.open .video-modal-box { transform: scale(1); }

   .video-modal-close {
     position: absolute;
     top: -48px; right: 0;
     width: 40px; height: 40px;
     border-radius: 50%;
     background: rgba(255,255,255,.15);
     color: #fff;
     display: flex; align-items: center; justify-content: center;
     font-size: 1.1rem;
     cursor: pointer;
     border: 1px solid rgba(255,255,255,.25);
     transition: var(--transition);
     z-index: 2;
   }

   .video-modal-close:hover { background: var(--plum); }

   .video-modal-frame {
     position: relative;
     width: 100%;
     aspect-ratio: 16/9;
     border-radius: var(--radius-md);
     overflow: hidden;
     background: #000;
     box-shadow: var(--shadow-lg);
   }

   .video-modal-frame iframe {
     position: absolute;
     inset: 0;
     width: 100%;
     height: 100%;
     border: none;
   }

   .mfg-labels { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
   .mfg-label {
     display: flex; align-items: center; gap: 8px;
     background: #fff;
     border: 1px solid var(--border);
     border-radius: 100px;
     padding: 10px 20px;
     font-size: .9rem;
     font-weight: 600;
     color: var(--plum);
     transition: var(--transition);
   }
   .mfg-label:hover { background: var(--plum); color: #fff; border-color: var(--plum); }
   .mfg-label i { color: var(--rose-dark); transition: var(--transition); }
   .mfg-label:hover i { color: var(--rose); }
   
   /* ── TESTIMONIALS ── */
   .testimonials-section { background: var(--plum); color: #fff; }
   .testimonials-section .section-heading { color: #fff; }
   .testimonials-section .section-sub { color: rgba(255,255,255,.65); margin: 0 auto 48px; }
   
   .testimonial-card {
     background: rgba(255,255,255,.07);
     border: 1px solid rgba(255,255,255,.12);
     border-radius: var(--radius-md);
     padding: 36px;
     margin: 8px;
   }
   .testi-quote { font-size: 2.5rem; color: var(--rose); line-height: 1; margin-bottom: 16px; font-family: Georgia; }
   .testi-text { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,.85); margin-bottom: 24px; font-style: italic; }
   .testi-author { display: flex; align-items: center; gap: 12px; }
   .testi-avatar {
     width: 48px; height: 48px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--rose), var(--rose-dark));
     display: flex; align-items: center; justify-content: center;
     font-weight: 700;
     color: #fff;
     font-size: .9rem;
   }
   .testi-name { font-weight: 600; }
   .testi-location { font-size: .8rem; color: rgba(255,255,255,.5); }
   .testi-stars { color: #FFD700; font-size: .85rem; margin-top: 4px; }
   
   .testi-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.4); }
   .testi-swiper .swiper-pagination-bullet-active { background: var(--rose); width: 24px; border-radius: 4px; }
   
   /* ── NEWSLETTER ── */
   .newsletter-section {
     background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 50%, var(--plum-light) 100%);
     text-align: center;
     color: #fff;
   }
   .newsletter-section .section-heading { color: #fff; }
   .newsletter-section p { color: rgba(255,255,255,.85); margin: 0 auto 32px; max-width: 480px; }
   
   .newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
   .newsletter-form input {
     flex: 1;
     padding: 14px 20px;
     border-radius: 100px;
     border: 2px solid rgba(255,255,255,.4);
     background: rgba(255,255,255,.15);
     color: #fff;
     font-size: .95rem;
     outline: none;
     transition: var(--transition);
   }
   .newsletter-form input::placeholder { color: rgba(255,255,255,.6); }
   .newsletter-form input:focus { border-color: #fff; background: rgba(255,255,255,.2); }
   .newsletter-form .btn { flex-shrink: 0; }
   
   /* ── SHOP PAGE ── */
   .shop-hero {
     background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 100%);
     padding: 64px 0 40px;
     text-align: center;
   }
   
   .shop-controls {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     margin-bottom: 40px;
     flex-wrap: wrap;
   }
   .search-bar {
     position: relative;
     flex: 1;
     max-width: 360px;
   }
   .search-bar i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }
   .search-bar input {
     width: 100%;
     padding: 12px 16px 12px 44px;
     border: 1px solid var(--border);
     border-radius: 100px;
     background: #fff;
     outline: none;
     transition: var(--transition);
   }
   .search-bar input:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.15); }
   
   .sort-select {
     padding: 12px 20px;
     border: 1px solid var(--border);
     border-radius: 100px;
     background: #fff;
     color: var(--charcoal);
     outline: none;
     cursor: pointer;
   }
   
   .products-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
   }
   
   .product-card {
     background: #fff;
     border-radius: var(--radius-md);
     overflow: hidden;
     border: 1px solid var(--border);
     transition: var(--transition);
     position: relative;
   }
   .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
   
   .product-img-wrap {
     position: relative;
     aspect-ratio: 1;
     background: linear-gradient(135deg, var(--ivory), var(--ivory-dark));
     overflow: hidden;
   }
   .product-img-placeholder {
     width: 100%; height: 100%;
     display: flex; align-items: center; justify-content: center;
     font-size: 5rem;
     color: rgba(var(--primary-rgb),.15);
   }
   .product-badge {
     position: absolute;
     top: 12px; left: 12px;
     background: var(--rose-dark);
     color: #fff;
     font-size: .7rem;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 100px;
     letter-spacing: .05em;
     text-transform: uppercase;
   }
   .product-actions {
     position: absolute;
     top: 12px; right: 12px;
     display: flex; flex-direction: column; gap: 8px;
     opacity: 0;
     transform: translateX(8px);
     transition: var(--transition);
   }
   .product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
   .product-action-btn {
     width: 36px; height: 36px;
     border-radius: 8px;
     background: #fff;
     box-shadow: var(--shadow-sm);
     display: flex; align-items: center; justify-content: center;
     color: var(--charcoal);
     transition: var(--transition);
   }
   .product-action-btn:hover { background: var(--plum); color: #fff; }
   
   .product-info { padding: 20px; }
   .product-name { font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: var(--plum); margin-bottom: 6px; }
   .product-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
   .product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
   .product-price { font-size: 1.2rem; font-weight: 700; color: var(--plum); }
   .product-price-old { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; }
   .product-stars { color: #FFD700; font-size: .75rem; margin-bottom: 4px; }
   .add-to-cart-btn {
     background: var(--plum);
     color: #fff;
     padding: 9px 18px;
     border-radius: 100px;
     font-size: .82rem;
     font-weight: 600;
     transition: var(--transition);
   }
   .add-to-cart-btn:hover { background: var(--rose-dark); transform: scale(1.03); }

   /* ── SHOP PRODUCT SHOWCASE ── */
   .shop-products-section { background: var(--warm-white); }

   .shop-product-block {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 40px;
     margin-bottom: 48px;
     box-shadow: var(--shadow-sm);
   }

   .shop-product-block:last-child { margin-bottom: 0; }

   .shop-product-showcase {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     align-items: start;
     margin-bottom: 36px;
   }

   .shop-gallery-main {
     border-radius: var(--radius-md);
     overflow: hidden;
     aspect-ratio: 1;
     background: var(--ivory);
     border: 1px solid var(--border);
     margin-bottom: 14px;
   }

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

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

   .shop-gallery-thumb {
     aspect-ratio: 1;
     border-radius: var(--radius-sm);
     overflow: hidden;
     border: 2px solid transparent;
     padding: 0;
     cursor: pointer;
     background: var(--ivory);
     transition: var(--transition);
   }

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

   .shop-gallery-thumb.active,
   .shop-gallery-thumb:hover { border-color: var(--plum); }

   .shop-product-category {
     display: inline-block;
     font-size: .72rem;
     font-weight: 700;
     letter-spacing: .14em;
     text-transform: uppercase;
     color: var(--rose-dark);
     margin-bottom: 10px;
   }

   .shop-product-title {
     font-family: var(--ff-display);
     font-size: clamp(1.6rem, 3vw, 2.2rem);
     color: var(--charcoal);
     line-height: 1.2;
     margin-bottom: 12px;
   }

   .shop-product-rating {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 16px;
   }

   .shop-stars { color: #FFD700; font-size: .9rem; }
   .shop-rating-text { font-size: .88rem; color: var(--text-muted); }

   .shop-product-price-row {
     display: flex;
     align-items: baseline;
     gap: 12px;
     margin-bottom: 20px;
   }

   .shop-product-price {
     font-size: 2rem;
     font-weight: 700;
     color: var(--plum);
     line-height: 1;
   }

   .shop-product-old-price {
     font-size: 1.1rem;
     color: var(--text-muted);
     text-decoration: line-through;
   }

   .shop-product-desc {
     color: var(--text-muted);
     font-size: 1rem;
     line-height: 1.8;
     margin-bottom: 24px;
   }

   .shop-qty-row {
     display: flex;
     align-items: center;
     gap: 16px;
     margin-bottom: 20px;
   }

   .shop-qty-label {
     font-size: .9rem;
     font-weight: 600;
     color: var(--charcoal);
   }

   .shop-qty-selector .qty-input { background: #fff; }

   .shop-cta-row {
     display: flex;
     gap: 12px;
     margin-bottom: 12px;
   }

   .shop-add-btn { width: 100%; justify-content: center; }

   .shop-buy-btn {
     width: 100%;
     justify-content: center;
     margin-bottom: 24px;
   }

   .shop-trust-badges {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 12px;
   }

   .shop-trust-badge {
     background: var(--ivory);
     border: 1px solid var(--border);
     border-radius: var(--radius-sm);
     padding: 14px 12px;
     text-align: center;
     font-size: .78rem;
     font-weight: 600;
     color: var(--charcoal);
     line-height: 1.4;
   }

   .shop-trust-badge i {
     display: block;
     color: var(--plum);
     font-size: 1.1rem;
     margin-bottom: 8px;
   }

   .shop-product-tabs-wrap {
     border-top: 1px solid var(--border);
     padding-top: 28px;
   }

   .shop-tab-nav {
     display: flex;
     gap: 12px;
     margin-bottom: 24px;
     flex-wrap: wrap;
   }

   .shop-tab-btn {
     padding: 12px 28px;
     border-radius: 100px;
     border: 2px solid var(--border);
     background: #fff;
     font-size: .9rem;
     font-weight: 600;
     color: var(--charcoal);
     transition: var(--transition);
   }

   .shop-tab-btn:hover { border-color: var(--plum); color: var(--plum); }

   .shop-tab-btn.active {
     background: var(--plum);
     border-color: var(--plum);
     color: #fff;
   }

   .shop-tab-panel { display: none; }
   .shop-tab-panel.active { display: block; }

   .shop-tab-list {
     list-style: none;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px 24px;
   }

   .shop-tab-list li {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: .92rem;
     color: var(--text-muted);
     line-height: 1.6;
   }

   .shop-tab-list li i {
     color: var(--sage);
     margin-top: 4px;
     flex-shrink: 0;
   }

   .shop-tab-list--benefits li i { color: var(--plum); }

   .shop-review-card {
     background: var(--ivory);
     border: 1px solid var(--border);
     border-radius: var(--radius-sm);
     padding: 20px 24px;
     margin-bottom: 12px;
   }

   .shop-review-card:last-child { margin-bottom: 0; }

   .shop-review-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 8px;
     gap: 12px;
   }

   .shop-review-head strong { color: var(--charcoal); }
   .shop-review-stars { color: #FFD700; font-size: .8rem; }

   .shop-review-card p {
     color: var(--text-muted);
     font-size: .92rem;
     line-height: 1.65;
     margin: 0;
   }
   
   /* ── PRODUCT DETAILS ── */
   .product-detail-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 64px;
     align-items: start;
   }
   
   .product-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
   .gallery-main {
     border-radius: var(--radius-md);
     overflow: hidden;
     aspect-ratio: 1;
     background: var(--ivory);
     margin-bottom: 16px;
     display: flex; align-items: center; justify-content: center;
     font-size: 10rem; color: rgba(var(--primary-rgb),.12);
     border: 1px solid var(--border);
   }
   .gallery-thumbs { display: flex; gap: 10px; }
   .gallery-thumb {
     width: 72px; height: 72px;
     border-radius: var(--radius-sm);
     background: var(--ivory-dark);
     border: 2px solid transparent;
     cursor: pointer;
     display: flex; align-items: center; justify-content: center;
     font-size: 1.8rem; color: rgba(var(--primary-rgb),.2);
     transition: var(--transition);
   }
   .gallery-thumb.active, .gallery-thumb:hover { border-color: var(--plum); }
   
   .product-detail-content { }
   .product-detail-title { font-family: var(--ff-display); font-size: 2rem; color: var(--plum); margin-bottom: 8px; }
   .product-detail-price { font-size: 1.6rem; font-weight: 700; color: var(--plum); margin: 16px 0; }
   .product-detail-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
   
   .product-features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
   .pf-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
   .pf-item i { color: var(--sage); font-size: .85rem; }
   
   .qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 24px; }
   .qty-btn {
     width: 40px; height: 40px;
     border-radius: 8px 0 0 8px;
     background: var(--ivory-dark);
     color: var(--plum);
     font-size: 1.2rem;
     transition: var(--transition);
   }
   .qty-btn:last-child { border-radius: 0 8px 8px 0; }
   .qty-btn:hover { background: var(--plum); color: #fff; }
   .qty-input {
     width: 56px; height: 40px;
     border: 1px solid var(--border);
     border-left: none; border-right: none;
     text-align: center;
     font-size: 1rem;
     font-weight: 600;
     color: var(--plum);
     outline: none;
   }
   
   .detail-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
   
   .product-meta { border-top: 1px solid var(--border); padding-top: 20px; }
   .meta-item { display: flex; gap: 8px; font-size: .85rem; margin-bottom: 8px; color: var(--text-muted); }
   .meta-item strong { color: var(--charcoal); }
   
   /* ── CART PAGE ── */
   .cart-layout {
     display: grid;
     grid-template-columns: 1fr 360px;
     gap: 40px;
     align-items: start;
   }
   
   .cart-table-head {
     display: grid;
     grid-template-columns: 3fr 1fr 1fr 1fr auto;
     gap: 16px;
     padding: 16px 20px;
     background: var(--ivory);
     border-radius: var(--radius-sm);
     font-size: .8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: .06em;
     color: var(--text-muted);
     margin-bottom: 8px;
   }
   
   .cart-item {
     display: grid;
     grid-template-columns: 3fr 1fr 1fr 1fr auto;
     gap: 16px;
     align-items: center;
     padding: 20px;
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius-sm);
     margin-bottom: 8px;
     transition: var(--transition);
   }
   .cart-item:hover { box-shadow: var(--shadow-sm); }
   
   .cart-product { display: flex; align-items: center; gap: 16px; }
   .cart-product-img {
     width: 72px; height: 72px;
     border-radius: var(--radius-sm);
     background: var(--ivory-dark);
     display: flex; align-items: center; justify-content: center;
     font-size: 2rem;
     flex-shrink: 0;
     border: 1px solid var(--border);
     overflow: hidden;
   }
   .cart-product-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
   }
   .cart-product-img i { font-size: 1.4rem; color: var(--text-muted); }
   .cart-product-name { font-weight: 600; color: var(--plum); font-size: .95rem; }
   .cart-product-sku  { font-size: .8rem; color: var(--text-muted); }
   .cart-price, .cart-total-col { font-weight: 600; color: var(--charcoal); }
   .cart-total-col { color: var(--plum); }

   /* ── CHECKOUT ── */
   .checkout-section { padding-top: 8px; }

   .checkout-back-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: var(--plum);
     font-size: .9rem;
     font-weight: 600;
     margin-bottom: 24px;
     background: none;
     border: none;
     cursor: pointer;
     padding: 0;
   }

   .checkout-back-btn:hover { color: var(--plum-dark); }

   .checkout-layout {
     display: grid;
     grid-template-columns: 1fr 360px;
     gap: 32px;
     align-items: start;
   }

   .checkout-form {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 32px;
     box-shadow: var(--shadow-sm);
   }

   .checkout-form h2 {
     font-family: var(--font-display);
     color: var(--plum);
     margin-bottom: 6px;
   }

   .checkout-form-sub {
     color: var(--text-muted);
     font-size: .92rem;
     margin-bottom: 24px;
   }

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

   .checkout-form .form-group { margin-bottom: 16px; }

   .checkout-form label {
     display: block;
     font-size: .88rem;
     font-weight: 600;
     color: var(--charcoal);
     margin-bottom: 6px;
   }

   .checkout-form input,
   .checkout-form select,
   .checkout-form textarea {
     width: 100%;
     padding: 12px 14px;
     border: 1px solid var(--border);
     border-radius: var(--radius-md);
     font-family: inherit;
     font-size: .92rem;
     background: #fff;
   }

   .checkout-form input:focus,
   .checkout-form select:focus,
   .checkout-form textarea:focus {
     outline: none;
     border-color: var(--plum);
     box-shadow: 0 0 0 3px rgba(70, 127, 141, 0.12);
   }

   .checkout-form select:disabled {
     background: var(--ivory);
     color: var(--text-muted);
     cursor: not-allowed;
   }

   .checkout-shipping-hint {
     margin: 0 0 20px;
     padding: 12px 14px;
     background: var(--ivory);
     border-radius: var(--radius-md);
     border-left: 3px solid var(--plum);
     font-size: .85rem;
     color: var(--text-muted);
     line-height: 1.5;
   }

   .checkout-payment-block {
     margin-top: 8px;
     padding-top: 20px;
     border-top: 1px solid var(--border);
   }

   .checkout-payment-block h3 {
     font-size: 1rem;
     color: var(--plum);
     margin-bottom: 14px;
   }

   .payment-options {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 12px;
   }

   .payment-option { cursor: pointer; }

   .payment-option input { position: absolute; opacity: 0; pointer-events: none; }

   .payment-option-box {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     padding: 18px 12px;
     border: 2px solid var(--border);
     border-radius: var(--radius-md);
     background: var(--ivory);
     text-align: center;
     font-size: .88rem;
     font-weight: 600;
     color: var(--charcoal);
     transition: var(--transition);
   }

   .payment-option-box i {
     font-size: 1.3rem;
     color: var(--plum);
   }

   .payment-option input:checked + .payment-option-box {
     border-color: var(--plum);
     background: rgba(70, 127, 141, 0.08);
     box-shadow: 0 0 0 3px rgba(70, 127, 141, 0.12);
   }

   .checkout-place-btn {
     width: 100%;
     justify-content: center;
     margin-top: 24px;
   }

   .checkout-summary { position: sticky; top: 100px; }

   .checkout-item-row {
     display: grid;
     grid-template-columns: 48px 1fr auto;
     gap: 10px;
     align-items: center;
     padding: 10px 0;
     border-bottom: 1px solid var(--border);
   }

   .checkout-item-row:last-child { border-bottom: none; margin-bottom: 12px; }

   .checkout-item-thumb {
     width: 48px;
     height: 48px;
     border-radius: var(--radius-sm);
     object-fit: cover;
     border: 1px solid var(--border);
   }

   .checkout-item-thumb--empty {
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--ivory);
     color: var(--text-muted);
   }

   .checkout-item-info strong {
     display: block;
     font-size: .85rem;
     color: var(--plum);
     margin-bottom: 2px;
   }

   .checkout-item-info span {
     font-size: .78rem;
     color: var(--text-muted);
   }

   .checkout-item-total {
     font-size: .85rem;
     font-weight: 600;
     color: var(--charcoal);
   }

   .order-shipping-info {
     display: flex;
     align-items: flex-start;
     gap: 8px;
     padding: 12px 20px;
     font-size: .85rem;
     color: var(--text-muted);
     border-bottom: 1px solid var(--border);
   }

   .order-shipping-info i { color: var(--plum); margin-top: 2px; }

   .order-payment-tag {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     margin: 10px 20px 0;
     padding: 6px 12px;
     background: var(--ivory);
     border-radius: 100px;
     font-size: .78rem;
     font-weight: 600;
     color: var(--plum);
   }

   .cart-qty { display: flex; align-items: center; gap: 0; }
   .cart-qty button {
     width: 32px; height: 32px;
     background: var(--ivory-dark);
     border-radius: 6px;
     color: var(--plum);
     font-size: 1rem;
     transition: var(--transition);
   }
   .cart-qty button:hover { background: var(--plum); color: #fff; }
   .cart-qty input {
     width: 44px; height: 32px;
     border: 1px solid var(--border);
     text-align: center;
     font-weight: 600;
     outline: none;
     color: var(--plum);
   }
   .remove-btn { color: var(--text-muted); transition: var(--transition); padding: 4px; border-radius: 6px; }
   .remove-btn:hover { color: #e53e3e; background: #fff5f5; }
   
   .cart-summary {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius-md);
     padding: 28px;
     position: sticky;
     top: calc(var(--header-h) + 24px);
   }
   .cart-summary h3 { font-family: var(--ff-display); color: var(--plum); margin-bottom: 24px; font-size: 1.3rem; }
   .summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: .95rem; }
   .summary-row.total {
     border-top: 2px solid var(--border);
     padding-top: 16px;
     margin-top: 8px;
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--plum);
   }
   .coupon-input { display: flex; gap: 8px; margin: 20px 0 8px; }
   .coupon-input input {
     flex: 1;
     padding: 10px 14px;
     border: 1px solid var(--border);
     border-radius: var(--radius-sm);
     outline: none;
   }
   .coupon-input input:focus { border-color: var(--rose); }
   .coupon-status {
     font-size: .82rem;
     color: var(--plum);
     font-weight: 600;
     min-height: 1.2em;
     margin: 0 0 8px;
   }
   .coupon-remove-btn {
     background: none;
     border: none;
     color: #c53030;
     font-size: .8rem;
     cursor: pointer;
     padding: 0;
     margin-bottom: 12px;
     text-decoration: underline;
   }
   .checkout-btn { width: 100%; margin-top: 16px; justify-content: center; }
   
   .empty-cart { text-align: center; padding: 80px 0; }
   .empty-cart > i { font-size: 4rem; color: var(--border); margin-bottom: 20px; display: block; }
   .empty-cart h3 { font-family: var(--ff-display); color: var(--plum); margin-bottom: 12px; }
   .empty-cart p { color: var(--text-muted); margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; }
   .empty-cart-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 14px 28px;
     border-radius: var(--radius-md);
     text-decoration: none;
     color: #fff !important;
   }
   .empty-cart-btn i {
     font-size: .9rem;
     color: #fff !important;
     margin: 0;
     display: inline-block;
   }
   
   /* ── ABOUT PAGE ── */
   .about-hero {
     background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
     color: #fff;
     padding: 100px 0;
     text-align: center;
     position: relative;
     overflow: hidden;
   }
   .about-hero::before {
     content: '';
     position: absolute;
     width: 600px; height: 600px;
     border-radius: 50%;
     background: rgba(var(--primary-rgb),.1);
     top: -200px; right: -100px;
   }
   .about-hero .section-heading { color: #fff; }
   .about-hero p,
   .about-hero-sub { color: rgba(255,255,255,.85); max-width: 680px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; }
   
   .stats-bar {
     background: #fff;
     padding: 40px 0;
     border-bottom: 1px solid var(--border);
   }
   .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
   .stat-item { text-align: center; }
   .stat-num { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; color: var(--plum); line-height: 1; }
   .stat-label { font-size: .85rem; color: var(--text-muted); margin-top: 6px; }
   
   .about-story { }
   .story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
   .story-img {
     border-radius: var(--radius-lg);
     aspect-ratio: 4/5;
     background: linear-gradient(135deg, var(--ivory-dark), var(--rose) 70%, var(--plum));
     display: flex; align-items: center; justify-content: center;
     font-size: 8rem; color: rgba(255,255,255,.3);
   }

   .founder-section { background: var(--warm-white); }
   .founder-inner {
     display: grid;
     grid-template-columns: 1fr 1.1fr;
     gap: 72px;
     align-items: center;
   }
   .founder-image-wrap {
     border-radius: var(--radius-lg);
     overflow: hidden;
     aspect-ratio: 4/5;
     max-width: 420px;
     margin: 0 auto;
     box-shadow: var(--shadow-lg);
     border: 4px solid var(--border);
   }
   .founder-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center top;
     display: block;
   }
   .founder-role {
     font-size: .95rem;
     font-weight: 600;
     color: var(--plum);
     margin-bottom: 24px;
     letter-spacing: .04em;
   }
   .founder-quote {
     margin: 0 0 20px;
     padding: 0;
     border: none;
   }
   .founder-quote p {
     color: var(--text-muted);
     font-size: 1.05rem;
     line-height: 1.85;
     margin-bottom: 16px;
     font-style: italic;
   }
   .founder-quote p:last-child { margin-bottom: 0; }
   .founder-sign {
     font-family: var(--ff-display);
     font-size: 1rem;
     color: var(--plum);
     font-weight: 600;
     margin-bottom: 20px;
   }
   .founder-quote--featured {
     padding: 20px 24px;
     background: var(--ivory);
     border-left: 4px solid var(--plum);
     border-radius: var(--radius-md);
     margin-bottom: 16px;
   }
   .founder-quote--featured p {
     font-size: 1.05rem;
     color: var(--charcoal);
     font-style: italic;
     line-height: 1.7;
   }
   .story-text {
     color: var(--text-muted);
     line-height: 1.8;
     font-size: 1rem;
   }

   .about-profile { background: #fff; }
   .about-profile-block {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 56px;
     align-items: center;
     margin-bottom: 72px;
   }
   .about-profile-block:last-of-type { margin-bottom: 56px; }
   .about-profile-block--reverse .about-profile-text { order: 2; }
   .about-profile-block--reverse .about-profile-media { order: 1; }
   .about-profile-media {
     border-radius: var(--radius-lg);
     overflow: hidden;
     box-shadow: var(--shadow-md);
     border: 1px solid var(--border);
     background: var(--ivory);
   }
   .about-profile-media img {
     width: 100%;
     height: 100%;
     min-height: 280px;
     max-height: 420px;
     /*object-fit: cover;*/
     display: block;
   }
   .about-profile-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
   }
   .about-profile-card {
     padding: 28px 24px;
     background: var(--warm-white);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     height: 100%;
   }
   .about-profile-card-icon {
     width: 48px;
     height: 48px;
     border-radius: 50%;
     background: rgba(var(--primary-rgb), .12);
     color: var(--plum);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     margin-bottom: 16px;
   }
   .about-profile-card h3 {
     font-family: var(--ff-display);
     color: var(--plum);
     font-size: 1.15rem;
     margin-bottom: 10px;
   }
   .about-profile-card p {
     color: var(--text-muted);
     line-height: 1.7;
     font-size: .95rem;
   }

   .about-mission { background: var(--ivory); }
   .about-mission-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
   }
   .about-mission-card {
     padding: 32px 28px;
     background: #fff;
     border-radius: var(--radius-lg);
     border: 1px solid var(--border);
     box-shadow: var(--shadow-sm);
   }
   .about-mission-card h3 {
     font-family: var(--ff-display);
     color: var(--plum);
     font-size: 1.2rem;
     margin: 8px 0 12px;
   }
   .about-mission-card p {
     color: var(--text-muted);
     line-height: 1.75;
     font-size: .95rem;
   }

   .about-awards { background: var(--warm-white); }
   .about-awards .section-sub {
     max-width: 640px;
     margin: 0 auto 48px;
   }
   .about-awards-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
   }
   .about-award-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     overflow: hidden;
     box-shadow: var(--shadow-md);
     display: flex;
     flex-direction: column;
     height: 100%;
     transition: box-shadow .25s ease, transform .25s ease;
   }
   .about-award-card:hover {
     box-shadow: var(--shadow-lg);
     transform: translateY(-4px);
   }
   .about-award-img {
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 260px;
     max-height: 360px;
     padding: 12px;
     overflow: hidden;
     background: linear-gradient(180deg, var(--ivory) 0%, #fff 100%);
     border-bottom: 1px solid var(--border);
   }
   .about-award-img img {
     width: 100%;
     height: auto;
     max-height: 340px;
     object-fit: contain;
     object-position: center;
     display: block;
     border-radius: var(--radius-sm);
   }
   .about-award-body {
     padding: 24px 22px 28px;
     flex: 1;
     display: flex;
     flex-direction: column;
   }
   .about-award-body h3 {
     font-family: var(--ff-display);
     color: var(--plum);
     font-size: 1.15rem;
     margin-bottom: 12px;
     line-height: 1.35;
   }
   .about-award-body p {
     color: var(--text-muted);
     line-height: 1.75;
     font-size: .92rem;
     margin: 0;
   }

  /* ── PHOTO GALLERY ── */

.photo-gallery-section{
  background: var(--warm-white);
}

.photo-gallery-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

/* Equal size for all gallery items */
.photo-gallery-item{
  position: relative;
  display: block;
  grid-column: span 2;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: var(--transition);
  background: #fff;
}

.photo-gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.photo-gallery-item:hover{
  border-color: var(--plum);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.photo-gallery-item:hover img{
  transform: scale(1.08);
}

.photo-gallery-zoom{
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-rgb), .45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: var(--transition);
}

.photo-gallery-item:hover .photo-gallery-zoom{
  opacity: 1;
}

/* ── LIGHTBOX ── */

.gallery-lightbox{
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.gallery-lightbox.open{
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(42,54,57,.9);
  backdrop-filter: blur(6px);
}

.gallery-lightbox-img{
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(.94);
  transition: transform .35s ease;
}

.gallery-lightbox.open .gallery-lightbox-img{
  transform: scale(1);
}

.gallery-lightbox-close{
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-lightbox-close:hover{
  background: var(--plum);
}

.gallery-lightbox-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-lightbox-nav:hover{
  background: var(--plum);
}

.gallery-lightbox-prev{
  left: 20px;
}

.gallery-lightbox-next{
  right: 20px;
}

/* ── RESPONSIVE ── */

@media (max-width: 992px){

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

  .photo-gallery-item{
    grid-column: span 1;
    height: 260px;
  }

}

@media (max-width: 576px){

  .photo-gallery-grid{
    grid-template-columns: 1fr;
  }

  .photo-gallery-item{
    height: 240px;
  }

}

/* ── VALUES SECTION ── */

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

.value-card{
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover{
  box-shadow: var(--shadow-md);
  border-color: var(--rose);
  background: #fff;
}

.value-icon{
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--plum);
}

.value-icon i {
  font-size: 1.6rem;
}

.value-card h3{
  font-family: var(--ff-display);
  color: var(--plum);
  margin-bottom: 10px;
}

.value-card p{
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.6;
}

@media (max-width: 992px){

  .values-grid{
    grid-template-columns: 1fr;
  }

}
   /* ── CONTACT PAGE ── */
   .contact-hero { background: var(--ivory); padding: 64px 0; text-align: center; }
   
   .contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
   
   .contact-info-card {
     background: var(--plum);
     color: #fff;
     border-radius: var(--radius-md);
     padding: 40px 36px;
     position: sticky;
     top: calc(var(--header-h) + 24px);
   }
   .contact-info-card h3 { font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: 28px; }
   .contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
   .cd-icon {
     width: 44px; height: 44px; flex-shrink: 0;
     border-radius: 10px;
     background: rgba(255,255,255,.12);
     display: flex; align-items: center; justify-content: center;
     color: var(--rose);
   }
   .cd-label { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; }
   .cd-value { font-weight: 500; margin-top: 2px; }
   .cd-value a { color: #fff; }
   
   .contact-social { display: flex; gap: 10px; margin-top: 32px; }
   .contact-social a {
     width: 40px; height: 40px;
     border-radius: 8px;
     background: rgba(255,255,255,.12);
     display: flex; align-items: center; justify-content: center;
     color: #fff;
     transition: var(--transition);
   }
   .contact-social a:hover { background: var(--rose-dark); }

   .contact-map-section { background: var(--ivory); }

   .contact-details-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
     margin-bottom: 32px;
   }

   .contact-detail-card {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: var(--radius-md);
     padding: 28px 24px;
     text-align: center;
     transition: var(--transition);
   }

   .contact-detail-card:hover {
     border-color: var(--plum);
     box-shadow: var(--shadow-md);
     transform: translateY(-3px);
   }

   .cdc-icon {
     width: 52px; height: 52px;
     margin: 0 auto 16px;
     border-radius: 14px;
     background: linear-gradient(135deg, var(--ivory-dark), var(--border));
     display: flex; align-items: center; justify-content: center;
     color: var(--plum);
     font-size: 1.2rem;
   }

   .contact-detail-card h4 {
     font-family: var(--ff-display);
     color: var(--plum);
     margin-bottom: 10px;
     font-size: 1.05rem;
   }

   .contact-detail-card p {
     color: var(--text-muted);
     font-size: .92rem;
     line-height: 1.65;
     margin-bottom: 10px;
   }

   .contact-detail-card a { color: var(--plum); font-weight: 600; }
   .contact-detail-card a:hover { color: var(--plum-light); }

   .cdc-pincode {
     display: inline-block;
     background: var(--ivory);
     border: 1px solid var(--border);
     border-radius: 100px;
     padding: 4px 14px;
     font-size: .8rem;
     font-weight: 700;
     color: var(--plum);
     margin-bottom: 12px;
   }

   .cdc-note {
     display: block;
     font-size: .78rem;
     color: var(--text-muted);
   }

   .cdc-link {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: .85rem;
     font-weight: 600;
     color: var(--plum) !important;
     margin-top: 4px;
   }

   .cdc-link i { font-size: .7rem; }

   .contact-map-wrap {
     border-radius: var(--radius-lg);
     overflow: hidden;
     border: 3px solid var(--border);
     box-shadow: var(--shadow-lg);
     background: var(--ivory-dark);
   }

   .contact-map-iframe {
     display: block;
     width: 100%;
     height: 420px;
     border: none;
   }

   .contact-faq-section { background: var(--warm-white); }
   
   .contact-form-wrap { }
   .contact-form { display: flex; flex-direction: column; gap: 20px; }
   .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
   .form-group { display: flex; flex-direction: column; gap: 6px; }
   .form-group label { font-size: .85rem; font-weight: 600; color: var(--charcoal); }
   .form-group input,
   .form-group select,
   .form-group textarea {
     padding: 13px 16px;
     border: 1.5px solid var(--border);
     border-radius: var(--radius-sm);
     background: #fff;
     outline: none;
     font-size: .95rem;
     color: var(--charcoal);
     transition: var(--transition);
   }
   .form-group input:focus,
   .form-group select:focus,
   .form-group textarea:focus {
     border-color: var(--plum);
     box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.08);
   }
   .form-group textarea { resize: vertical; min-height: 140px; }
   .form-error { font-size: .78rem; color: #e53e3e; display: none; }
   .form-group.error .form-error { display: block; }
   .form-group.error input,
   .form-group.error textarea { border-color: #e53e3e; }
   
   /* ── FAQ PAGE ── */
   .faq-hero { background: var(--ivory); padding: 64px 0; text-align: center; }
   .faq-wrap { max-width: 800px; margin: 0 auto; }
   .faq-item {
     border: 1px solid var(--border);
     border-radius: var(--radius-sm);
     margin-bottom: 12px;
     overflow: hidden;
     transition: var(--transition);
   }
   .faq-item.open { border-color: var(--rose); box-shadow: var(--shadow-sm); }
   .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 24px;
     cursor: pointer;
     background: #fff;
     font-weight: 600;
     color: var(--plum);
     gap: 16px;
   }
   .faq-question i { font-size: .9rem; transition: transform var(--transition); flex-shrink: 0; color: var(--text-muted); }
   .faq-item.open .faq-question i { transform: rotate(180deg); color: var(--rose-dark); }
   .faq-answer {
     background: var(--ivory);
     padding: 0 24px;
     max-height: 0;
     overflow: hidden;
     transition: max-height .4s ease, padding .3s ease;
     color: var(--text-muted);
     line-height: 1.8;
   }
   .faq-item.open .faq-answer { max-height: 400px; padding: 20px 24px; }
   
   /* ── POLICY PAGES ── */
   .policy-hero { background: var(--plum); color: #fff; padding: 72px 0; text-align: center; }
   .policy-hero .section-heading { color: #fff; }
   .policy-hero p { color: rgba(255,255,255,.7); }
   
   .policy-body { max-width: 820px; margin: 0 auto; }
   .policy-body h2 { font-family: var(--ff-display); color: var(--plum); margin: 40px 0 16px; font-size: 1.4rem; }
   .policy-body h3 { color: var(--plum-light); margin: 28px 0 12px; font-size: 1.1rem; }
   .policy-body p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
   .policy-body ul { padding-left: 24px; margin-bottom: 16px; }
   .policy-body li { color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }
   .policy-body li::marker { color: var(--rose-dark); }
   .policy-last-updated {
     display: inline-block;
     background: var(--ivory);
     border: 1px solid var(--border);
     border-radius: var(--radius-sm);
     padding: 8px 16px;
     font-size: .85rem;
     color: var(--text-muted);
     margin-bottom: 40px;
   }
   
   /* ── FOOTER ── */
   .site-footer {
     background: linear-gradient(180deg, #fafdfe 0%, #eef6f8 55%, #e6f0f3 100%);
     color: var(--text-muted);
     position: relative;
     overflow: hidden;
     border-top: 1px solid rgba(var(--primary-rgb), .12);
   }

   .site-footer::before {
     content: '';
     position: absolute;
     width: 420px; height: 420px;
     border-radius: 50%;
     background: rgba(var(--primary-rgb), .06);
     top: -180px; right: -100px;
     pointer-events: none;
   }

   .site-footer::after {
     content: '';
     position: absolute;
     width: 280px; height: 280px;
     border-radius: 50%;
     background: rgba(126,184,196,.1);
     bottom: -100px; left: -60px;
     pointer-events: none;
   }

   .site-footer .container { position: relative; z-index: 1; }
   
   .footer-top { padding: 72px 0 48px; }
   .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; }
   
   .footer-brand { }
   .footer-logo { margin-bottom: 16px; }
   .footer-logo .logo-name { color: var(--plum); }
   .footer-logo .logo-tag  { color: var(--plum-light); }
   .footer-desc { font-size: .9rem; line-height: 1.7; margin-bottom: 24px; color: var(--text-muted); }
   .footer-social { display: flex; gap: 10px; }
   .footer-social a {
     width: 38px; height: 38px;
     border-radius: 8px;
     background: rgba(255,255,255,.85);
     border: 1px solid rgba(var(--primary-rgb), .14);
     display: flex; align-items: center; justify-content: center;
     color: var(--plum);
     transition: var(--transition);
   }
   .footer-social a:hover { background: var(--plum); color: #fff; border-color: var(--plum); transform: translateY(-2px); }
   
   .footer-col h4 { color: var(--plum); font-weight: 600; margin-bottom: 20px; font-size: .95rem; letter-spacing: .04em; }
   .footer-links { display: flex; flex-direction: column; gap: 10px; }
   .footer-links a { font-size: .9rem; transition: var(--transition); color: var(--text-muted); }
   .footer-links a:hover { color: var(--plum); padding-left: 6px; }
   
   .footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
   .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--text-muted); }
   .footer-contact-item i { color: var(--plum); margin-top: 3px; flex-shrink: 0; }
   .footer-contact-item a { color: var(--text-muted); }
   .footer-contact-item a:hover { color: var(--plum); }
   
   .footer-newsletter-form { display: flex; gap: 8px; margin-top: 4px; }
   .footer-newsletter-form input {
     flex: 1;
     padding: 11px 14px;
     border-radius: var(--radius-sm);
     border: 1px solid rgba(var(--primary-rgb), .18);
     background: rgba(255,255,255,.9);
     color: var(--charcoal);
     font-size: .9rem;
     outline: none;
   }
   .footer-newsletter-form input::placeholder { color: var(--text-muted); }
   .footer-newsletter-form input:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1); }
   .footer-newsletter-form button {
     padding: 11px 18px;
     background: var(--plum);
     color: #fff;
     border-radius: var(--radius-sm);
     font-weight: 600;
     font-size: .85rem;
     transition: var(--transition);
     border: 1px solid var(--plum);
   }
   .footer-newsletter-form button:hover { background: var(--plum-light); border-color: var(--plum-light); }
   
   .footer-bottom {
     border-top: 1px solid rgba(var(--primary-rgb), .12);
     padding: 24px 0;
     background: rgba(var(--primary-rgb), .05);
   }
   .footer-bottom-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     flex-wrap: wrap;
   }
   .copyright { font-size: .85rem; color: var(--text-muted); }
   .copyright a { color: var(--plum); font-weight: 600; }
   .copyright a:hover { color: var(--plum-light); }
   
   .payment-icons { display: flex; align-items: center; gap: 8px; }
   .pay-icon {
     background: rgba(255,255,255,.12);
     border-radius: 4px;
     padding: 4px 10px;
     font-size: .7rem;
     font-weight: 700;
     color: #fff;
     letter-spacing: .04em;
   }
   .pay-visa     { background: #1A1F71; }
   .pay-mc       { background: #EB001B; }
   .pay-rupay    { background: #097939; }
   .pay-upi      { background: #5c4db1; }
   
   /* ── RELATED PRODUCTS ── */
   .related-section { background: var(--ivory); }
   .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
   
   /* ── BREADCRUMB ── */
   .breadcrumb {
     padding: 16px 0;
     font-size: .85rem;
     color: var(--text-muted);
     display: flex;
     gap: 8px;
     align-items: center;
   }
   .breadcrumb a { color: var(--text-muted); transition: var(--transition); }
   .breadcrumb a:hover { color: var(--plum); }
   .breadcrumb i { font-size: .65rem; }
   
   /* ── PAGE HERO (Generic) ── */
   .page-hero {
     background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 100%);
     padding: 72px 0 56px;
     text-align: center;
     border-bottom: 1px solid var(--border);
   }

   .page-hero .section-sub { margin: 0 auto; }
   .page-hero .breadcrumb { justify-content: flex-start; text-align: left; }
   
   /* ── TOAST ── */
   .toast-container {
     position: fixed;
     bottom: calc(24px + 62px + 14px);
     right: 24px;
     z-index: 10001;
     display: flex;
     flex-direction: column;
     gap: 10px;
     pointer-events: none;
   }
   .toast {
     background: var(--plum);
     color: #fff;
     padding: 14px 20px;
     border-radius: var(--radius-sm);
     box-shadow: var(--shadow-lg);
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: .9rem;
     animation: slideToast .3s ease;
     max-width: 320px;
     pointer-events: auto;
   }
   .toast.success { background: var(--sage); }
   .toast.error   { background: #e53e3e; }
   .toast.info    { background: var(--plum); }
   .toast i { font-size: 1rem; }
   @keyframes slideToast {
     from { transform: translateX(100%); opacity: 0; }
     to   { transform: translateX(0);    opacity: 1; }
   }
   
   /* ── SCROLL TO TOP ── */
   .scroll-top {
     position: fixed;
     bottom: 28px; left: 28px;
     width: 44px; height: 44px;
     border-radius: 12px;
     background: var(--plum);
     color: #fff;
     display: flex; align-items: center; justify-content: center;
     box-shadow: var(--shadow-md);
     cursor: pointer;
     transition: var(--transition);
     opacity: 0;
     pointer-events: none;
     z-index: 998;
   }
   .scroll-top.visible { opacity: 1; pointer-events: all; }
   .scroll-top:hover { background: var(--plum-light); transform: translateY(-3px); }
   
   /* ── AOS Overrides ── */
   [data-aos] { will-change: transform, opacity; }
   
   /* ── MISC UTILITIES ── */
   .text-center { text-align: center; }
   .text-plum { color: var(--plum); }
   .text-rose { color: var(--rose-dark); }
   .mt-4  { margin-top: 16px; }
   .mt-8  { margin-top: 32px; }
   .mt-12 { margin-top: 48px; }
   .mb-4  { margin-bottom: 16px; }
   .mb-8  { margin-bottom: 32px; }
   .flex-center { display: flex; align-items: center; justify-content: center; }
   .divider { height: 1px; background: var(--border); margin: 40px 0; }
   
   /* ── SEARCH OVERLAY ── */
   .search-overlay {
     position: fixed;
     inset: 0;
     background: rgba(var(--primary-rgb),.65);
     backdrop-filter: blur(8px);
     z-index: 2000;
     display: flex;
     align-items: flex-start;
     justify-content: center;
     padding-top: 100px;
     opacity: 0;
     pointer-events: none;
     transition: var(--transition);
   }
   .search-overlay.open { opacity: 1; pointer-events: all; }
   .search-box {
     background: #fff;
     border-radius: var(--radius-md);
     padding: 8px;
     display: flex;
     align-items: center;
     gap: 8px;
     width: 100%;
     max-width: 600px;
     margin: 0 24px;
     box-shadow: var(--shadow-lg);
   }
   .search-box input {
     flex: 1;
     padding: 12px 16px;
     border: none;
     outline: none;
     font-size: 1.1rem;
     color: var(--charcoal);
   }
   .search-box button {
     padding: 12px 20px;
     background: var(--plum);
     color: #fff;
     border-radius: var(--radius-sm);
     font-weight: 600;
   }
   .search-close {
     position: absolute;
     top: 24px; right: 24px;
     width: 44px; height: 44px;
     border-radius: 50%;
     background: rgba(255,255,255,.15);
     color: #fff;
     display: flex; align-items: center; justify-content: center;
     font-size: 1.2rem;
     cursor: pointer;
     transition: var(--transition);
   }
   .search-close:hover { background: rgba(255,255,255,.3); }
   
   /* ── PAGE LOADER ── */
   .page-loader {
     position: fixed;
     inset: 0;
     background: var(--warm-white);
     z-index: 9999;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: opacity .5s ease;
   }
   .page-loader.hidden { opacity: 0; pointer-events: none; }
   .loader-content { text-align: center; padding: 0 24px; }
   .loader-logo {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 6px;
     margin-bottom: 28px;
     animation: loaderFadeIn 0.7s ease both;
   }
   .loader-welcome {
     font-family: var(--ff-body);
     font-size: clamp(0.85rem, 2.5vw, 1rem);
     font-weight: 500;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--rose-dark);
   }
   .loader-brand {
     font-family: var(--ff-display);
     font-size: clamp(1.75rem, 5vw, 2.35rem);
     color: var(--plum);
     font-weight: 700;
     line-height: 1.15;
   }
   .loader-bar {
     width: 200px; height: 3px;
     background: var(--border);
     border-radius: 2px;
     overflow: hidden;
     margin: 0 auto;
   }
   .loader-bar-fill {
     height: 100%;
     background: linear-gradient(90deg, var(--rose), var(--plum));
     border-radius: 2px;
     animation: loaderAnim 1.2s ease forwards;
   }
   @keyframes loaderAnim {
     from { width: 0; }
     to   { width: 100%; }
   }
   @keyframes loaderFadeIn {
     from { opacity: 0; transform: translateY(10px); }
     to   { opacity: 1; transform: translateY(0); }
   }



   /* ===============================
   WhatsApp Floating Button
   Add in style.css
================================ */

.whatsapp-float{
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  z-index: 9999;
  transition: all .3s ease;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
  transform: translateY(-5px) scale(1.08);
  background: #1ebe5d;
}

@keyframes whatsappPulse{

  0%{
    box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  }

  70%{
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }

  100%{
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }

}

@media(max-width:576px){

  .whatsapp-float{
    width: 56px;
    height: 56px;
    right: 18px;
    bottom: 18px;
    font-size: 1.8rem;
  }

  .toast-container {
    bottom: calc(18px + 56px + 12px);
    right: 18px;
    left: 18px;
  }

}

/* ── AUTH (LOGIN / REGISTER) ── */
.auth-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--warm-white);
}

.auth-header .header-inner { height: 72px; }
.auth-header-btn {
  padding: 10px 22px;
  font-size: .88rem;
}

.auth-page {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: calc(100vh - 72px - 56px);
}

.auth-brand {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 64px 56px;
  background: linear-gradient(145deg, var(--plum-dark) 0%, var(--plum) 45%, var(--plum-light) 100%);
  color: #fff;
}

.auth-brand-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
  pointer-events: none;
}
.auth-brand-shape.s1 {
  width: 420px;
  height: 420px;
  background: var(--rose);
  top: -120px;
  right: -100px;
}
.auth-brand-shape.s2 {
  width: 260px;
  height: 260px;
  background: var(--sage);
  bottom: -80px;
  left: -60px;
}

.auth-brand-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.auth-eyebrow { color: rgba(255,255,255,.75); }
.auth-brand-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
}
.auth-brand-title em {
  font-style: italic;
  color: var(--rose);
}

.auth-brand-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
}

.auth-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.9);
}
.auth-perks i { color: var(--rose); font-size: 1rem; }

.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  background: var(--ivory);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.auth-page-register .auth-card { max-width: 480px; }

.auth-card-head { margin-bottom: 28px; }
.auth-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 8px;
}
.auth-sub {
  font-size: .95rem;
  color: var(--text-muted);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon-wrap > i:first-child {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: .88rem;
  pointer-events: none;
  z-index: 1;
}
.input-icon-wrap input {
  width: 100%;
  padding: 13px 44px 13px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  outline: none;
  font-size: .95rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.input-icon-wrap input:focus {
  border-color: var(--plum);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.08);
}

.password-toggle {
  position: absolute;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}
.password-toggle:hover { color: var(--plum); background: var(--ivory); }

.auth-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: -4px;
}

.auth-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.auth-checkbox-block { margin-top: 4px; }
.auth-checkbox input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--plum);
  flex-shrink: 0;
  cursor: pointer;
}

.auth-link {
  font-size: .88rem;
  color: var(--plum);
  font-weight: 500;
  transition: var(--transition);
}
.auth-link:hover { color: var(--plum-light); }
.auth-link-strong { font-weight: 600; }

.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 15px 32px;
}

.auth-switch {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text-muted);
}

.auth-footer {
  padding: 18px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  text-align: center;
}
.auth-footer .copyright { margin: 0; }

.auth-form .form-group.error .input-icon-wrap input { border-color: #e53e3e; }
.auth-checkbox.error { color: #e53e3e; }
.auth-checkbox.error .auth-link { color: #c53030; }

/* ── PROFILE PAGE ── */
.profile-section { background: var(--warm-white); }

.profile-hero-logout {
  margin-top: 20px;
  color: #c53030;
  border-color: #f5c6c6;
}
.profile-hero-logout:hover {
  background: #fff5f5;
  color: #c53030;
  border-color: #e53e3e;
}

.page-hero .profile-hero-logout {
  display: inline-flex;
}

.profile-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

.profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.profile-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--rose));
  box-shadow: 0 8px 24px rgba(var(--primary-rgb),.25);
}

.profile-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 4px;
}

.profile-role {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.profile-details {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.profile-details li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.profile-details i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
}

.profile-details span {
  display: block;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.profile-details strong {
  font-size: .92rem;
  color: var(--charcoal);
  word-break: break-word;
}

.profile-edit-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

.profile-edit-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.profile-edit-form .form-group input {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  outline: none;
  font-size: .92rem;
  width: 100%;
  transition: var(--transition);
}

.profile-edit-form .form-group input:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.08);
}

.profile-edit-form .form-group input:disabled {
  background: var(--ivory);
  color: var(--text-muted);
  cursor: not-allowed;
}

.profile-field-note {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.profile-edit-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-edit-actions .btn { justify-content: center; width: 100%; }

.profile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.profile-actions .btn { justify-content: center; width: 100%; }

.profile-logout-wrap {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.profile-logout-wrap .btn,
.profile-logout-btn {
  justify-content: center;
  width: 100%;
  display: inline-flex;
  min-height: 48px;
  font-size: .95rem;
}

.profile-logout-btn {
  color: #c53030 !important;
  border: 2px solid #f5c6c6 !important;
  background: #fff;
}
.profile-logout-btn:hover {
  background: #fff5f5 !important;
  color: #c53030 !important;
  border-color: #e53e3e !important;
}

.profile-orders {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.profile-orders-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.profile-orders-head h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 6px;
}

.profile-orders-head p {
  font-size: .92rem;
  color: var(--text-muted);
}

.orders-loading,
.orders-empty {
  text-align: center;
  padding: 56px 24px;
  color: var(--text-muted);
}

.orders-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.orders-loading i {
  font-size: 1.6rem;
  color: var(--plum);
}

.orders-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orders-empty-icon i {
  font-size: 1.8rem;
  color: var(--plum);
}

.orders-empty h3 {
  font-family: var(--ff-display);
  color: var(--plum);
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.orders-empty p {
  max-width: 360px;
  margin: 0 auto 24px;
  line-height: 1.65;
  font-size: .92rem;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.order-card:hover { box-shadow: var(--shadow-sm); }

.order-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--ivory);
  flex-wrap: wrap;
}

.order-card-head strong {
  display: block;
  color: var(--plum);
  font-size: .95rem;
}

.order-card-head span {
  font-size: .82rem;
  color: var(--text-muted);
}

.order-status {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(var(--primary-rgb),.12);
  color: var(--plum);
}

.order-status-delivered,
.order-status-completed { background: rgba(143,188,176,.2); color: #3d7a66; }
.order-status-in_transit,
.order-status-out_for_delivery,
.order-status-shipped { background: rgba(126,184,196,.2); color: var(--plum-dark); }
.order-status-cancelled { background: rgba(229,62,62,.12); color: #c53030; }
.order-status-order_placed,
.order-status-confirmed,
.order-status-processing { background: rgba(var(--primary-rgb),.12); color: var(--plum); }

.order-track {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  padding: 14px 16px;
  margin-top: 12px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.order-track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 72px;
  flex: 1;
  text-align: center;
}

.order-track-step span {
  font-size: .68rem;
  line-height: 1.3;
  color: var(--text-muted);
}

.order-track-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
}

.order-track-step.done .order-track-dot {
  background: var(--plum);
  box-shadow: 0 0 0 1px var(--plum);
}

.order-track-step.done span { color: var(--plum); font-weight: 600; }

.order-track-step.current .order-track-dot {
  background: #fff;
  box-shadow: 0 0 0 2px var(--plum);
  transform: scale(1.15);
}

.order-track-step.current span {
  color: var(--plum);
  font-weight: 700;
}

.order-track--cancelled { padding: 10px 0; }

.order-track-badge.cancelled {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(229,62,62,.12);
  color: #c53030;
  font-size: .8rem;
  font-weight: 600;
}

.order-details-block {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-detail-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .88rem;
}

.order-detail-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--plum);
  font-weight: 600;
  font-size: .82rem;
}

.order-detail-label i {
  width: 14px;
  text-align: center;
}

.order-detail-value {
  color: var(--text-muted);
  line-height: 1.5;
}

.order-detail-value strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.order-detail-value span {
  display: block;
}

.order-totals {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .82rem;
  color: var(--text-muted);
}

.order-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 20px;
  background: var(--warm-white);
  font-size: .88rem;
  color: var(--text-muted);
}

.order-item-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.order-item-row:last-child { border-bottom: none; }

.order-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.order-item-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--ivory);
}

.order-item-info strong {
  display: block;
  font-size: .92rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.order-item-info span {
  font-size: .82rem;
  color: var(--text-muted);
}

.order-item-total {
  font-weight: 600;
  color: var(--plum);
  font-size: .92rem;
}

.order-items { padding: 8px 20px; }

.order-card-foot strong {
  font-size: 1rem;
  color: var(--plum);
}

/* ── ADMIN PRODUCT PANEL ── */
.admin-section { background: var(--warm-white); }

.admin-delivery-block {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.admin-delivery-block .admin-toolbar { margin-bottom: 12px; }

.admin-delivery-block .admin-field-hint {
  margin-bottom: 16px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.admin-save-delivery-btn {
  margin-top: 8px;
}

.admin-delivery-form {
  max-width: 560px;
}

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

@media (max-width: 600px) {
  .admin-delivery-form .form-row { grid-template-columns: 1fr; }
}

.admin-delivery-form .form-group {
  margin-bottom: 16px;
}

.admin-delivery-form label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 6px;
}

.admin-delivery-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .92rem;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.admin-toolbar h2 {
  font-family: var(--ff-display);
  color: var(--plum);
  font-size: 1.5rem;
}

.admin-loading,
.shop-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px;
  color: var(--text-muted);
}

.admin-empty,
.shop-empty {
  text-align: center;
  padding: 56px 24px;
  color: var(--text-muted);
}

.admin-empty i,
.shop-empty i {
  font-size: 2.2rem;
  color: var(--plum);
  margin-bottom: 16px;
  display: block;
}

.admin-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table th {
  background: var(--ivory);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--plum);
}

.admin-table tr:last-child td { border-bottom: none; }

.admin-product-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-product-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.admin-thumb {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 6px;
  display: block;
}

.admin-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(var(--primary-rgb),.12);
  color: var(--plum);
  font-size: .75rem;
  font-weight: 600;
}

.admin-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}

.admin-status.active { background: rgba(143,188,176,.2); color: #3d7a66; }
.admin-status.inactive { background: rgba(229,62,62,.12); color: #c53030; }

.admin-actions {
  display: flex;
  gap: 8px;
}

.admin-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--plum);
  transition: var(--transition);
}

.admin-action-btn.edit:hover { background: var(--ivory); border-color: var(--plum); }
.admin-action-btn.delete { color: #c53030; border-color: #f5c6c6; }
.admin-action-btn.delete:hover { background: #fff5f5; border-color: #e53e3e; }

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.admin-modal.open { display: flex; }

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42,54,57,.45);
}

.admin-modal-box {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.admin-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.admin-modal-head h3 {
  font-family: var(--ff-display);
  color: var(--plum);
  font-size: 1.3rem;
}

.admin-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.admin-modal-close:hover { background: var(--ivory); color: var(--plum); }

.admin-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin-form .form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  outline: none;
  font-size: .92rem;
  width: 100%;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.admin-form .form-group input {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  outline: none;
  font-size: .92rem;
  width: 100%;
}

.admin-form .form-group input:focus,
.admin-form .form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb),.08);
}

.admin-active-check { margin-top: 4px; }

.admin-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.admin-form-actions .btn { flex: 1; justify-content: center; min-width: 140px; }

.admin-form-page {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.admin-field-hint {
  font-size: .82rem;
  color: var(--text-muted);
  margin: -4px 0 12px;
}

.admin-image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.admin-image-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 16px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: .88rem;
}

.admin-image-empty i { font-size: 1.8rem; color: var(--plum); opacity: .5; }

.admin-image-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--ivory);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.admin-image-item.is-main {
  border-color: var(--plum);
  border-width: 3px;
  box-shadow: 0 0 0 4px rgba(70, 127, 141, 0.22), 0 8px 20px rgba(70, 127, 141, 0.18);
}

.admin-image-item.is-main-pulse {
  animation: adminMainPulse .65s ease;
}

@keyframes adminMainPulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(70, 127, 141, 0.35); }
  100% { transform: scale(1); }
}

.admin-image-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(70, 127, 141, 0.45) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

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

.admin-image-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--plum);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.admin-image-badge i { font-size: .58rem; }

.admin-image-set-main {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(255,255,255,.95);
  color: var(--plum);
  font-size: .68rem;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  border: 1px solid var(--border);
}

.admin-image-set-main:hover {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}

.admin-image-set-main i { font-size: .62rem; }

.admin-image-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: #c53030;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: .75rem;
}

.admin-image-remove:hover { background: #fff5f5; }

.admin-add-image-btn {
  width: 100%;
  justify-content: center;
}

.admin-add-item-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.admin-item-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-item-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: .88rem;
}

.admin-item-empty i { font-size: 1.5rem; color: var(--plum); opacity: .5; }

.admin-item-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.admin-item-text {
  flex: 1;
  font-size: .92rem;
  line-height: 1.5;
  color: var(--text);
}

.admin-item-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.admin-item-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
}

.admin-item-btn.edit:hover { color: var(--plum); border-color: var(--plum); background: #faf5ff; }
.admin-item-btn.delete:hover { color: #c53030; border-color: #feb2b2; background: #fff5f5; }

.admin-review-card { align-items: center; }

.admin-review-content { flex: 1; min-width: 0; }

.admin-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.admin-review-head strong { font-size: .92rem; color: var(--plum); }

.admin-review-stars {
  color: #f6ad55;
  font-size: .85rem;
  letter-spacing: .05em;
}

.admin-review-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.admin-trust-card { align-items: center; }

.admin-trust-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.admin-trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  flex-shrink: 0;
}

.admin-trust-icon i { font-size: .85rem; }

.admin-modal-body select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: .92rem;
  background: #fff;
  color: var(--text);
}

.admin-text-modal { max-width: 480px; }

.admin-modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.admin-modal-body .form-group { margin-bottom: 8px; }

.admin-modal-body .btn { justify-content: center; width: 100%; margin-top: 8px; }

.admin-list-thumb {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.admin-list-thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  color: var(--text-muted);
}

.admin-upload-modal { max-width: 480px; }

.admin-upload-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.admin-upload-preview {
  min-height: 180px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  overflow: hidden;
  background: var(--ivory);
}

.admin-upload-preview i { font-size: 2rem; color: var(--plum); opacity: .6; }

.admin-upload-preview img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: contain;
  display: block;
}

.admin-upload-body .btn { justify-content: center; width: 100%; }

a.admin-action-btn {
  text-decoration: none;
}

.admin-order-count {
  font-size: .9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.admin-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-order-status-block {
  margin: 20px 0;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.admin-order-status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.admin-status-select {
  min-width: 180px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  background: #fff;
  color: var(--text);
}

.btn-sm {
  padding: 8px 14px;
  font-size: .82rem;
}

.order-image-export {
  position: fixed;
  left: -9999px;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.admin-orders-top-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.admin-pagination-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 4px 4px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.admin-pagination-bottom .admin-pagination-right {
  justify-content: center;
  width: 100%;
}

.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 4px 4px 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.admin-pagination--top {
  margin-top: 0;
}

.admin-pagination-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-page-size-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-muted);
}

.admin-page-size-select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  background: #fff;
  color: var(--text);
}

.admin-page-info {
  font-size: .85rem;
  color: var(--text-muted);
}

.admin-pagination-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.admin-page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-size: .88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.admin-page-btn:hover:not(:disabled):not(.active) {
  border-color: var(--plum);
  color: var(--plum);
}

.admin-page-btn.active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
  font-weight: 600;
}

.admin-page-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.admin-page-ellipsis {
  padding: 0 4px;
  color: var(--text-muted);
  font-size: .88rem;
}

.admin-order-meta {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.admin-badge-payment {
  background: rgba(70, 127, 141, 0.12);
  color: var(--plum);
}

.admin-order-detail-row td {
  background: var(--ivory);
  padding: 0 !important;
  border-bottom: 1px solid var(--border);
}

.admin-order-detail {
  padding: 20px 24px;
}

.admin-order-detail h4 {
  font-size: .88rem;
  color: var(--plum);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.admin-order-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.admin-order-detail p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0 0 4px;
  line-height: 1.5;
}

.admin-order-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-order-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.admin-order-item-total {
  font-weight: 600;
  color: var(--plum);
  font-size: .9rem;
}

@media (max-width: 768px) {
  .admin-order-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   404 — PAGE NOT FOUND
   ============================================================ */

.page-404 {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--warm-white);
}

.nf-top {
  position: relative;
  z-index: 5;
  padding: 22px clamp(20px, 4vw, 48px);
}

.nf-hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 24px 20px 64px;
}

.nf-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(126, 184, 196, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 75%, rgba(70, 127, 141, 0.18), transparent 55%),
    linear-gradient(165deg, #F8FBFC 0%, #E8F3F6 45%, #D7EBEF 100%);
}

.nf-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  animation: nf-float 9s ease-in-out infinite;
}

.nf-orb--1 {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  left: -8%;
  top: 12%;
  background: radial-gradient(circle, rgba(126, 184, 196, 0.55), transparent 70%);
  animation-duration: 11s;
}

.nf-orb--2 {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  right: -5%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(143, 188, 176, 0.45), transparent 70%);
  animation-duration: 13s;
  animation-delay: -3s;
}

.nf-orb--3 {
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  left: 42%;
  top: 8%;
  background: radial-gradient(circle, rgba(70, 127, 141, 0.22), transparent 70%);
  animation-duration: 10s;
  animation-delay: -5s;
}

.nf-leaf {
  position: absolute;
  color: var(--plum);
  opacity: 0.22;
  font-size: clamp(1.2rem, 3vw, 2rem);
  animation: nf-drift 14s ease-in-out infinite;
}

.nf-leaf--1 { left: 12%; top: 28%; animation-delay: 0s; }
.nf-leaf--2 { right: 14%; top: 22%; color: var(--rose-dark); animation-delay: -4s; font-size: clamp(1rem, 2.5vw, 1.6rem); }
.nf-leaf--3 { left: 22%; bottom: 18%; animation-delay: -7s; color: var(--sage); }
.nf-leaf--4 { right: 20%; bottom: 28%; animation-delay: -2s; }

.nf-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  animation: nf-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nf-brand {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  animation: nf-rise 0.8s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nf-code {
  display: flex;
  justify-content: center;
  gap: clamp(6px, 2vw, 16px);
  margin: 8px 0 18px;
  line-height: 1;
  user-select: none;
}

.nf-digit {
  font-family: var(--ff-display);
  font-size: clamp(5.5rem, 18vw, 9.5rem);
  font-weight: 700;
  color: var(--plum);
  text-shadow: 0 12px 40px rgba(70, 127, 141, 0.2);
  animation: nf-bounce 2.8s ease-in-out infinite;
  animation-delay: calc(var(--d, 0) * 0.18s);
}

.nf-digit--zero {
  color: var(--rose-dark);
  position: relative;
}

.nf-digit--zero::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 55%;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(126, 184, 196, 0.7), transparent);
  animation: nf-glow 2.4s ease-in-out infinite;
}

.nf-title {
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
  animation: nf-rise 0.85s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nf-sub {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 42ch;
  animation: nf-rise 0.85s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
  animation: nf-rise 0.85s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nf-btn {
  min-width: 160px;
  justify-content: center;
}

.nf-btn i {
  margin-right: 8px;
}

.nf-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  animation: nf-rise 0.85s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nf-links a {
  font-size: 0.9rem;
  color: var(--plum);
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: color var(--transition);
}

.nf-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nf-links a:hover {
  color: var(--plum-dark);
}

.nf-links a:hover::after {
  transform: scaleX(1);
}

@keyframes nf-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}

@keyframes nf-drift {
  0%, 100% { transform: translateY(0) rotate(-8deg); opacity: 0.18; }
  50% { transform: translateY(-22px) rotate(10deg); opacity: 0.32; }
}

@keyframes nf-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes nf-glow {
  0%, 100% { opacity: 0.35; width: 45%; }
  50% { opacity: 0.9; width: 65%; }
}

@keyframes nf-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nf-orb,
  .nf-leaf,
  .nf-digit,
  .nf-digit--zero::after,
  .nf-content,
  .nf-brand,
  .nf-title,
  .nf-sub,
  .nf-actions,
  .nf-links {
    animation: none !important;
  }
}
