:root{
  --bg: #ffffff;        /* white background */
  --paper: rgba(255,255,255,.95);
  --paper-2: rgba(255,255,255,.85);
  --stroke: rgba(0,0,0,.10);
  --text: #000000;      /* black text */
  --muted: rgba(0,0,0,.70);
  --brand: #18b86b;     /* pistachio green */
  --brand-2: #0f8a52;   /* deeper green */
  --accent: #31d39a;    /* light green accent */
  --shadow: 0 12px 40px rgba(0,0,0,.10);
  --shadow-2: 0 8px 24px rgba(0,0,0,.08);
  --radius: 16px;
  --radius-2: 20px;
  --ring: 0 0 0 4px rgba(24,184,107,.20);
}

html{ scroll-behavior: smooth; }
body{
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.bg-ambient{
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.bg-ambient::before{
  content:"";
  position:absolute;
  inset:-40px;
  opacity:.45;
  pointer-events:none;
  background:
    linear-gradient(135deg, rgba(24,184,107,.08), rgba(0,0,0,0) 55%),
    radial-gradient(circle at 20% 20%, rgba(24,184,107,.10), rgba(255,255,255,0) 60%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.05), rgba(255,255,255,0) 60%);
}
.bg-ambient::after{
  /* subtle baklava-cut diamond pattern */
  content:"";
  position:absolute;
  inset:0;
  opacity:.06;
  pointer-events:none;
  background-image:
    linear-gradient(45deg, rgba(0,0,0,.45) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(0,0,0,.45) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: 0 0, 22px 22px;
  mix-blend-mode: multiply;
}
.blob{
  position: absolute;
  filter: blur(26px);
  opacity: .65;
  transform: translateZ(0);
  border-radius: 999px;
}
.blob-1{
  width: 560px; height: 560px;
  left: -140px; top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(24,184,107,.15) 0%, rgba(255,255,255,.0) 68%);
}
.blob-2{
  width: 640px; height: 640px;
  right: -220px; bottom: -260px;
  background: radial-gradient(circle at 60% 40%, rgba(0,0,0,.08) 0%, rgba(255,255,255,.0) 70%);
}
.grain{
  position:absolute; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: .05;
  mix-blend-mode: multiply;
  pointer-events:none;
}

/* Navbar */
.nav-glass{
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.92));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.nav-glass::after{
  /* kilim-esque border strip (white/green/black only) */
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 10px;
  opacity: .55;
  background:
    linear-gradient(45deg, rgba(0,0,0,.35) 25%, transparent 25%, transparent 50%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.35) 75%, transparent 75%, transparent),
    linear-gradient(-45deg, rgba(24,184,107,.55) 25%, transparent 25%, transparent 50%, rgba(24,184,107,.55) 50%, rgba(24,184,107,.55) 75%, transparent 75%, transparent);
  background-size: 16px 10px;
}
.navbar .nav-link{
  color: rgba(20,18,23,.78);
  border-radius: 999px;
  padding: .5rem .85rem;
}
.navbar .nav-link:hover{ background: rgba(255,255,255,.60); }
.navbar .nav-link.is-active{
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow-2);
}
.navbar-brand{ 
  letter-spacing: .2px; 
  padding: 0.25rem 0;
}
.navbar-brand:hover{
  opacity: 0.9;
}
.brand-mark{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, #fff 0%, rgba(255,255,255,.3) 55%), linear-gradient(135deg, rgba(24,184,107,.95), rgba(15,138,82,.92));
  color: #000;
  box-shadow: 0 8px 20px rgba(24,184,107,.20);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.brand-mark-sm{ width: 34px; height: 34px; border-radius: 12px; }
.brand-logo{
  width: 120px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.1));
}
.brand-logo-sm{
  width: 80px;
  max-height: 35px;
}
.brand-text{ display:flex; flex-direction:column; line-height: 1.05; }
.brand-name{
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.brand-sub{
  font-size: .78rem;
  color: rgba(0,0,0,.60);
  text-transform: uppercase;
  letter-spacing: .16em;
}

/* Buttons */
.btn-brand{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 0;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(24,184,107,.25);
}
.btn-brand:hover{ 
  filter: brightness(1.05); 
  box-shadow: 0 12px 32px rgba(24,184,107,.30);
  transform: translateY(-1px);
}
.btn-soft{
  border-color: rgba(0,0,0,.15) !important;
  background: rgba(255,255,255,.90) !important;
  color: #000 !important;
}
.btn-soft:hover{ background: rgba(255,255,255,1) !important; border-color: rgba(0,0,0,.25) !important; }

/* Hero */
.hero{ 
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255,255,255,.98) 100%);
}
.hero-main{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-image-wrapper{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
}
.hero-baklava-img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: saturate(1.15) contrast(1.08);
}
.hero-badge{
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,.95);
  border: 2px solid rgba(24,184,107,.30);
  padding: .6rem 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--brand-2);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
}
.hero-badge i{
  font-size: 1.1rem;
}
.hero-content{
  padding-left: 1.5rem;
}
.hero-location{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(24,184,107,.12);
  border-radius: 999px;
  color: var(--brand-2);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.hero-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #000;
  margin-bottom: 1.2rem;
}
.hero-subtitle{
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
  margin-bottom: 2rem;
}
.hero-features{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-feature{
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
}
.hero-feature i{
  font-size: 1.5rem;
  color: var(--brand);
  margin-top: .2rem;
}
.hero-feature strong{
  display: block;
  color: #000;
  font-size: .95rem;
  margin-bottom: .2rem;
}
.hero-feature span{
  display: block;
  color: rgba(0,0,0,.65);
  font-size: .85rem;
}
.hero-actions{
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-lg{
  padding: .85rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
}
.btn-outline-brand{
  border: 2px solid var(--brand);
  background: transparent;
  color: var(--brand);
}
.btn-outline-brand:hover{
  background: var(--brand);
  color: #fff;
}
@media (max-width: 991.98px){
  .hero-main{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-content{
    padding-left: 0;
    text-align: center;
  }
  .hero-features{
    grid-template-columns: 1fr;
  }
  .hero-actions{
    justify-content: center;
  }
}
.badge-soft{
  display:inline-flex;
  align-items:center;
  gap: .35rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(24,184,107,.25);
  background: rgba(255,252,248,.85);
  color: rgba(0,0,0,.75);
  font-weight: 500;
}
.hero-title{
  font-family: "Playfair Display", serif;
  letter-spacing: -0.02em;
}
.accent{
  background: linear-gradient(90deg, rgba(24,184,107,.25), rgba(15,138,82,.15));
  border-radius: .5rem;
  padding: 0 .35rem;
  color: var(--brand-2);
  font-weight: 700;
}
.hero-mini{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.mini-item{
  display:flex;
  gap:.65rem;
  padding: .9rem .95rem;
  border-radius: var(--radius);
  background: rgba(255,252,248,.80);
  border: 1px solid rgba(24,184,107,.20);
  box-shadow: var(--shadow-2);
}
.mini-item i{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(24,184,107,.18);
  color: var(--brand-2);
}
.mini-title{ font-weight: 700; font-size: .95rem; color: #000; }
.mini-sub{ color: rgba(0,0,0,.65); font-size: .85rem; }
@media (max-width: 991.98px){
  .hero-mini{ grid-template-columns: 1fr; }
}

.hero-art{
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-2);
  padding: 1.1rem;
}
.hero-wave{
  position:absolute;
  inset: -50px -30px auto auto;
  width: min(640px, 90vw);
  height: auto;
  opacity: .95;
  filter: drop-shadow(0 18px 34px rgba(18,18,18,.08));
  pointer-events:none;
}
.hero-photo{
  width: 100%;
  height: 420px;
  border-radius: var(--radius-2);
  object-fit: cover;
  border: 2px solid rgba(24,184,107,.20);
  box-shadow: var(--shadow);
  filter: saturate(1.12) contrast(1.05) brightness(1.02);
}
.hero-photo-wrap{
  position: relative;
  overflow:hidden;
  border-radius: var(--radius-2);
}
.hero-photo-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(250,248,245,.0) 0%, rgba(250,248,245,.50) 75%, rgba(250,248,245,.80) 100%);
  pointer-events:none;
}
.hero-photo-badge{
  position:absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.55rem .75rem;
  border-radius: 999px;
  background: rgba(255,252,248,.92);
  border: 1px solid rgba(24,184,107,.25);
  box-shadow: var(--shadow-2);
  font-weight: 800;
  color: var(--brand-2);
}
.seal{
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: .6rem;
  background: rgba(255,252,248,.95);
  border: 2px dashed rgba(24,184,107,.40);
  box-shadow: var(--shadow-2);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .68rem;
  line-height: 1.05;
  color: var(--brand-2);
}
.seal span{
  display:block;
  margin-top:.2rem;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: .62rem;
  opacity: .85;
}

.heritage-strip{
  position: relative;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: var(--radius-2);
  background: rgba(255,252,248,.85);
  border: 1px solid rgba(24,184,107,.25);
  box-shadow: var(--shadow-2);
  overflow:hidden;
}
.heritage-strip::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.18;
  background:
    linear-gradient(45deg, rgba(24,184,107,.25) 25%, transparent 25%, transparent 50%, rgba(24,184,107,.25) 50%, rgba(24,184,107,.25) 75%, transparent 75%, transparent);
  background-size: 18px 18px;
  mix-blend-mode: multiply;
  pointer-events:none;
}
.heritage-item{
  position: relative;
  display:flex;
  align-items:center;
  gap: .55rem;
  font-weight: 900;
  color: #000;
  padding: .25rem .15rem;
}
.heritage-item i{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(24,184,107,.18);
  border: 1px solid rgba(24,184,107,.30);
  color: var(--brand-2);
}
.heritage-sep{
  position: relative;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: rgba(24,184,107,.20);
  border: 1px solid rgba(24,184,107,.30);
  border-radius: 3px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

/* Ornament divider (Anadolu vibe) */
.ornament-divider{
  position: relative;
  height: 18px;
  margin: .9rem 0 1.2rem;
}
.ornament-divider::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(0,0,0,.12);
}
.ornament-divider::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(24,184,107,.16);
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 3px;
  box-shadow:
    -34px 0 0 -4px rgba(24,184,107,.10),
    34px 0 0 -4px rgba(24,184,107,.10);
}
.art-card{
  background: rgba(255,252,248,.80);
  border: 1px solid rgba(24,184,107,.20);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.art-card-main{
  position: relative;
  padding: 1rem 1rem 1.15rem;
  overflow:hidden;
}
.art-top{ display:flex; gap:.35rem; margin-bottom:.9rem; }
.dot{ width: 10px; height: 10px; border-radius: 999px; background: rgba(24,184,107,.25); }
.dot-1{ background: rgba(24,184,107,.75); }
.dot-2{ background: rgba(15,138,82,.75); }
.dot-3{ background: rgba(0,0,0,.75); }
.art-kicker{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .75rem;
  color: rgba(0,0,0,.68);
}
.art-name{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #000;
}
.art-note{ color: rgba(0,0,0,.72); margin-top: .35rem; }
.art-tags{ display:flex; flex-wrap: wrap; gap: .5rem; margin-top: .95rem; }
.tag{
  font-size: .82rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(24,184,107,.15);
  border: 1px solid rgba(24,184,107,.25);
  color: var(--brand-2);
}
.art-card-float{
  position:absolute;
  padding: .9rem .95rem;
  width: min(320px, 85vw);
}
.float-1{ right: 10px; top: 210px; transform: rotate(1.2deg); }
.float-2{ left: 10px; bottom: 10px; transform: rotate(-1.2deg); }
.float-title{ font-weight: 800; color: #000; }
.float-sub{ color: rgba(0,0,0,.72); font-size: .9rem; }
.float-line{ height:1px; background: rgba(24,184,107,.20); margin: .7rem 0; }
.float-meta{ display:flex; flex-wrap:wrap; gap:.8rem; color: rgba(0,0,0,.68); font-size: .85rem; }
.pill{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.35rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,18,23,.10);
  font-size: .85rem;
}

/* Sections */
.section{ padding: clamp(2.6rem, 4.2vw, 4.2rem) 0; }
.section-muted{
  background: linear-gradient(180deg, rgba(255,255,255,.25), rgba(255,255,255,.0));
  border-top: 1px solid rgba(20,18,23,.06);
  border-bottom: 1px solid rgba(20,18,23,.06);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.section-head{
  text-align: center;
  margin-bottom: 3rem;
}
.section-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.015em;
  margin: 0 0 .8rem;
  color: #000;
}
.section-sub{ 
  color: rgba(0,0,0,.75); 
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Filters */
.filters{ display:flex; flex-wrap:wrap; gap:.45rem; }
.btn-filter{
  border-radius: 999px;
  border: 1px solid rgba(20,18,23,.12);
  background: rgba(255,255,255,.55);
  color: rgba(20,18,23,.78);
  padding: .45rem .75rem;
}
.btn-filter:hover{ background: rgba(255,252,248,.90); }
.btn-filter.is-active{
  background: rgba(255,252,248,.95);
  box-shadow: var(--shadow-2);
  color: #000;
  border-color: rgba(24,184,107,.30);
  font-weight: 600;
}

/* Products */
.product-card{
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 2px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  border-color: rgba(24,184,107,.30);
}
.product-image-wrapper{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: saturate(1.18) contrast(1.10);
  transition: transform .3s ease;
}
.product-card:hover .product-img{
  transform: scale(1.05);
}
.product-badge-new,
.product-badge-special{
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand);
  color: #fff;
  padding: .4rem .8rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(24,184,107,.25);
}
.product-badge-special{
  background: var(--brand-2);
  color: #fff;
}
.product-body{
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-title{
  font-size: 1.4rem;
  font-weight: 800;
  color: #000;
  margin-bottom: .6rem;
  font-family: "Playfair Display", serif;
}
.product-desc{ 
  color: rgba(0,0,0,.75); 
  margin-bottom: 1.2rem; 
  line-height: 1.7;
  flex: 1;
}
.product-price{
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.2rem;
  padding: 1rem;
  background: rgba(24,184,107,.08);
  border-radius: 12px;
  border: 1px solid rgba(24,184,107,.15);
}
.price-label{
  font-size: .9rem;
  color: rgba(0,0,0,.70);
  font-weight: 600;
}
.price-amount{
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--brand-2);
  font-family: "Playfair Display", serif;
}
.btn-product{
  width: 100%;
  padding: .85rem;
  background: var(--brand);
  border: 0;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  transition: all .2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.btn-product:hover{
  background: var(--brand-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24,184,107,.30);
}
.product.is-hidden{ display:none !important; }

.info-strip{
  display:flex;
  flex-wrap:wrap;
  gap: .75rem;
  padding: .85rem;
  border-radius: var(--radius-2);
  border: 1px solid rgba(20,18,23,.10);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow-2);
}
.info-item{
  flex: 1 1 240px;
  display:flex;
  align-items:center;
  gap: .75rem;
  padding: .55rem .65rem;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,18,23,.08);
}
.info-item i{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(24,184,107,.12);
  border: 1px solid rgba(24,184,107,.22);
}
.info-title{ font-weight: 800; }
.info-sub{ color: rgba(20,18,23,.62); font-size: .9rem; }

/* About */
.about-card{
  padding: 1.5rem;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,.95);
  border: 2px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow-2);
  line-height: 1.8;
}
.about-card p{
  margin-bottom: 1rem;
  color: rgba(0,0,0,.80);
}
.about-image-wrapper{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
}
.about-image{
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.05);
}
.about-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
  padding: 1.5rem;
}
.about-overlay-content{
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
.about-overlay-content i{
  font-size: 2rem;
  color: var(--brand);
}
.about-overlay-content strong{
  display: block;
  font-size: 1.1rem;
  margin-bottom: .3rem;
}
.about-overlay-content span{
  display: block;
  font-size: .9rem;
  opacity: .9;
}
.about-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
}
.stat{
  padding: .95rem .95rem;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow-2);
}
.stat-num{
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--brand-2);
}
.stat-label{ color: rgba(0,0,0,.70); margin-top: .2rem; }
@media (max-width: 991.98px){
  .about-stats{ grid-template-columns: 1fr; }
}
.timeline{
  padding: 1.1rem 1.1rem;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,18,23,.10);
  box-shadow: var(--shadow-2);
}
.tl-item{
  display:flex;
  gap: .85rem;
  padding: .75rem 0;
}
.tl-item + .tl-item{ border-top: 1px dashed rgba(20,18,23,.12); }
.tl-dot{
  width: 14px; height: 14px;
  border-radius: 999px;
  background: rgba(24,184,107,.70);
  box-shadow: var(--ring);
  margin-top: .35rem;
}
.tl-title{ font-weight: 900; }
.tl-sub{ color: rgba(20,18,23,.64); font-size: .92rem; margin-top: .2rem; }

.callout{
  display:flex;
  gap: .85rem;
  align-items:flex-start;
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius-2);
  background: linear-gradient(135deg, rgba(24,184,107,.12), rgba(0,0,0,.04));
  border: 1px solid rgba(20,18,23,.10);
  box-shadow: var(--shadow-2);
}
.callout-icon{
  width: 46px; height: 46px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,18,23,.10);
}
.callout-title{ font-weight: 900; }
.callout-sub{ color: rgba(20,18,23,.65); font-size: .92rem; margin-top: .2rem; }

/* Branches */
.branch-card{
  height: 100%;
  padding: 1.1rem 1.1rem 1.0rem;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow-2);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.branch-card:hover{
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  border-color: rgba(24,184,107,.25);
}
.branch-top{ display:flex; align-items:flex-start; justify-content: space-between; gap: .85rem; }
.branch-name{ font-weight: 900; font-size: 1.06rem; color: #000; }
.branch-meta{
  display:flex; flex-wrap:wrap; gap: .75rem;
  color: rgba(0,0,0,.70);
  font-size: .88rem;
  margin-top: .3rem;
}
.branch-badge{
  padding: .3rem .6rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .78rem;
  background: rgba(59,217,166,.14);
  border: 1px solid rgba(59,217,166,.22);
}
.branch-badge-soft{
  background: rgba(255,180,61,.14);
  border-color: rgba(255,180,61,.24);
}
.branch-addr{
  color: rgba(20,18,23,.72);
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(20,18,23,.10);
}
.branch-actions{ display:flex; gap: .5rem; margin-top: .95rem; }

/* Footer */
.footer{
  padding: 1.05rem 0 0;
}
.footer-inner{
  padding: 1rem 1rem;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(20,18,23,.10);
  box-shadow: var(--shadow-2);
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap: .7rem;
}
.footer-name{ font-weight: 900; font-family: "Playfair Display", serif; }
.footer-sub{ color: rgba(20,18,23,.62); font-size: .92rem; }
.footer-right{ display:flex; gap: .9rem; flex-wrap:wrap; }
.footer-link{ color: rgba(20,18,23,.70); text-decoration:none; font-weight: 700; }
.footer-link:hover{ text-decoration: underline; }
.footer-bottom{
  display:flex;
  align-items:center;
  gap: .6rem;
  justify-content: center;
  padding: .9rem 0 0;
  color: rgba(20,18,23,.70);
}
.sep{ color: rgba(20,18,23,.30); }

/* Floating buttons */
.fab-stack{
  position: fixed;
  right: 18px;
  bottom: 18px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1030;
}
.fab{
  width: 52px; height: 52px;
  display:grid; place-items:center;
  border-radius: 18px;
  text-decoration:none;
  border: 1px solid rgba(24,184,107,.25);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.fab i{ font-size: 1.35rem; }
.fab:hover{ transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 20px 60px rgba(0,0,0,.20); }
.fab-whatsapp{
  background: rgba(255,255,255,.95);
  color: var(--brand-2);
}
.fab-map{
  background: rgba(255,255,255,.95);
  color: #000;
}

/* Reveal animation */
.reveal{ opacity: 0; transform: translateY(10px); }
.reveal.is-in{ opacity: 1; transform: translateY(0); transition: opacity .55s ease, transform .55s ease; }

/* Page Header */
.page-header{
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3vw, 3rem);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(255,255,255,.98) 100%);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.page-header-content{
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.page-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}
.page-subtitle{
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
  margin: 0;
}

/* Feature Cards */
.feature-card{
  padding: 2rem;
  border-radius: var(--radius-2);
  background: #fff;
  border: 2px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow-2);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  border-color: rgba(24,184,107,.25);
}
.feature-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(24,184,107,.12);
  border: 2px solid rgba(24,184,107,.20);
  color: var(--brand-2);
  font-size: 1.8rem;
}
.feature-title{
  font-size: 1.3rem;
  font-weight: 800;
  color: #000;
  margin-bottom: .8rem;
  font-family: "Playfair Display", serif;
}
.feature-desc{
  color: rgba(0,0,0,.75);
  line-height: 1.7;
  margin: 0;
}

/* Contact Cards */
.contact-card{
  padding: 2rem;
  border-radius: var(--radius-2);
  background: #fff;
  border: 2px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow-2);
  text-align: center;
  transition: transform .2s ease;
}
.contact-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.contact-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(24,184,107,.12);
  border: 2px solid rgba(24,184,107,.20);
  color: var(--brand-2);
  font-size: 1.8rem;
}
.contact-title{
  font-size: 1.2rem;
  font-weight: 800;
  color: #000;
  margin-bottom: .8rem;
}
.contact-info{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-2);
  margin-bottom: .5rem;
}
.contact-info a{
  color: var(--brand-2);
}
.contact-desc{
  color: rgba(0,0,0,.65);
  font-size: .9rem;
  margin: 0;
}

/* Product Detail */
.product-detail-image{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.product-detail-image img{
  width: 100%;
  height: auto;
  display: block;
}
.product-detail-content{
  padding: 1rem 0;
}
.product-detail-title{
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}
.product-detail-subtitle{
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(0,0,0,.75);
  margin-bottom: 1.5rem;
}
.product-detail-price{
  padding: 1.5rem;
  background: rgba(24,184,107,.10);
  border-radius: 16px;
  border: 2px solid rgba(24,184,107,.20);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.product-features{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.feature-item{
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(0,0,0,.80);
  font-weight: 500;
}
.feature-item i{
  color: var(--brand);
  font-size: 1.2rem;
}
.product-quantity{
  padding: 1.5rem;
  background: rgba(0,0,0,.03);
  border-radius: 12px;
}
.product-actions{
  margin-top: 2rem;
}

/* Product Description */
.product-description{
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-2);
  border: 1px solid rgba(0,0,0,.10);
}
.product-specs{
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-specs li{
  padding: .5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(0,0,0,.80);
}
.product-specs li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 900;
  font-size: 1.2rem;
}

/* Info Box */
.info-box{
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-2);
  border: 2px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow-2);
}
.info-item{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.info-item:last-child{
  border-bottom: 0;
}
.info-item i{
  font-size: 1.5rem;
  color: var(--brand);
  margin-top: .2rem;
}
.info-item strong{
  display: block;
  color: #000;
  margin-bottom: .3rem;
}
.info-item span{
  display: block;
  color: rgba(0,0,0,.70);
  font-size: .9rem;
}

/* Background Light */
.bg-light{
  background: rgba(24,184,107,.03);
}

/* Breadcrumb */
.breadcrumb{
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item a{
  color: rgba(0,0,0,.70);
  text-decoration: none;
}
.breadcrumb-item a:hover{
  color: var(--brand);
}
.breadcrumb-item.active{
  color: #000;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .product-card, .branch-card, .fab{ transition: none !important; }
  .reveal{ opacity: 1 !important; transform: none !important; }
}

@media (max-width: 767.98px){
  .product-features{
    grid-template-columns: 1fr;
  }
  .product-detail-price{
    flex-direction: column;
    align-items: flex-start;
  }
  .brand-logo{
    width: 100px;
    max-height: 45px;
  }
}

