:root{
  /* theme */
  --bg:#fffaf7;
  --card:#ffffff;
  --ink:#222222;
  --muted:#6b6b6b;
  --brand:#ed196f;   /* unified brand pink on hover/active */
  --brand-2:#8b5e83; /* mauve */
  --accent:#f7d7e6;  /* pink tint */
  --line:#eee6e0;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --radius:18px;
  --radius-lg:28px;
  --maxw:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial,"Noto Sans","Apple Color Emoji","Segoe UI Emoji";
  line-height:1.6;
}

/* ======= Nav (sticky header) ======= */
.nav-wrap{
  position:sticky; top:0; z-index:2000; 
  backdrop-filter:saturate(180%) blur(8px);
  background:rgba(255,250,247,.85); border-bottom:1px solid var(--line);
}
.nav{max-width:var(--maxw); margin:auto; display:flex; align-items:center; gap:24px; padding:14px 20px}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--ink)}

/* Image logo */
.logo-img{
  width:100px; height:auto; display:block; object-fit:contain; box-shadow:var(--shadow);
}

/* footer logo */
.footer-logo {
  width: 18px; 
  display: block;
}
@media (max-width:720px){ .logo-img{ width:65px } }

/* legacy circle (kept for footer brand) */
.logo{
  width:36px; height:36px; border-radius:50%;
  background:linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow:var(--shadow)
}

.brand-name{font-family:"Playfair Display",serif; font-weight:700; letter-spacing:.3px; font-size:1.25rem}
.nav ul{display:flex; gap:18px; list-style:none; margin:0; padding:0}
.nav a{color:var(--ink); text-decoration:none; font-weight:500}
.nav a:hover{color:var(--brand)}
.nav a.active{color:var(--brand)}
.spacer{flex:1}
.cta{appearance:none; border:0; background:var(--ink); color:#fff; padding:10px 16px; border-radius:999px; font-weight:600}
.cta:hover{opacity:.9}
.menu-btn{display:none}

/* ====== Dropdowns (About / Products) ====== */
.nav .dropdown-toggle{
  appearance:none; background:transparent; border:0; padding:0; margin:0;
  font:inherit; font-weight:500; color:var(--ink);
  line-height:1; display:inline-flex; align-items:center; gap:6px; cursor:pointer; text-decoration:none;
}
.nav .dropdown-toggle:hover,
.nav .dropdown-toggle[aria-expanded="true"]{ color:var(--brand); }
.nav .caret{ font-size:.85em; transform:translateY(-1px); }
.nav li{ position:relative; }

/* hidden by default; visible when aria-expanded="true" */
.dropdown-toggle[aria-expanded="false"] + .dropdown{ display:none; }
.dropdown-toggle[aria-expanded="true"]  + .dropdown{ display:block; }

.dropdown{
  position:absolute; left:0; top:calc(100% + 10px);
  min-width:220px; background:#fff; border:1px solid var(--line);
  border-radius:12px; box-shadow:var(--shadow); padding:8px; z-index:2050;
}
.dropdown a{
  display:block; padding:10px 12px; border-radius:10px;
  color:var(--ink); text-decoration:none; font-weight:500;
}
.dropdown a:hover{ background:#fff6fb; color:var(--brand); }

/* desktop-only dropdown panels */
@media (max-width:1023px){
  .has-dropdown .dropdown{ display:none !important; }
}


/* ======= Mobile drawer (fixed & scrollable, above all) ======= */
body.no-scroll { overflow: hidden; }

.mobile-menu{
  position: fixed;
  left: 0; right: 0;
  top: var(--nav-h, 60px);  /* set via JS */
  bottom: 0;
  z-index: 9999;            /* above hero slider */
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 12px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open{ display:block; }
.mobile-menu a{display:block; padding:10px 0; color:var(--ink); text-decoration:none}
.mobile-menu a:hover{color:var(--brand)}

/* optional dim backdrop behind drawer */
.mobile-menu::before{
  content:"";
  position: fixed;
  inset: 0;
  top: calc(var(--nav-h, 60px));
  z-index: -1;
  background: rgba(0,0,0,.25);
}

/* ======= Hero (2 columns) ======= */
.hero{
  max-width:var(--maxw); margin:32px auto 0; padding:24px 20px 0;
  display:grid; grid-template-columns:1.15fr .85fr; gap:28px; align-items:center;
}
.hero-card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg); box-shadow:var(--shadow); overflow:hidden; position:relative}
.hero-img{
  aspect-ratio:16/10; width:100%;
  background:linear-gradient(135deg,var(--accent),#fff), url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
}

/* ===== Hero Slider ===== */
.hero-slider{ margin-top:24px }
.hsr{
  position:relative; overflow:hidden; border-radius:18px;
  background:#000; color:#fff; min-height:56vh; box-shadow:var(--shadow);
}
.hsr-slide{
  position:absolute; inset:0; display:grid; place-items:center;
  background-image:var(--bg); background-size:cover; background-position:center;
  opacity:0; transform:scale(1.02);
  transition:opacity .6s ease, transform .6s ease;
}
.hsr-slide::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.35));
}
.hsr-slide.is-active{ opacity:1; transform:scale(1) }

.hsr-inner{ position:relative; z-index:1; padding:24px; text-align:center; max-width:900px }
.hsr .lead{ color:#f5eef3 }
.hsr-actions{ display:flex; gap:12px; justify-content:center; margin-top:12px }
.hsr .btn{ padding:12px 18px; border-radius:999px; font-weight:700 }
.hsr .btn.ghost{ background:transparent; border:1px solid rgba(255,255,255,.7); color:#fff }
.hsr .btn.ghost:hover{ background:rgba(255,255,255,.12) }

/* controls */
.hsr-ctrl{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:999px; border:1px solid rgba(255,255,255,.6);
  background:rgba(0,0,0,.25); color:#fff; font-size:22px; cursor:pointer; z-index:2;
  display:grid; place-items:center;
}
.hsr-ctrl:hover{ background:rgba(0,0,0,.45) }
.hsr-ctrl.prev{ left:12px } .hsr-ctrl.next{ right:12px }

/* dots */
.hsr-dots{
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:14px; display:flex; gap:8px; z-index:2;
}
.hsr-dots button{
  width:10px; height:10px; border-radius:999px; border:0; cursor:pointer;
  background:rgba(255,255,255,.5);
}
.hsr-dots button.is-active{ background:#fff }

/* autoplay toggle */
.hsr-autoplay{ position:absolute; right:12px; bottom:12px; z-index:2 }
.hsr-autoplay .toggle{
  padding:8px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.6);
  background:rgba(0,0,0,.25); color:#fff; font-weight:600; cursor:pointer;
}
.hsr-autoplay .toggle:hover{ background:rgba(0,0,0,.45) }

/* No rounded corners for this hero slider */
.hero-slider .hsr{ border-radius:0 !important; }
.hero-slider .hsr-slide,
.hero-slider .hsr-slide::before{ border-radius:0 !important; }
@media (max-width: 720px){
  .hero-slider .hsr{ border-radius:0 !important; }
}
.hero-slider .hsr{ box-shadow:none; }

@media (max-width: 720px){
  .hsr{ min-height:52vh; border-radius:14px }
  .hsr-ctrl{ display:none } /* swipe + dots */
  .hsr-inner{ padding:18px }
  .hsr-actions{ flex-wrap:wrap }
}

.ribbon{position:absolute; top:16px; left:16px; background:var(--ink); color:#fff; padding:6px 10px; border-radius:999px; font-size:.8rem; font-weight:600}
.hero-copy{padding:24px}
.eyebrow{color:#db1d4e; font-weight:600; letter-spacing:.1em; text-transform:uppercase; font-size:.8rem}
h1{font-family:"Playfair Display",serif; font-size:clamp(1.8rem,3vw + .5rem,3rem); line-height:1.2; margin:.35em 0}
.lead{color:var(--muted); max-width:45ch;}
.btnrow{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{appearance:none; border:1px solid var(--ink); background:var(--ink); color:#fff; padding:12px 16px; border-radius:999px; font-weight:600; text-decoration:none}
.btn.alt{background:transparent; color:var(--ink)}
.statbar{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:18px}
.stat{background:var(--bg); border:1px dashed var(--line); border-radius:14px; padding:12px; text-align:center}
.stat b{font-size:1.25rem}

/* ======= Sections / Grid ======= */
.section{max-width:var(--maxw); margin:48px auto; padding:0 20px}
.section header{display:flex; align-items:end; justify-content:space-between; gap:16px; margin-bottom:16px}
.section h2{font-family:"Playfair Display",serif; font-size:2rem; margin:0}
.grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px}

/* Safe sizing */
.grid { align-items: stretch; }
.grid > * { min-width: 0; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid .card { height: 100%; }
.grid > * { margin: 0 !important; }

.card{background:var(--card); border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; display:flex; flex-direction:column}
.thumb{aspect-ratio:4/5; width:100%; background:#f7f2f0 center/cover no-repeat}
.thumb-about {
  width: 100%;
  aspect-ratio: 4/5;       /* Portrait – ideal for hair/beauty */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.thumb-about{
  width: 100%;
  aspect-ratio: 4/5;          /* less height, banner style */
  max-height: 450px;             /* limit height on large screens */
  background-size: cover;
  background-repeat: no-repeat;

  /* Move focus lower (try 60%–85%) */
  background-position: center 30%;
}
.thumb-1{background-image:url('https://images.unsplash.com/photo-1563170351-be82bc888aa4?q=80&w=1200&auto=format&fit=crop')}
.thumb-2{background-image:url('https://images.unsplash.com/photo-1611930022073-b7a4ba5fcccd?q=80&w=1200&auto=format&fit=crop')}
.thumb-3{background-image:url('https://images.unsplash.com/photo-1611930021949-b6b68ec9c5a5?q=80&w=1200&auto=format&fit=crop')}
.thumb-4{background-image:url('https://images.unsplash.com/photo-1562887089-1a1d09b1a712?q=80&w=1200&auto=format&fit=crop')}
.card .body{padding:14px}
.price{display:flex; gap:8px; align-items:baseline}
.price b{font-size:1.1rem}
.chip{background:var(--accent); color:#6b2e51; font-weight:600; font-size:.8rem; padding:4px 8px; border-radius:999px}
.add{margin-top:auto; padding:12px 14px; border:0; background:var(--ink); color:#fff; font-weight:600}

/* ======= Collection Banner ======= */
.banner{
  border-radius:var(--radius-lg); overflow:hidden; background:linear-gradient(100deg,var(--accent),#fff6fb);
  border:1px solid var(--line); box-shadow:var(--shadow);
  display:grid; grid-template-columns:1.1fr .9fr;
}
.banner-copy{padding:28px}
.banner-img{min-height:260px; background:url('https://images.unsplash.com/photo-1512203492609-8f5d03ff87cc?q=80&w=1920&auto=format&fit=crop') center/cover}

/* ======= About Split ======= */
.split{display:grid; grid-template-columns:1fr 1fr; gap:24px}
.about-img{
  border-radius:var(--radius); min-height:320px; border:1px solid var(--line);
  background:url('https://images.unsplash.com/photo-1512203492609-8f5d03ff87cc?q=80&w=1920&auto=format&fit=crop') center/cover;
}
.kpi{display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:12px}
.kpi .box{background:var(--card); border:1px solid var(--line); border-radius:14px; padding:14px; text-align:center}

/* ======= Contact ======= */
form{display:grid; gap:12px}
input,textarea{padding:12px 14px; border-radius:12px; border:1px solid var(--line); background:#fff}
label{font-weight:600; font-size:.92rem}
.note{font-size:.9rem; color:var(--muted)}
.map-embed{border:0; width:100%; height:220px; border-radius:12px}
.small{
  font-size:.8rem;
  color:var(--muted);
}
.xsmall{
  font-size:.75rem;
  color:var(--muted);
}

/* ======= Footer ======= */
footer{margin-top:64px; border-top:1px solid var(--line); background:#fff}
.foot{max-width:var(--maxw); margin:auto; padding:28px 20px; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:24px}
.foot a{color:var(--muted); text-decoration:none}
.foot a:hover{color:var(--brand)}
.copyright{border-top:1px solid var(--line); padding:14px 20px; text-align:center; color:var(--muted)}

/* ======= Responsive ======= */
@media (max-width:1024px){
  .hero{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(3,1fr)}
  .foot{grid-template-columns:1fr 1fr 1fr}
  .banner{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}
@media (max-width:720px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .nav ul{display:none}
  .menu-btn{
    display:inline-flex; align-items:center; justify-content:center;
    width:40px; height:40px; border-radius:10px; border:1px solid var(--line); background:#fff
  }
  .statbar{grid-template-columns:1fr 1fr}
}

/* ==== Shop Grid === */
.section .shop-grid{margin-top:16px}
.shop-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:1024px){ .shop-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:680px){ .shop-grid{grid-template-columns:1fr} }

.shop{
  display:flex; flex-direction:column; background:#fff; border:1px solid var(--line);
  border-radius:18px; box-shadow:var(--shadow); overflow:hidden;
}
.shop .bd{padding:18px 18px 14px}
.shop h4{ margin:0 0 8px 0; font-size:1.06rem; line-height:1.3; letter-spacing:.2px; }
.shop .meta{ color:var(--muted); font-size:.95rem; line-height:1.5; margin:0 0 10px 0; }
.shop .flag{
  display:inline-block; margin:0 0 10px 0; font-size:.82rem;
  background:#f5f1ff; border:1px solid #e8ddff; border-radius:999px; padding:3px 10px;
}
.shop .actions{ display:flex; flex-wrap:wrap; gap:10px 12px; margin-top:8px; }
.shop .btn-link{
  display:inline-flex; align-items:center; justify-content:center; text-decoration:none;
  border:1px solid var(--brand); color:var(--brand); background:#fff;
  padding:10px 14px; border-radius:999px; font-weight:600; line-height:1;
}
.shop .btn-link:hover{ background:var(--accent) }

/* Form bits */
.form-row{display:flex; gap:16px; flex-wrap:wrap; align-items:flex-end}
.form-row > div{min-width:220px; flex:1}
label{display:block; font-weight:600; font-size:.92rem; margin:0 0 6px 0; color:var(--ink)}
select{
  width:100%; padding:12px 44px 12px 14px; border-radius:12px; border:1px solid var(--line);
  background:#fff; color:var(--ink); font:inherit; line-height:1.4; appearance:none;
  -webkit-appearance:none; -moz-appearance:none; transition:border-color .2s, box-shadow .2s, background-color .2s;
  background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7.5l4.5 5 4.5-5' stroke='%238b5e83' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; background-size:20px 20px;
}
select:hover{border-color:#e3d8d2}
select:focus{ outline:none; border-color:var(--brand); box-shadow:0 0 0 3px rgba(237,25,111,.18); }
select:disabled{ background:#faf7f4; color:#a1a1a1; cursor:not-allowed; }

input, textarea, select{font-size:1rem}

/* ===== Language Switch (CSS-only) ===== */
.lang-switch{ position:relative; display:inline-block; margin-left:8px; }
.lang-current{
  display:inline-flex; align-items:center; gap:6px; padding:10px 12px; border:1px solid var(--line);
  border-radius:12px; background:#fff; color:var(--ink); font-weight:600; cursor:pointer; user-select:none;
  transition:border-color .2s, box-shadow .2s;
}
.lang-current:hover{ border-color:#e3d8d2; }
.lang-switch:focus-within .lang-current{ border-color:var(--brand); box-shadow:0 0 0 3px rgba(237,25,111,.18); }
.lang-menu{
  position:absolute; right:0; top:calc(100% + 8px); min-width:220px; background:#fff; border:1px solid var(--line);
  border-radius:12px; box-shadow:var(--shadow); padding:8px; display:none; z-index:60;
}
.lang-switch:focus-within .lang-menu{ display:block; }
.lang-menu button{
  width:100%; text-align:left; background:#fff; border:0; cursor:pointer; padding:10px 12px; border-radius:10px; font-weight:500; color:var(--ink);
}
.lang-menu button:hover{ background:#fff6fb; }
.nav{ position:relative; z-index:50 }
.lang-switch{ position:relative; z-index:60 }


/* --- Language dropdown: ensure stacked items regardless of element type --- */
.lang-menu { 
  display: none; position: absolute; right: 0; top: calc(100% + 8px);
  min-width: 220px; background:#fff; border:1px solid var(--line);
  border-radius:12px; box-shadow:var(--shadow); padding:8px; z-index: 60;
}

/* show on focus (CSS-only) */
.lang-switch:focus-within .lang-menu { display: block; }

/* reset lists if you use <ul><li> */
.lang-menu ul { list-style: none; margin: 0; padding: 0; }
.lang-menu li { display: block; }

/* stack links OR buttons as full-width rows */
.lang-menu a,
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none; /* for <a> */
}
.lang-menu a:hover,
.lang-menu button:hover { background: #fff6fb; color: var(--brand); }

/* keep the trigger styled like a pill */
.lang-current{
  display:inline-flex; align-items:center; gap:6px; padding:10px 12px; border:1px solid var(--line);
  border-radius:12px; background:#fff; color:var(--ink); font-weight:600; cursor:pointer; user-select:none;
}


@media (max-width: 1023px){ .nav > ul{ display:none; } .menu-btn{ display:inline-flex; } }
@media (min-width: 1024px){
  .nav > ul{ display:flex; }
  .menu-btn{ display:none; }
  .mobile-menu{ display:none !important; }
}

/* ===== Cookie UI (balloon + panel) ===== */
.cookie-wrap{
  position:fixed; left:0; right:0; bottom:16px;
  display:flex; justify-content:center; z-index:9999; pointer-events:none;
}
.cookie-balloon{
  max-width:980px; width:clamp(280px, 92vw, 980px); padding:16px; border-radius:16px;
  background:rgba(255,255,255,.7); backdrop-filter:blur(10px); border:1px solid var(--line);
  box-shadow:var(--shadow); display:flex; gap:14px; align-items:flex-start; pointer-events:auto;
}
.cookie-copy p{ margin:0; color:#2b2230; }
.cookie-actions{ display:flex; gap:10px; flex:0 0 auto; }
.cookie-actions .btn{ white-space:nowrap; }
.cookie-actions .btn.ghost{ border:1px solid var(--line); background:#fff }
@media (max-width:720px){
  .cookie-balloon{ flex-direction:column; gap:12px; padding:14px; border-radius:14px }
}
.cookie-panel{
  position:fixed; inset:0; display:none; z-index:10000; background:rgba(0,0,0,.35); backdrop-filter:blur(2px); pointer-events:auto;
}
.cookie-panel[aria-hidden="false"]{ display:block; }
.cookie-panel-inner{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:min(720px, 92vw); background:#fff; border:1px solid var(--line); border-radius:16px; box-shadow:var(--shadow);
  padding:20px 16px 16px;
}
.cookie-panel-inner h3{ margin:0 0 8px 0 }
.cookie-panel-inner .note{ color:var(--muted) }
.cookie-opt{
  display:grid; grid-template-columns:1fr auto; align-items:center; gap:12px; padding:12px 0; border-bottom:1px solid #f0e9e3;
}
.cookie-opt:last-of-type{ border-bottom:0 }
.cookie-opt .left b{ display:block; margin-bottom:4px }
.cookie-opt .note{ font-size:.95rem }
.cookie-panel-actions{ margin-top:14px; display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; }
.cookie-panel-close{
  position:absolute; right:10px; top:10px; width:36px; height:36px; border-radius:999px; border:1px solid var(--line); background:#fff; cursor:pointer;
}
.cookie-panel .chip{
  display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px; background:#fff6fb; border:1px solid #efdbe6; font-size:.85rem; color:#6b2e51;
}
.cookie-wrap.is-hidden{ display:none; }
.cookie-wrap .btn { background:#2b2230; color:#fff !important; border:1px solid var(--line); }
.cookie-wrap .btn:hover { opacity:.95; }
.cookie-wrap .btn.ghost { background:#fff !important; color:#2b2230 !important; border:1px solid var(--line); }
.cookie-wrap .btn.ghost:hover { background:#fff6fb !important; }
.cookie-panel .btn { background:#2b2230; color:#fff !important; border:1px solid var(--line); }
.cookie-panel .btn.ghost { background:#fff !important; color:#2b2230 !important; border:1px solid var(--line); }
.cookie-balloon{ position:relative; }
.cookie-balloon-close{
  position:absolute; right:8px; top:8px; width:32px; height:32px; display:inline-grid; place-items:center;
  border-radius:999px; border:1px solid var(--line); background:#fff; color:#2b2230; cursor:pointer;
}
.cookie-balloon-close:hover{ background:#fff6fb; }

/* Ensure generic image rules don't trump the footer logo */
footer .brand img.footer-logo {
  height: 88px !important;  /* adjust to taste */
  width: auto !important;
  max-width: none;
  max-height: none;
  display: block;
  line-height: 0;
}

/* Make form controls full width */
form > div > input,
form > div > textarea,
form button.btn {
  width: 100%;
}

/* ให้ปุ่มเป็น block เพื่อกินความกว้าง */
form button.btn {
  display: block;
}
/* Partner / Shop cover image */
.shop .thumb{
  /* aspect-ratio: 4/3;  // uncomment if you want taller */
}
.shop-img{
  width: 100%;
  /*height: 220px;*/      /* adjust */
  object-fit: cover;  /* important */
  display: block;
}
/* Table wrapper */
.table-wrap {
  width: 100%;
  overflow-x: auto; /* mobile safety */
}

/* Base table */
.table {
  width: 100%;
  border-collapse: collapse;
}

/* Header & cells */
.table th,
.table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

/* Header style */
.table thead th {
  font-weight: 600;
  border-bottom: 2px solid #e5e5e5;
  white-space: nowrap;
}

/* Row separation */
.table tbody tr + tr td {
  border-top: 1px solid #eee;
}
.filter-row {
    display: flex;
    gap: 12px;
}

.filter-country {
    flex: 1;
}

.filter-search {
    flex: 2;
}
/*.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}*/
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/* ===== Blog cards: equal height + text clamp ===== */
.blog-section .grid.cols-3 { align-items: stretch; }
.blog-section .card { height: 100%; }

/* Make body take remaining height so button can stick to bottom */
.blog-section .card .body{
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
}

/* Fixed image height for consistent card header */
.blog-section .shop-img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

/* Clamp title + excerpt to keep cards same height */
.blog-section .card h3{
  margin:0 0 8px 0;
  line-height:1.25;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}

.blog-section .card p.note{
  margin:0 0 12px 0;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
}

/* Push button to bottom */
.blog-section .card .btn{
  margin-top:auto;
  align-self:flex-start;
}
@media (max-width:720px){
  .blog-section .shop-img{ height:200px; }
}
.reviews-grid{
  display: grid;
  gap: 16px;

  /* Force ONLY 3 columns always */
  grid-template-columns: repeat(3, minmax(0, 1fr));

  /* This stops grid items from forcing container to grow */
  max-width: 100%;
  overflow: hidden;
}

.review-card{
  border-radius: 16px;
  overflow: hidden;
  /*background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);*/

  /* Ensure card never overflows column */
  width: 100%;
}

.review-card img{
  /* THIS IS CRITICAL: image will scale to column */
  width: 100%;
  height: auto;

  display: block;

  /* Prevent image from pushing outside */
  max-width: 100%;

  /* Fit nicely inside card */
  object-fit: contain;
}
/* Make buttons inherit nav menu font style */
.card .btn{
  font-family: inherit;   /* use Poppins like body */
  font-weight: 500;       /* same as nav menu */
  letter-spacing: .3px;   /* optional to match menu feel */
}

/* Hide desktop UL on mobile as you already do; keep your breakpoint logic */
.desktop-nav { display:flex; gap:18px; list-style:none; margin:0; padding:0; }
@media (max-width:1023px){
  .desktop-nav { display:none; }
}

/* ===== Mobile Nav: overlay + right drawer ===== */
.mnav{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.mnav.open{ display:block; }

.mnav__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.28);
}

.mnav__panel{
  position:absolute;
  right:0; top:0; bottom:0;
  width:min(360px, 92vw);
  background:#fff;
  border-left:1px solid var(--line);
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}

.mnav__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}
.mnav__brand{ display:flex; align-items:center; text-decoration:none; }
.mnav__logo{ height:34px; width:auto; display:block; object-fit:contain; }

.mnav__close{
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-size:18px;
}

.mnav__body{
  padding:10px 16px 18px;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

.mnav__link{
  display:block;
  padding:12px 0;
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
  border-bottom:1px solid #f3ede7;
}
.mnav__link:hover{ color:var(--brand); }

/* Accordion */
.mnav__acc{ border-bottom:1px solid #f3ede7; }
.mnav__accbtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  border:0;
  background:transparent;
  cursor:pointer;
  font:inherit;
  font-weight:700;
  color:var(--ink);
}
.mnav__chev{ transition: transform .2s ease; }
.mnav__accbtn[aria-expanded="true"] .mnav__chev{ transform: rotate(180deg); }

.mnav__accpanel{
  padding:2px 0 12px;
}
.mnav__sublink{
  display:block;
  padding:10px 0 10px 14px;
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
}
.mnav__sublink:hover{ color:var(--brand); }

/* Keep your existing body.no-scroll behavior */
body.no-scroll { overflow:hidden; }

/* Desktop: 3 columns */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Tablet (optional but recommended) */
@media (max-width: 1024px){
  .blog-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 720px){
  .blog-grid{
    grid-template-columns: 1fr;
  }
}

.thumb-product {
  width: 100%;
  height: 100%;
  /* min-height: 360px;       adjust to your layout 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;*/
}
