:root{
    --bg:#fafafa; --surface:#fff; --text:#1b1b1b; --muted:#6b7280; --border:#e5e7eb;
    --accent:#e11d48; --accent-600:#be123c;
    --green:#22c55e; --orange:#f59e0b; --red:#ef4444;
    --radius-xl:20px; --radius-lg:14px;
    --shadow-s:0 1px 2px rgba(0,0,0,.06), 0 1px 1px rgba(0,0,0,.04);
    --shadow-m:0 10px 30px rgba(0,0,0,.08);
}
html,body{height:100%}
html, body {
  overflow-x: hidden; /* disable scrolling */
}
body{margin:0;background:var(--bg);color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";line-height:1.6}

html, body {
  scroll-behavior: smooth;
}

    /* ===== Contact Us ===== */
.contact-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.contact-card{
  background:var(--surface,#fff);
  border:1px solid var(--border,#e5e7eb);
  border-radius:16px;
  box-shadow:var(--shadow-m,0 10px 30px rgba(0,0,0,.08));
  padding:18px;
  display:grid;
  gap:8px;
}
.contact-card h3{ margin:0; font:700 16px/1.2 Poppins, Inter, sans-serif; }
.contact-card p{ margin:0; color:var(--muted,#6b7280); font-size:14px; }
.contact-icon{
  width:36px; height:36px; display:grid; place-items:center;
  border-radius:10px; border:1px solid var(--border,#e5e7eb); background:#fff;
}

/* Social button */
.social a{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--border,#e5e7eb); background:#fff;
  font:600 13px/1 Inter; text-decoration:none; color:var(--text,#1b1b1b);
}
.social svg{ width:16px; height:16px; }

/* Trust / Payments section */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border, #e5e7eb);
  background: var(--surface, #fff);
  color: var(--text, #1b1b1b);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
}

.trust svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: var(--accent, #e11d48);
}

/* Optional: make each trust item visually distinct */
.trust-ssl {
  color: #15803d; /* green */
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.trust-stripe {
  color: #2563eb; /* blue */
  border-color: #bfdbfe;
  background: #eff6ff;
}

.trust-cards {
  color: #92400e; /* amber/brown */
  border-color: #fcd34d;
  background: #fffbeb;
}

.rating .star {
  color: gold;      /* gold stars */
  font-size: 24px;  /* size of the stars */
  margin-right: 2px;
}

/* ===== Feedbacks (card carousel) ===== */
.fbx-viewport{
  max-width: 420px;        /* phone-like width */
  margin: 0 auto;
  position: relative;
}

html { scroll-behavior: smooth; }

.fbx-track{
  display:flex;
  transition: transform .35s ease;
  will-change: transform;
}

.fbx-slide{
  min-width: 100%;
  display:flex;
  justify-content:center;
}

.fbx-card{
  background:#fff;
  border:1px solid var(--border,#e5e7eb);
  border-radius:20px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  padding:12px;
  width: 420px;
  display:grid;
  gap:8px;
  justify-items:center;
  text-align:center;
}

.fbx-card img{
  width:100%;
  height:auto;
  border-radius:14px;
  object-fit:cover;
}
.fbx-cap{
  font-size:13px;
  color:var(--muted,#6b7280);
}

/* Controls */
.fbx-nav{
  position:absolute;
  inset:auto 8px 8px 8px;  /* bottom corners */
  display:flex;
  justify-content:space-between;
  align-items:center;
  pointer-events:none;
}
.fbx-btn{
  pointer-events:auto;
  border:1px solid var(--border,#e5e7eb);
  background:#fff;
  border-radius:10px;
  width:40px; height:36px;
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow:var(--shadow-s,0 1px 2px rgba(0,0,0,.06));
}

/* Dots */
.fbx-dots{
  display:flex; gap:6px; justify-content:center; margin:10px 0 4px;
}
.fbx-dots button{
  width:8px; height:8px; border-radius:999px;
  background:#e5e7eb; border:none; cursor:pointer;
}
.fbx-dots button[aria-current="true"]{ background:var(--accent,#e11d48); }

/* Mobile tweaks */
@media (max-width:560px){
  .fbx-btn{ width:40px; height:36px; }
}
@media (prefers-reduced-motion: reduce){
  .fbx-track{ transition:none; }
}

/* Responsive */
@media (max-width:980px){ .contact-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .contact-grid{ grid-template-columns:1fr; } }


/* Corner ribbon */
    .card{ position:relative; overflow:hidden; } /* ensure clipping & positioning */
    .ribbon{
      position:absolute;
      top:22px; left: 70%;                 /* slide left so diagonal crosses the corner */
      transform:rotate(45deg);
      background:#ff0037; color:#fff;
      padding:6px 48px;                     /* long so it spans the corner */
      font:700 12px/1 Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      letter-spacing:.4px;
      box-shadow:0 1px 2px rgba(0,0,0,.12);
      z-index:2;
      pointer-events:none;                  /* keep the whole card clickable */
    }
    .ribbon::after{                         /* crisp edge */
      content:"";
      position:absolute; inset:-1px;
      border:1px solid rgba(255,255,255,.3);
      border-top:0; border-left:0;
      pointer-events:none;
    }

.container{margin:0 auto;padding:24px; width: 90%;}
/* Smooth anchor scrolling */
    html { scroll-behavior: smooth; }

    /* Ensure anchored sections aren't hidden under sticky header */
    section[id] { scroll-margin-top: 84px; }

    /* Full-screen hero background */
    .hero-viewport{
      position: relative;
      min-height: 100dvh;
      display: grid;
      align-items: center;
      background: url("/assets/img/bg.png") center / cover no-repeat;
    }
    .hero-viewport::before{
      content:"";
      position:absolute; inset:0; pointer-events:none;
      background: color-mix(in oklab, white 14%, transparent);
    }
    .hero-viewport .hero{ position:relative; z-index:1; }

    /* Remove background from hero-media container: just the image */
    .logo-card{ background:transparent; border:0; box-shadow:none; padding:0; }

    /* Currency select styling */
    .currency-wrap{ display:flex; align-items:center; gap:8px; }
    .currency{
      appearance:none; -webkit-appearance:none; -moz-appearance:none;
      padding:8px 12px; border:1px solid var(--border,#e5e7eb);
      border-radius:10px; background:#fff; font:600 14px/1 Inter;
      box-shadow:0 1px 2px rgba(0,0,0,.06);
    }
    .sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

    /* ===== Sticky Reviews styles ===== */
    .reviews-sticky{
      position: fixed;
        left: 12px;
        bottom: 24px; /* plays nice with iOS notch */
        z-index: 9999;
        border: 0;
        border-radius: 10px;
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: transform .15s ease, opacity .15s ease;
    }
    .reviews-toggle{
      border:1px solid var(--border,#e5e7eb);
      background:var(--surface,#fff);
      box-shadow:var(--shadow-s,0 1px 2px rgba(0,0,0,.06));
      border-radius:999px;
      padding:10px 14px;
      font:700 14px/1 Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      cursor:pointer;
    }
    .reviews-panel{
      width:min(420px, calc(100vw - 32px));
      max-height:360px;
      margin-top:10px;
      background:var(--surface,#fff);
      border:1px solid var(--border,#e5e7eb);
      border-radius:16px;
      box-shadow:var(--shadow-m,0 10px 30px rgba(0,0,0,.08));
      display:grid;
      grid-template-rows:auto 1fr auto;
      overflow:hidden;
    }
    .reviews-panel[hidden]{ display:none !important; }

    .rv-head{ display:flex; align-items:center; justify-content:space-between; padding:10px 12px; border-bottom:1px solid var(--border,#e5e7eb); }
    .rv-title{ margin:0; font:700 14px/1.2 Poppins, Inter, sans-serif; }
    .rv-close{ all:unset; cursor:pointer; font-weight:700; padding:4px 8px; color:black;}

    .rv-viewport{ overflow:hidden; }
    .rv-track{ display:flex; will-change: transform; transition: transform .35s ease; }

    /* Left-floating review layout: avatar left, text right */
    .rv-slide{
      min-width:100%;
      padding:12px 14px;
      display:grid;
      grid-template-columns:56px 1fr;
      gap:12px;
      align-items:start;
    }
    .rv-avatar{
      width:48px; height:48px; border-radius:999px; object-fit:cover;
      border:1px solid var(--border,#e5e7eb);
      background:#fff;
    }
    .rv-body{ display:grid; gap:6px; text-align:left; }
    .rv-quote{ margin:0; color:var(--text,#1b1b1b); font-size:14px; line-height:1.5; }
    .rv-author{ color:var(--muted,#6b7280); font-size:12px; }
    .rv-stars{ font-size:14px; letter-spacing:.5px; color:#f59e0b; }
    .rv-photo{
      width:100%; max-height:140px; object-fit:cover;
      border-radius:12px; border:1px solid var(--border,#e5e7eb);
    }

    .rv-nav{ display:flex; align-items:center; justify-content:space-between; padding:8px 12px; border-top:1px solid var(--border,#e5e7eb); }
    .rv-left{ display:flex; gap:8px; }
    .rv-btn{ border:1px solid var(--border,#e5e7eb); background:#fff; border-radius:10px; width:36px; height:32px; display:grid; place-items:center; cursor:pointer; }
    .rv-dots{ display:flex; gap:6px; }
    .rv-dot{ width:8px; height:8px; border-radius:999px; background:#e5e7eb; border:none; cursor:pointer; }
    .rv-dot[aria-current="true"]{ background:var(--accent,#e11d48); }

    @media (max-width:560px){
      .reviews-panel{ max-height: 420px; }
      .rv-btn{ width:40px; height:36px; }
    }
    @media (prefers-reduced-motion: reduce){
      .rv-track{ transition:none; }
    }


/* ---- About cover ---- */
.about-wrap{
  display:grid; gap:18px; align-items:center;
  grid-template-columns: 1.2fr 1fr;
}
.about-cover{
  aspect-ratio: 16/9;
  background: url("/assets/img/about-cover.jpg") center/cover no-repeat;
  border-radius:18px; border:1px solid var(--border,#e5e7eb);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}
@media (max-width: 900px){
  .about-wrap{ grid-template-columns: 1fr; }
  .about-cover{ order:-1; }
}
.story h3{ margin:0 0 6px; font:700 22px/1.2 Poppins, Inter, sans-serif; }
.story p{ margin:0 0 10px; line-height:1.6; }

/* Header & Nav */
header{position:sticky;top:0;z-index:30;backdrop-filter:saturate(140%) blur(6px);
    background:color-mix(in oklab, var(--bg) 85%, white 15%);border-bottom:1px solid var(--border)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 24px;gap:12px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:inherit}
.brand img{height:36px;width:auto;display:block}
.brand-title{font-family:Poppins,Inter,sans-serif;font-weight:700;letter-spacing:.2px}

.nav-left{display:flex;align-items:center;gap:24px}
.nav-links{display:flex;gap:16px}
.nav-links a{color:var(--text);text-decoration:none;font-weight:600;font-size:14px;padding:8px 10px;border-radius:10px}
.nav-links a:hover{background:#f2f2f2}

.nav-right{display:flex;align-items:center;gap:8px}
.btn{border:1px solid var(--border);background:var(--surface);padding:10px 14px;border-radius:12px;cursor:pointer;font:600 14px/1 Inter;color:var(--text);box-shadow:var(--shadow-s)}
.btn:hover{border-color:#d1d5db}
.btn.primary{background:var(--accent);color:#fff;border-color:transparent}
.btn.primary:hover{background:var(--accent-600)}

/* Cart icon + badge */
.icon-btn{position:relative;display:grid;place-items:center;width:40px;height:40px;border:1px solid var(--border);border-radius:12px;background:var(--surface);cursor:pointer}
.icon{width:20px;height:20px}
.badge{position:absolute;top:-6px;right:-6px;background:var(--accent);color:#fff;min-width:20px;height:20px;border-radius:999px;display:grid;place-items:center;font:700 12px Inter;box-shadow:var(--shadow-s)}
.card-title{
    float: left;
    font-weight: 600;
}

/* Mobile hamburger */
.hamburger{display:none;width:40px;height:40px;border:1px solid var(--border);border-radius:12px;background:var(--surface)}
.hamburger span{display:block;width:20px;height:2px;background:#111;margin:4px auto;border-radius:2px}

/* Mobile menu drawer (top) */
.mobile-menu{display:none;grid-template-columns:1fr;gap:8px;padding:10px 24px 16px;border-bottom:1px solid var(--border);background:var(--surface)}
.mobile-menu a{padding:10px 12px;border-radius:10px;text-decoration:none;color:var(--text);font-weight:600}
.mobile-menu a:hover{background:#f2f2f2}

/* ================= HERO ================= */
.hero{display:grid;grid-template-columns:1.2fr .8fr;gap:32px;align-items:center;padding:28px 24px 8px}
.hero-card{
    background:#00000036;
    border-radius:var(--radius-xl);
    box-shadow:var(--shadow-m);
    padding:32px
}
.eyebrow{font:600 12px/1 Inter;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
h1{font-family:Poppins,Inter,sans-serif;font-weight:700;letter-spacing:.2px;line-height:1.15;margin:.5rem 0 1rem;font-size:36px; color: white;}
.hero p{color: white; margin:0 0 20px}
.tagline{display:flex;gap:8px;flex-wrap:wrap;margin:16px 0}
.chip{border:1px solid var(--border);padding:6px 10px;border-radius:999px;font-size:12px;color:var(--muted);background:#fff}
.hero-media{display:flex;align-items:center;justify-content:center}
.logo-card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-xl);box-shadow:var(--shadow-m);padding:24px;display:grid;place-items:center}
.logo-card img{width:min(420px,100%);height:auto}

/* Full-screen background for the top section */
.hero-viewport{
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: start !important;
  padding-top: clamp(16px, 6vh, 72px);
  background: url("/assets/img/bg.png") center / cover no-repeat;
}

/* Add an overlay to control opacity */
.hero-viewport::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/bg.png") center / cover no-repeat;
  opacity: 0.4; /* <<< Adjust this value between 0 (invisible) and 1 (fully visible) */
  z-index: 0;
}

/* Keep hero content above the overlay */
.hero-viewport > .hero{
  position: relative;
  z-index: 1;
}

/* Make the hero text block hug the top-left and keep readable width */
.hero-card{
  align-self: start;    /* top */
  justify-self: start;  /* left */
  text-align: left;
  max-width: 56ch;
}

/* Ensure the anchor doesn’t hide under sticky header when jumping to #top */
#top { scroll-margin-top: 80px; }

/* Optional: on large screens you can enable parallax-ish effect */
@media (min-width: 1024px){
  .hero-viewport{
    background-attachment: scroll; /* change to 'fixed' if you want parallax */
  }
}

/* Product */
.section{padding:16px 24px}
.section h2{font-family:Poppins,Inter,sans-serif;font-weight:700;margin:0 0 8px;font-size:28px}
.section p.lead{color:var(--muted);margin:0 0 24px}
.product{display:grid;grid-template-columns:1fr 1fr;gap:32px}
.frame{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-xl);box-shadow:var(--shadow-m);padding:18px;display:grid;place-items:center}
.product img{width:min(520px,50%);height:auto;display:block}
.panel{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-xl);box-shadow:var(--shadow-m);padding:28px}
.price{font:700 28px/1 Poppins;margin:0 0 10px}
.subtle{color:var(--muted);font-size:14px}
.row{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin:14px 0}
.pill{padding:10px 14px;border-radius:999px;border:1px solid var(--border);background:#fff;font:600 14px/1 Inter;cursor:pointer}
.pill[aria-pressed="true"]{border-color:currentColor;box-shadow:0 0 0 3px color-mix(in oklab, currentColor 20%, transparent)}
.pill.mild{color:var(--green)} .pill.hot{color:var(--orange)} .pill.xhot{color:var(--red)} .pill.black{color:var(--black)}
.qty{display:flex;align-items:center;border:1px solid var(--border);border-radius:12px;overflow:hidden}
.qty button{all:unset;display:grid;place-items:center;width:36px;height:36px;cursor:pointer}
.qty input{width:48px;text-align:center;border:0;font:600 14px Inter;background:transparent}
.note{font-size:13px;color:var(--muted)}

.features{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:12px}
.feature{background:var(--surface);border:1px solid var(--border);border-radius:16px;padding:16px}
.feature h3{font:600 14px Inter;margin:0 0 4px}
.feature p{margin:0;color:var(--muted);font-size:13px}

/* Footer */
footer{border-top:1px solid var(--border);margin-top:40px}
.footer-inner{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;padding:24px}
.copyright{color:var(--muted);font-size:14px}

/* Cart Drawer */
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.28);opacity:0;pointer-events:none;transition:opacity .25s;z-index:40}
.overlay.show{opacity:1;pointer-events:auto}
.cart{position:fixed;top:0;right:-420px;width:min(420px,92%);height:100dvh;background:var(--surface);border-left:1px solid var(--border);box-shadow:var(--shadow-m);transition:transform .25s,right .25s;z-index:50;display:flex;flex-direction:column}
.cart.open{right:0}
.cart header{position:sticky;top:0;background:var(--surface);border-bottom:1px solid var(--border);padding:14px 16px;display:flex;justify-content:space-between;align-items:center}
.cart main{flex:1;overflow:auto;padding:12px 16px}
.cart footer{border-top:1px solid var(--border);padding:14px 16px}

.cart-item{display:grid;grid-template-columns:56px 1fr auto;gap:12px;align-items:center;padding:8px 0;border-bottom:1px solid #f1f5f9}
.cart-item img{width:56px;height:auto;border-radius:12px;border:1px solid #eee}
.right{text-align:right}
.x{background:none;border:none;font-weight:700;font-size:18px;cursor:pointer}
.small{font-size:12px;color:var(--muted)}

/* lightweight grid for the shop cards */
.catalog{padding:16px 24px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{background:var(--surface,#fff);border:1px solid var(--border,#e5e7eb);border-radius:20px;box-shadow:var(--shadow-m,0 10px 30px rgba(0,0,0,.08));padding:16px;text-align:center}
.card img{width:min(120px,100%);height:auto;display:block;margin:0 auto}
.tag{display:inline-block;margin-top:10px;padding:6px 10px;border-radius:999px;font-weight:700;font-size:12px;border:1px solid var(--border,#e5e7eb)}
.tag.mild{color:#22c55e}.tag.hot{color:#f59e0b}.tag.xhot{color:#ef4444}
.card a{display:block;text-decoration:none;color:inherit}
@media (max-width:980px){.grid{grid-template-columns:1fr 1fr}}
@media (max-width:640px){.grid{grid-template-columns:1fr}}

/* Responsive */
@media (max-width:980px){
  .hero{grid-template-columns:1fr;gap:20px}
  .product{grid-template-columns:1fr}
}
@media (max-width:720px){
    .nav-links{display:none}
    .hamburger{display:grid;place-items:center}
    .mobile-menu.show{display:grid}
}
