
    :root {
     
   
      --navy:       #04060f;
      --navy-mid:   #080e1e;
      --navy-card:  #0b1327;
      --blue:       #1a6fff;
      --blue-glow:  #3a8dff;
      --blue-light: #5ba8ff;
      --accent:     #00c8ff;
      --gold:       #c9a84c;
      --white:      #f0f4ff;
      --muted:      #7a8cac;
      --border:     rgba(26,111,255,0.18);
      --font-display: 'Bebas Neue', sans-serif;
      --font-serif:   'Cormorant Garamond', serif;
      --font-body:    'DM Sans', sans-serif;
      --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    html { scroll-behavior: smooth; }
  body { background: var(--navy); }
  * { box-sizing: border-box; margin:0; padding:0; }
  a { color: inherit; text-decoration: none; }
 
    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }
 
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
 
    /* ── UTILITY ── */
    .blue { color: var(--blue-light); }
    .text-accent { color: var(--accent); }
    .section-label {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 4rem);
      letter-spacing: 0.04em;
      line-height: 1;
      color: var(--white);
    }
    .section-heading span { color: var(--blue-light); }
    .body-text { color: var(--muted); font-size: 15px; line-height: 1.8; font-weight: 300; }
 
    /* ── NAVBAR ── */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      background: rgba(4,6,15,0.85);
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--border);
      transition: var(--transition);
    }
    .site-header.scrolled {
      height: 60px;
      background: rgba(4,6,15,0.97);
    }
    .nav-logo img {height: 55px;}
    .nav-menu {
      display: flex;
      gap: 2px;
      align-items: center;
    }
    .nav-menu .nav-link {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 8px 14px;
      border-radius: 6px;
      transition: var(--transition);
      position: relative;
    }
    .nav-menu .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 14px; right: 14px;
      height: 1px;
      background: var(--blue);
      transform: scaleX(0);
      transition: var(--transition);
    }
    .nav-menu .nav-link:hover { color: var(--white); }
    .nav-menu .nav-link:hover::after { transform: scaleX(1); }
 
    .nav-cart-wrap { position: relative; cursor: pointer; }
    .nav-cart-wrap > a {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 500;
      color: var(--white);
      background: var(--blue);
      padding: 9px 20px;
      border-radius: 50px;
      transition: var(--transition);
    }
    .nav-cart-wrap > a:hover { background: var(--blue-glow); transform: translateY(-1px); }
    .cart-count {
      background: var(--accent);
      color: var(--navy);
      font-size: 10px;
      font-weight: 700;
      width: 18px; height: 18px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
 
    /* Cart Dropdown */
    .cart-item-list {
      position: absolute; top: calc(100% + 14px); right: 0;
      width: 320px;
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
      display: none;
    }
    .nav-cart-wrap:hover .cart-item-list { display: block; }
    .cart-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
    .cart-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
    .product-detail a { font-size: 13px; color: var(--white); font-weight: 500; }
    .item-ammount { font-size: 12px; color: var(--muted); display: block; }
    .cart-total { padding-top: 16px; }
    .cart-total .fs-18 { font-size: 17px; display: flex; justify-content: space-between; color: var(--white); margin-bottom: 14px; }
    .cart-total a { display: block; text-align: center; padding: 10px; border-radius: 8px; font-size: 13px; font-weight: 600; margin-top: 8px; transition: var(--transition); }
    .btn-view-cart { border: 1px solid var(--border); color: var(--muted); }
    .btn-view-cart:hover { border-color: var(--blue); color: var(--blue-light); }
    .btn-checkout { background: var(--blue); color: #fff; }
    .btn-checkout:hover { background: var(--blue-glow); }
 
    /* Hamburger */
    .nav-toggler {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .nav-toggler span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }
    @media (max-width: 991px) {
      .nav-toggler { display: flex; }
      .nav-menu { display: none; }
      .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px; left: 0; right: 0;
        background: rgba(4,6,15,0.98);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 4px;
      }
    }
 
    /* ── HERO ── */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 5vw 80px;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,111,255,0.12) 0%, transparent 65%),
        radial-gradient(ellipse 40% 80% at 90% 30%, rgba(0,200,255,0.06) 0%, transparent 50%),
        var(--navy);
    }
    .hero-grid-overlay {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(26,111,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,111,255,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 680px;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 32px; height: 1px;
      background: var(--accent);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 8vw, 7rem);
      line-height: 0.92;
      letter-spacing: 0.03em;
      color: var(--white);
      margin-bottom: 30px;
    }
    .hero-title em {
      font-style: normal;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--blue-light);
    }
    .hero-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.85;
      max-width: 520px;
      margin-bottom: 44px;
      font-weight: 300;
    }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--blue);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 50px;
      transition: var(--transition);
      box-shadow: 0 0 40px rgba(26,111,255,0.35);
    }
    .btn-primary-cta:hover {
      background: var(--blue-glow);
      transform: translateY(-2px);
      box-shadow: 0 0 60px rgba(26,111,255,0.5);
      color: #fff;
    }
    .btn-outline-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 16px 36px;
      border-radius: 50px;
      border: 1px solid var(--border);
      transition: var(--transition);
    }
    .btn-outline-cta:hover {
      border-color: var(--blue);
      color: var(--blue-light);
      transform: translateY(-2px);
    }
 
    /* Hero stats */
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .stat-item {}
    .stat-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      color: var(--blue-light);
      letter-spacing: 0.04em;
    }
    .stat-label { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
 
    /* Hero floating image */
    .hero-image-col {
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 45%;
      overflow: hidden;
    }
    .hero-image-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
      mix-blend-mode: luminosity;
    }
    .hero-image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--navy) 0%, rgba(4,6,15,0.3) 40%, transparent 100%);
    }
    @media (max-width: 768px) {
      .hero-image-col { display: none; }
    }
 
    /* ── MARQUEE ── */
    .marquee-section {
      background: var(--blue);
      padding: 18px 0;
      overflow: hidden;
      position: relative;
    }
    .marquee-track {
      display: flex;
      gap: 0;
      white-space: nowrap;
    }
    .marquee-inner {
      display: flex;
      animation: marquee-scroll 30s linear infinite;
    }
    .marquee-item {
      font-family: var(--font-display);
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.9);
      padding: 0 30px;
    }
    .marquee-item .dot { color: var(--accent); margin-right: 30px; }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
 
    /* ── ABOUT / TABS ── */
    .tabs-section {
      padding: 120px 5vw;
      background: var(--navy-mid);
      position: relative;
      overflow: hidden;
    }
    .tabs-section::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26,111,255,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .tabs-section .row { display: flex; flex-wrap: wrap; gap: 0; align-items: flex-start; }
    .tab-nav-col { width: 30%; padding-right: 40px; }
    .tab-content-col { width: 70%; }
    @media (max-width: 768px) {
      .tab-nav-col, .tab-content-col { width: 100%; padding-right: 0; margin-bottom: 30px; }
    }
 
    .tab-nav {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .tab-nav-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 12px;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid transparent;
    }
    .tab-nav-item:hover { background: rgba(26,111,255,0.06); border-color: var(--border); }
    .tab-nav-item.active {
      background: rgba(26,111,255,0.1);
      border-color: var(--border);
    }
    .tab-num {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--blue);
      min-width: 32px;
    }
    .tab-nav-item.active .tab-num { color: var(--accent); }
    .tab-title-text {
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      transition: var(--transition);
    }
    .tab-nav-item.active .tab-title-text,
    .tab-nav-item:hover .tab-title-text { color: var(--white); }
 
    .tab-pane { display: none; }
    .tab-pane.active { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
    .tab-img-wrap { flex: 0 0 55%; }
    .tab-img-wrap img { width: 100%; border-radius: 20px; object-fit: cover; height: 380px; }
    .tab-info { flex: 1; }
    .tab-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .tab-badge::after { content: ''; width: 24px; height: 1px; background: var(--accent); }
    .tab-info h3 {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 18px;
    }
    .tab-info p { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.8; }
    .btn-tab {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--white);
      background: var(--blue);
      padding: 13px 28px;
      border-radius: 50px;
      transition: var(--transition);
    }
    .btn-tab:hover { background: var(--blue-glow); transform: translateY(-2px); color: #fff; }
    @media (max-width: 768px) {
      .tab-img-wrap { flex: 0 0 100%; }
    }
 
    /* ── PRODUCTS CAROUSEL ── */
    .products-section {
      padding: 120px 5vw;
      background: var(--navy);
      overflow: hidden;
    }
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 60px;
      flex-wrap: wrap;
      gap: 20px;
    }
    .section-header-left {}
    .section-header-left .section-label { margin-bottom: 10px; display: block; }
    .btn-see-all {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue-light);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }
    .btn-see-all:hover { color: var(--accent); gap: 14px; }
 
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
    }
    /* For the swiper-based ng-repeat, we wrap in a scrollable container */
    .products-scroll {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding-bottom: 12px;
      scroll-snap-type: x mandatory;
    }
    .products-scroll::-webkit-scrollbar { height: 3px; }
    .products-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
    .products-scroll::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }
 
    /* product card */
    .product-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: var(--transition);
      position: relative;
      flex: 0 0 240px;
      scroll-snap-align: start;
    }
    .product-card:hover {
      border-color: rgba(26,111,255,0.45);
      transform: translateY(-6px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(26,111,255,0.2);
    }
    .product-img-wrap {
      position: relative;
      overflow: hidden;
      background: var(--navy-mid);
      height: 220px;
    }
    .product-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.06); }
    .product-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(4,6,15,0.7), transparent 60%);
    }
    .product-body {
      padding: 20px;
    }
    .product-name {
      font-size: 15px;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .product-price {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--blue-light);
      letter-spacing: 0.05em;
    }
 
    /* ── FEATURED / WELLNESS PICKS ── */
    .featured-section {
      padding: 120px 0 0;
      background: var(--navy-mid);
    }
    .featured-inner {
      display: flex;
      align-items: stretch;
      min-height: 80vh;
    }
    .featured-img-col {
      flex: 0 0 50%;
      position: sticky;
      top: 72px;
      height: calc(100vh - 72px);
      overflow: hidden;
    }
    .featured-img-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .featured-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, transparent 60%, var(--navy-mid));
    }
    .featured-text-col {
      flex: 1;
      padding: 80px 6vw 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .featured-text-col h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--white);
      letter-spacing: 0.04em;
      line-height: 1.05;
      margin-bottom: 24px;
    }
    .featured-text-col h2 span { color: var(--blue-light); }
    .featured-text-col p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.85;
      margin-bottom: 20px;
      font-weight: 300;
    }
    .featured-img-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 28px 0;
    }
    .featured-img-row img { border-radius: 16px; height: 200px; object-fit: cover; width: 100%; }
    @media (max-width: 768px) {
      .featured-inner { flex-direction: column; }
      .featured-img-col { position: relative; height: 50vw; flex: none; }
      .featured-text-col { padding: 40px 5vw; }
    }
 
    /* Feature list */
    .feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 500;
      color: var(--muted);
      background: rgba(26,111,255,0.07);
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 50px;
      transition: var(--transition);
    }
    .pill i { color: var(--blue); font-size: 11px; }
    .pill:hover { border-color: var(--blue); color: var(--white); background: rgba(26,111,255,0.12); }
 
    /* ── WHY US CARDS ── */
    .why-section {
      padding: 120px 5vw;
      background: var(--navy);
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 60px;
    }
    .why-card {
      background: var(--navy-card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 30px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(26,111,255,0.12), transparent 70%);
      transition: var(--transition);
    }
    .why-card:hover { border-color: rgba(26,111,255,0.4); transform: translateY(-4px); }
    .why-card:hover::before { opacity: 2; transform: scale(1.3); }
    .why-icon {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: rgba(26,111,255,0.12);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      color: var(--blue-light);
      margin-bottom: 22px;
      transition: var(--transition);
    }
    .why-card:hover .why-icon { background: rgba(26,111,255,0.2); border-color: rgba(26,111,255,0.4); }
    .why-card h4 {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
    }
    .why-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }
 
    /* ── FOOTER ── */
    .site-footer {
      background: var(--navy-card);
      border-top: 1px solid var(--border);
    }
    .footer-main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 50px;
      padding: 80px 5vw 60px;
    }
    @media (max-width: 991px) {
      .footer-main { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 576px) {
      .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 50px 5vw 40px; }
    }
    .footer-logo img { height: 38px; margin-bottom: 18px; }
    .footer-desc { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
    .footer-col-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 13px; color: var(--muted); transition: var(--transition); }
    .footer-links a:hover { color: var(--blue-light); padding-left: 4px; }
 
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
    }
    .footer-contact-item i { color: var(--blue); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item a { font-size: 13px; color: var(--muted); transition: var(--transition); line-height: 1.5; }
    .footer-contact-item a:hover { color: var(--white); }
 
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 24px 5vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-disclaimer {
      font-size: 11px;
      color: var(--muted);
      max-width: 600px;
      line-height: 1.6;
      margin-bottom: 0;
    }
    .footer-copyright { font-size: 12px; color: var(--muted); }
    .footer-copyright a { color: var(--blue-light); }
 
    /* ── SCROLL TO TOP ── */
    .scroll-top-btn {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      z-index: 999;
      box-shadow: 0 8px 24px rgba(26,111,255,0.4);
      transition: var(--transition);
      opacity: 0;
      pointer-events: none;
    }
    .scroll-top-btn.visible { opacity: 1; pointer-events: all; }
    .scroll-top-btn:hover { background: var(--blue-glow); transform: translateY(-3px); }
 
    /* Cookie */
    #cookiePopup {
      position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
      width: 100%;
      background: var(--navy-card);
      border-top: 1px solid var(--border);
      padding: 20px 5vw;
      z-index: 999999;
      display: none;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    #cookiePopup p { font-size: 13px; color: var(--muted); max-width: 700px; line-height: 1.6; }
    #cookiePopup p a { color: var(--blue-light); }
    .cookieBtns { display: flex; gap: 10px; }
    .cookieBtns button {
      font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 10px 22px; border-radius: 50px; cursor: pointer; transition: var(--transition); border: none;
    }
    #acceptCookie { background: var(--blue); color: #fff; }
    #acceptCookie:hover { background: var(--blue-glow); }
    #declineCookie { background: transparent; color: var(--muted); border: 1px solid var(--border) !important; }
    #declineCookie:hover { border-color: var(--blue) !important; color: var(--blue-light); }
 
    /* swiper override */
    .swiper-pagination-bullet { background: var(--muted) !important; }
    .swiper-pagination-bullet-active { background: var(--blue) !important; }
 
    /* animations */
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .animate-fade-up { animation: fade-up 0.7s ease both; }
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.25s; }
    .delay-3 { animation-delay: 0.4s; }
    .delay-4 { animation-delay: 0.55s; }
    .delay-5 { animation-delay: 0.7s; }




  .fp { background: var(--navy-card); border-top: 1px solid var(--border); position: relative; overflow: hidden; font-family: 'DM Sans', sans-serif; color: var(--white); }

  .fp::before { content:''; position:absolute; width:500px;height:500px;top:-200px;left:-150px;border-radius:50%;background:radial-gradient(circle,rgba(26,111,255,0.07),transparent 70%);animation:fpulse 8s ease-in-out infinite alternate;pointer-events:none; }
  .fp::after  { content:''; position:absolute; width:400px;height:400px;bottom:-160px;right:-100px;border-radius:50%;background:radial-gradient(circle,rgba(0,200,255,0.05),transparent 70%);animation:fpulse 10s ease-in-out 2s infinite alternate-reverse;pointer-events:none; }
  @keyframes fpulse { from{transform:scale(1);opacity:.6} to{transform:scale(1.2);opacity:1} }

  .cta-bar { display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;padding:32px 32px;border-bottom:1px solid var(--border);background:rgba(26,111,255,0.04);position:relative;z-index:1; }
  .cta-h { font-family:'Bebas Neue',sans-serif;font-size:1.6rem;color:var(--white);letter-spacing:.07em;margin-bottom:2px; }
  .cta-p { font-size:12px;color:var(--muted); }
  .cta-btns { display:flex;gap:10px; }
  .cb { display:inline-flex;align-items:center;gap:7px;font-size:11px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;padding:11px 22px;border-radius:50px;transition:.3s; }
  .cb.filled { background:var(--blue);color:#fff;box-shadow:0 0 24px rgba(26,111,255,.3); }
  .cb.filled:hover { background:var(--blue-glow);transform:translateY(-2px); }
  .cb.ghost { border:1px solid var(--border);color:var(--muted); }
  .cb.ghost:hover { border-color:var(--blue);color:var(--blue-light); }

  .grid { display:grid;grid-template-columns:2fr 1fr 1fr 1.4fr;gap:36px;padding:56px 32px 48px;position:relative;z-index:1; }
  @media(max-width:700px){ .grid{grid-template-columns:1fr 1fr;gap:28px;padding:36px 20px;} }

  .logo-img {height: auto;margin-bottom:14px;background:rgba(255,255,255,0.08);border-radius:6px;width: 200px;display:flex;align-items:center;justify-content:center;font-size:11px;color:var(--muted);}
  .desc {font-size: 14px;color:var(--muted);line-height:1.8;margin-bottom:18px;}

  .badges { display:flex;flex-wrap:wrap;gap:7px;margin-bottom:18px; }
  .badge { display:inline-flex;align-items:center;gap:5px;font-size:10px;font-weight:500;color:var(--muted);background:rgba(26,111,255,0.07);border:1px solid var(--border);padding:5px 10px;border-radius:50px; }
  .badge i { color:var(--blue-light);font-size:10px; }

  .socials { display:flex;gap:8px; }
  .sb { width:34px;height:34px;border-radius:9px;border:1px solid var(--border);background:transparent;display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:13px;transition:.35s;position:relative;overflow:hidden;cursor:pointer; }
  .sb::before { content:'';position:absolute;inset:0;background:var(--blue);transform:translateY(100%);transition:.35s;border-radius:9px; }
  .sb i { position:relative;z-index:1; }
  .sb:hover { color:#fff;border-color:var(--blue); }
  .sb:hover::before { transform:translateY(0); }

  .col-title { font-size:10px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--white);margin-bottom:18px;display:flex;align-items:center;gap:8px; }
  .col-title::after { content:'';flex:1;height:1px;background:var(--border); }

  ul { list-style:none; }
  li { margin-bottom:9px; }
  li a {font-size: 14px;color:var(--muted);transition:.25s;display:inline-flex;align-items:center;gap:0;}
  li a::before { content:'→';font-size:10px;color:var(--blue);width:0;overflow:hidden;transition:.25s;opacity:0; }
  li a:hover { color:var(--blue-light); }
  li a:hover::before { width:14px;opacity:1; }

  .contact-item { display:flex;align-items:flex-start;gap:12px;margin-bottom:12px;padding:10px 12px;border-radius:10px;border:1px solid transparent;transition:.3s;cursor:default; }
  .contact-item:hover { background:rgba(26,111,255,0.06);border-color:var(--border); }
  .ci-icon { width:30px;height:30px;border-radius:8px;background:rgba(26,111,255,0.1);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--blue-light);font-size:12px;flex-shrink:0;transition:.3s; }
  .contact-item:hover .ci-icon { background:rgba(26,111,255,0.18);border-color:rgba(26,111,255,.4); }
  .ci-label {font-size: 12px;color:var(--muted);letter-spacing:.1em;text-transform:uppercase;margin-bottom:1px;}
  .ci-value {font-size: 14px;color:var(--muted);transition:.3s;line-height:1.3;}
  .contact-item:hover .ci-value { color:var(--white); }

  .divider { height:1px;margin:0 32px;background:var(--border);position:relative;z-index:1;overflow:hidden; }
  .divider::after { content:'';position:absolute;top:0;left:-30%;width:30%;height:100%;background:linear-gradient(90deg,transparent,var(--blue-light),transparent);animation:scan 4s ease-in-out infinite; }
  @keyframes scan { from{left:-30%} to{left:130%} }

  .bottom { display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;padding:22px 32px;position:relative;z-index:1; }
  .disclaimer {font-size: 12px;color:var(--muted);max-width:560px;line-height:1.65;}
  .disclaimer strong { color:var(--blue-light);font-weight:600; }
  .bottom-right { display:flex;align-items:center;gap:16px; }
  .copy {font-size: 12px;color:var(--muted);}
  .copy a { color:var(--blue-light); }
  .back-top { display:inline-flex;align-items:center;gap:5px;font-size:10px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);border:1px solid var(--border);padding:7px 14px;border-radius:50px;cursor:pointer;transition:.3s; }
  .back-top:hover { color:var(--blue-light);border-color:var(--blue); }
  .back-top i { transition:.3s; }
  .back-top:hover i { transform:translateY(-2px); }


  /* =========================================
   HERO / PAGE TITLE SECTION
========================================= */

.page-title-center-alignment{
    position:relative;
    overflow:hidden;
    background-size:cover;
    background-position:center;
}

.page-title-center-alignment::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(2,6,23,0.55) 0%,
        rgba(2,6,23,0.88) 100%
    );
}

.page-title-center-alignment .container{
    position:relative;
    z-index:2;
}

.page-title-extra-large h1{
    font-size:72px;
    font-weight:800;
    letter-spacing:-2px;
    text-transform:uppercase;
    font-family:'Montserrat',sans-serif;
}

.breadcrumb-style-01 ul{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    list-style:none;
    padding:0;
    margin:0;
}

.breadcrumb-style-01 li{
    color:#cbd5e1;
    font-size:15px;
    font-weight:500;
}

.breadcrumb-style-01 li a{
    color:#ffffff;
    transition:0.3s ease;
}

.breadcrumb-style-01 li a:hover{
    color:#60a5fa;
}

.breadcrumb-style-01 li:not(:last-child)::after{
    content:'/';
    margin-left:14px;
    color:#60a5fa;
}

/* =========================================
   TERMS CONTENT DESIGN
========================================= */

.terms-section{
    padding:100px 0;
    position:relative;
}

.terms-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(37,99,235,0.12);
    filter:blur(120px);
    top:-150px;
    right:-150px;
    border-radius:50%;
}

.terms-box{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    border-radius:30px;
    padding:60px;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

/* KEEP ALL YOUR EXISTING TERMS CONTENT */
.terms-box h1,
.terms-box h2,
.terms-box h3,
.terms-box h4,
.terms-box h5,
.terms-box h6{
    color:#ffffff;
    font-weight:700;
    margin-top:35px;
    margin-bottom:18px;
    font-family:'Montserrat',sans-serif;
}

.terms-box p{
    color:#cbd5e1;
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
}

.terms-box ul,
.terms-box ol{
    padding-left:20px;
    margin-bottom:25px;
}

.terms-box ul li,
.terms-box ol li{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:12px;
}

.terms-box a{
    color:#60a5fa;
    text-decoration:none;
}

.terms-box a:hover{
    color:#93c5fd;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .page-title-extra-large h1{
        font-size:52px;
    }

    .terms-box{
        padding:40px 30px;
    }
}

@media(max-width:767px){

    .page-title-extra-large h1{
        font-size:38px;
    }

    .terms-box{
        padding:30px 20px;
        border-radius:20px;
    }

    .terms-box p{
        font-size:15px;
    }
}


/* =========================================
   INGREDIENTS PAGE DESIGN
========================================= */

.ingredients-section{
    position:relative;
    padding:120px 0 100px;
    background:#081120;
    overflow:hidden;
}

/* Background Glow Effects */
.ingredients-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(37,99,235,0.12);
    border-radius:50%;
    filter:blur(120px);
    top:-180px;
    right:-120px;
}

.ingredients-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(96,165,250,0.08);
    border-radius:50%;
    filter:blur(120px);
    bottom:-180px;
    left:-120px;
}

/* Section Heading */
.ingredients-head{
    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.ingredients-head span{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    color:#60a5fa;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.ingredients-head h2{
    font-size:58px;
    line-height:1.2;
    font-weight:800;
    color:#ffffff;
    margin-bottom:20px;
    font-family:'Montserrat',sans-serif;
}

.ingredients-head p{
    max-width:760px;
    margin:auto;
    color:#cbd5e1;
    font-size:17px;
    line-height:1.9;
}

/* Image Cards */
.ingredient-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    margin-bottom:35px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    padding:18px;
    backdrop-filter:blur(14px);
    transition:0.45s ease;
    box-shadow:0 15px 40px rgba(0,0,0,0.18);
}

.ingredient-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,0.28);
}

.ingredient-card img{
    width:100%;
    border-radius:20px;
    transition:0.5s ease;
}

.ingredient-card:hover img{
    transform:scale(1.03);
}

/* Optional overlay */
.ingredient-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(37,99,235,0.08),
        transparent
    );
    opacity:0;
    transition:0.4s;
    z-index:1;
    border-radius:28px;
}

.ingredient-card:hover::before{
    opacity:1;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .ingredients-head h2{
        font-size:44px;
    }

    .ingredients-section{
        padding:90px 0;
    }
}

@media(max-width:767px){

    .ingredients-head h2{
        font-size:34px;
    }

    .ingredients-head p{
        font-size:15px;
    }

    .ingredient-card{
        padding:12px;
        border-radius:20px;
    }

    .ingredient-card img{
        border-radius:14px;
    }
}

/* =========================================
   CONTACT SECTION DESIGN
========================================= */

.contact-section{
    position:relative;
    padding:120px 0;
    background:#081120;
    overflow:hidden;
}

/* Background Glow */
.contact-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(37,99,235,0.12);
    filter:blur(120px);
    top:-180px;
    right:-120px;
    border-radius:50%;
}

.contact-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(96,165,250,0.08);
    filter:blur(120px);
    bottom:-180px;
    left:-120px;
    border-radius:50%;
}

/* Contact Card */
.contact-card{
    position:relative;
    z-index:2;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(16px);
    border-radius:32px;
    padding:70px;
    box-shadow:0 20px 60px rgba(0,0,0,0.25);
}

/* Top Label */
.contact-section .text-highlight{
    color:#60a5fa;
    position:relative;
    font-weight:600;
}

/* Heading */
.contact-section h2{
    font-size:58px;
    line-height:1.2;
    color:#ffffff!important;
    font-weight:300;
    margin-bottom:45px;
    font-family:'Montserrat',sans-serif;
}

.contact-section h2 span{
    font-weight:800;
    color:#60a5fa;
}

/* Contact Info Cards */
.contact-info-box{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:30px;
    height:100%;
    transition:0.4s ease;
    margin-bottom:25px;
}

.contact-info-box:hover{
    transform:translateY(-8px);
    border-color:rgba(96,165,250,0.35);
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* Titles */
.contact-info-box span{
    display:block;
    font-size:18px;
    font-weight:700;
    color:#ffffff!important;
    margin-bottom:12px;
    font-family:'Montserrat',sans-serif;
}

/* Text */
.contact-info-box p,
.contact-info-box a{
    color:#cbd5e1!important;
    font-size:16px;
    line-height:1.8;
    text-decoration:none;
    transition:0.3s;
}

.contact-info-box a:hover{
    color:#60a5fa!important;
}

/* Optional Icons */
.contact-info-box i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(37,99,235,0.25);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .contact-card{
        padding:45px 30px;
    }

    .contact-section h2{
        font-size:42px;
    }
}

@media(max-width:767px){

    .contact-section{
        padding:90px 0;
    }

    .contact-card{
        padding:30px 20px;
        border-radius:22px;
    }

    .contact-section h2{
        font-size:32px;
        margin-bottom:35px;
    }

    .contact-info-box{
        padding:24px;
    }
}

.product-info span
{
    color: #fff;
        font-family: var(--font-display);
}
.product-info h4
{
    color: var(--blue);
        font-family: var(--font-display);
}
a.cardl {
    display: inline-block;
}
table.table.cart-products {
    background-color: var(--navy-card);
}
.thnkimg{
    display: block;
    margin-left: auto;
    margin-right: auto;
}