/* =========================================
   KIWI LEATHERBAG — Professional Redesign
   Warm leather palette, no AI-template look
   ========================================= */
:root {
  /* Warm leather palette */
  --chocolate: #2A211A;
  --brown: #5A3A25;
  --brown-mid: #8F4B46;
  --tan: #A98B72;
  --sand: #D8D0C5;
  --cream: #F3F0EA;
  --warm-white: #FAF9F6;
  --parchment: #E8E1D7;
  --gold: #8F4B46;
  --gold-light: #B96B63;
  --gold-warm: #9E554E;
  --black: #151311;
  --text: #25211D;
  --text-mid: #61584E;
  --text-light: #8C8176;
  --white: #FFFFFF;
  --green-muted: #4A5E4A;

  --shadow-soft: 0 4px 24px rgba(62,39,35,0.08);
  --shadow-mid: 0 12px 48px rgba(62,39,35,0.12);
  --shadow-warm: 0 20px 60px rgba(62,39,35,0.16);
  --radius: 4px;
  --radius-md: 8px;
  --transition: all 0.35s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family:'Lora', Georgia, serif;
  background:var(--warm-white);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.7;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--cream); }
::-webkit-scrollbar-thumb { background:var(--tan); border-radius:2px; }

/* ===== NAVBAR ===== */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:18px 0; transition:var(--transition);
  background:rgba(250,249,246,0.94);
  backdrop-filter:blur(14px);
  box-shadow:0 1px 0 rgba(21,19,17,0.08);
}
#navbar.scrolled {
  background:rgba(253,250,246,0.96);
  backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(62,39,35,0.08);
  padding:14px 0;
}
.nav-container {
  max-width:1200px; margin:0 auto; padding:0 48px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo {
  font-family:'Playfair Display', serif;
  font-size:1.35rem; font-weight:700;
  color:var(--black); letter-spacing:2px;
  text-transform:uppercase; transition:color 0.3s;
}
#navbar.scrolled .nav-logo { color:var(--chocolate); }
.nav-links { display:flex; gap:44px; align-items:center; }
.nav-link {
  font-family:'Jost', sans-serif; font-weight:400;
  font-size:0.78rem; letter-spacing:2.5px; text-transform:uppercase;
  color:var(--text-mid); position:relative;
  padding-bottom:3px; transition:color 0.3s ease;
}
#navbar.scrolled .nav-link { color:var(--text-mid); }
.nav-link::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0%; height:1px; background:var(--gold-warm);
  transition:width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-link:hover, .nav-link.active { color:var(--gold-warm); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active { color:var(--chocolate); }

.hamburger {
  display:none; flex-direction:column; gap:6px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span {
  display:block; width:22px; height:1.5px;
  background:var(--black); transition:var(--transition);
}
#navbar.scrolled .hamburger span { background:var(--chocolate); }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ===== BUTTONS ===== */
.btn {
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 32px; font-family:'Jost', sans-serif;
  font-weight:500; font-size:0.8rem; letter-spacing:2px;
  text-transform:uppercase; transition:var(--transition);
  cursor:pointer; border:none; white-space:nowrap;
}
.btn-primary {
  background:var(--chocolate); color:var(--warm-white);
  border:1px solid var(--chocolate);
}
.btn-primary:hover {
  background:var(--brown); border-color:var(--brown);
  transform:translateY(-1px); box-shadow:var(--shadow-mid);
}
.btn-outline {
  background:transparent; color:var(--warm-white);
  border:1px solid rgba(253,250,246,0.6);
}
.btn-outline:hover {
  background:var(--warm-white); color:var(--chocolate);
  border-color:var(--warm-white);
}
.btn-whatsapp {
  background:#2E7D32; color:var(--white);
  border:1px solid #2E7D32;
}
.btn-whatsapp:hover { background:#1B5E20; border-color:#1B5E20; transform:translateY(-1px); }
.full-btn { width:100%; justify-content:center; }

/* ===== HERO ===== */
.hero {
  min-height:92vh; position:relative; overflow:hidden;
  display:flex; align-items:center;
  background:var(--chocolate);
}
.hero-bg {
  position:absolute; inset:0;
  background:url('https://res.cloudinary.com/dvzsnjypd/image/upload/v1781081011/Image_Jun_10_2026_12_54_59_PM_k7chbx.png') center/cover no-repeat;
  opacity:0.22;
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    105deg,
    rgba(30,16,8,0.92) 0%,
    rgba(62,39,35,0.75) 50%,
    rgba(30,16,8,0.5) 100%
  );
}
.hero-content {
  position:relative; z-index:2;
  max-width:1200px; margin:0 auto; padding:140px 48px 100px;
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center; width:100%;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:12px;
  font-family:'Jost', sans-serif; font-size:0.72rem;
  letter-spacing:4px; text-transform:uppercase;
  color:var(--gold-warm); margin-bottom:24px;
  opacity:1;
}
.hero-eyebrow::before {
  content:''; width:32px; height:1px; background:var(--gold-warm);
}
.hero-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(2.8rem,5vw,4.2rem);
  line-height:1.1; color:var(--warm-white);
  margin-bottom:20px; font-weight:700;
  opacity:1;
}
.hero-title em {
  font-style:italic; color:var(--gold-warm);
  font-weight:400;
}
.hero-tagline {
  font-size:1rem; color:rgba(245,240,232,0.75);
  line-height:1.8; max-width:400px;
  margin-bottom:44px; font-weight:300;
  opacity:1;
}
.hero-ctas {
  display:flex; gap:14px; flex-wrap:wrap;
  opacity:1;
}
.hero-right {
  display:flex; flex-direction:column; gap:20px;
  opacity:1;
}
.hero-img-main {
  border-radius:2px; overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,0.4);
  aspect-ratio:3/4;
}
.hero-img-main img { width:100%; height:100%; object-fit:cover; }
.hero-img-pair { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.hero-img-sm { border-radius:2px; overflow:hidden; aspect-ratio:1; }
.hero-img-sm img { width:100%; height:100%; object-fit:cover; }
.hero-tag {
  display:inline-block; background:rgba(184,134,11,0.18);
  border:1px solid rgba(184,134,11,0.35);
  color:var(--gold-light); font-family:'Jost',sans-serif;
  font-size:0.7rem; letter-spacing:3px; text-transform:uppercase;
  padding:6px 16px; border-radius:2px; margin-bottom:10px;
}

/* ===== DIVIDER ===== */
.section-divider {
  display:flex; align-items:center; gap:20px;
  margin:0 auto 48px; max-width:200px;
}
.section-divider::before, .section-divider::after {
  content:''; flex:1; height:1px; background:var(--sand);
}
.section-divider span { color:var(--gold-warm); font-size:0.7rem; }

/* ===== MARQUEE ===== */
.marquee-bar {
  background:var(--brown); padding:14px 0; overflow:hidden;
  border-top:1px solid rgba(255,255,255,0.06);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display:flex; gap:48px; align-items:center;
  white-space:nowrap; animation:marquee 30s linear infinite;
}
.marquee-track span {
  font-family:'Jost', sans-serif;
  font-size:0.72rem; letter-spacing:3px; text-transform:uppercase;
  color:var(--sand); font-weight:300;
}
.marquee-track .dot { color:var(--gold-warm); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== SECTIONS ===== */
.section { padding:96px 0; }
.container { max-width:1200px; margin:0 auto; padding:0 48px; }
.section-header { text-align:center; margin-bottom:56px; }
.section-pre {
  font-family:'Jost', sans-serif; font-size:0.72rem;
  letter-spacing:4px; text-transform:uppercase;
  color:var(--gold-warm); font-weight:500;
  margin-bottom:14px; display:block;
}
.section-title {
  font-family:'Playfair Display', serif;
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  color:var(--chocolate); line-height:1.2; font-weight:700;
}
.section-title em { font-style:italic; color:var(--brown-mid); font-weight:400; }
.section-sub {
  font-size:0.95rem; color:var(--text-light);
  margin-top:16px; font-weight:300; line-height:1.7;
}

/* ===== SEARCH & FILTER ===== */
.search-filter-bar { margin-bottom:48px; }
.search-wrap {
  position:relative; max-width:440px;
  margin:0 auto 24px; width:100%;
}
.search-wrap > i {
  position:absolute; left:16px; top:50%; transform:translateY(-50%);
  color:var(--text-light); font-size:0.85rem;
}
.search-wrap input {
  width:100%; padding:13px 40px 13px 42px;
  border:1px solid var(--sand); border-radius:2px;
  font-family:'Lora', serif; font-size:0.9rem; color:var(--text);
  background:var(--white); outline:none; transition:border-color 0.3s;
}
.search-wrap input:focus { border-color:var(--brown-mid); }
.search-wrap input::placeholder { color:var(--text-light); font-weight:300; }
.search-clear {
  position:absolute; right:12px; top:50%; transform:translateY(-50%);
  background:var(--sand); border:none; border-radius:50%;
  width:22px; height:22px; display:none; align-items:center;
  justify-content:center; cursor:pointer; font-size:0.7rem; color:var(--text-mid);
}
.filter-tabs { display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.filter-tab {
  padding:7px 18px; border:1px solid var(--sand);
  background:var(--white); font-family:'Jost', sans-serif;
  font-size:0.72rem; letter-spacing:1.5px; text-transform:uppercase;
  color:var(--text-mid); cursor:pointer; transition:var(--transition);
  border-radius:2px;
}
.filter-tab:hover { border-color:var(--brown-mid); color:var(--brown); }
.filter-tab.active {
  background:var(--chocolate); border-color:var(--chocolate);
  color:var(--warm-white);
}

/* ===== COLLECTION ===== */
.collection-section { background:var(--warm-white); }
.products-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px,1fr));
  gap:32px;
}
.products-loading {
  grid-column:1/-1;
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(300px,1fr));
  gap:32px;
}
.skeleton-card {
  background:var(--white);
  border:1px solid var(--parchment);
  min-height:430px;
  display:flex;
  flex-direction:column;
  gap:14px;
  padding-bottom:18px;
  overflow:hidden;
}
.skeleton-card::before {
  content:'';
  display:block;
  aspect-ratio:3/4;
  background:linear-gradient(90deg, var(--cream), #ffffff, var(--cream));
  background-size:220% 100%;
  animation:skeleton-shimmer 1.25s ease-in-out infinite;
}
.skeleton-card span {
  display:block;
  height:12px;
  margin:0 18px;
  border-radius:2px;
  background:linear-gradient(90deg, var(--parchment), #ffffff, var(--parchment));
  background-size:220% 100%;
  animation:skeleton-shimmer 1.25s ease-in-out infinite;
}
.skeleton-card span:nth-child(2) { width:52%; }
.skeleton-card span:nth-child(3) { width:34%; }
@keyframes skeleton-shimmer {
  from { background-position:100% 0; }
  to { background-position:-100% 0; }
}
.no-results {
  display:none; flex-direction:column; align-items:center;
  padding:60px 20px; color:var(--text-light); gap:12px;
}
.no-results i { font-size:2.5rem; opacity:0.2; }

/* Product Card */
.product-card {
  background:var(--white);
  border:1px solid transparent;
  transition:var(--transition);
  cursor:pointer;
}
.product-card:hover {
  border-color:var(--sand);
  box-shadow:var(--shadow-warm);
  transform:translateY(-4px);
}
.product-img-wrap {
  position:relative; overflow:hidden; aspect-ratio:3/4;
}
.product-img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.6s ease;
}
.product-card:hover .product-img { transform:scale(1.04); }
.available-badge {
  position:absolute; top:16px; left:16px;
  background:var(--chocolate); color:var(--warm-white);
  padding:5px 12px; font-family:'Jost', sans-serif;
  font-size:0.62rem; letter-spacing:2px; text-transform:uppercase;
  font-weight:500;
}
.product-overlay {
  position:absolute; inset:0;
  background:rgba(30,16,8,0.45);
  display:flex; align-items:flex-end; justify-content:center;
  padding-bottom:24px; opacity:0; transition:opacity 0.35s ease;
}
.product-card:hover .product-overlay { opacity:1; }
.product-view-btn {
  display:flex; align-items:center; gap:8px;
  background:var(--warm-white); color:var(--chocolate);
  padding:10px 24px; font-family:'Jost', sans-serif;
  font-size:0.75rem; letter-spacing:2px; text-transform:uppercase;
  font-weight:500; transform:translateY(6px);
  transition:transform 0.3s ease;
}
.product-card:hover .product-view-btn { transform:translateY(0); }
.product-info { padding:20px 0 4px; }
.product-cat {
  font-family:'Jost', sans-serif; font-size:0.65rem;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--text-light); font-weight:500;
}
.product-name {
  font-family:'Playfair Display', serif;
  font-size:1.1rem; color:var(--chocolate);
  margin:6px 0 10px; font-weight:600;
}
.product-bottom {
  display:flex; align-items:center; justify-content:space-between;
  border-top:1px solid var(--parchment); padding-top:12px;
}
.product-price {
  font-family:'Jost', sans-serif; font-size:0.85rem;
  color:var(--text-mid); font-weight:400;
}
.product-wa-mini {
  width:34px; height:34px; background:#2E7D32;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:0.95rem; transition:background 0.25s;
}
.product-wa-mini:hover { background:#1B5E20; }

/* ===== POPUP ===== */
.popup-overlay {
  position:fixed; inset:0; background:rgba(20,10,5,0.7);
  backdrop-filter:blur(4px); z-index:2000;
  opacity:0; visibility:hidden; transition:opacity 0.3s, visibility 0.3s;
}
.popup-overlay.active { opacity:1; visibility:visible; }
.product-popup {
  position:fixed; top:50%; left:50%;
  transform:translate(-50%,-48%);
  width:92%; max-width:1040px; max-height:90vh; overflow-y:auto;
  background:var(--warm-white); z-index:2001;
  opacity:0; visibility:hidden;
  transition:opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow:0 40px 100px rgba(0,0,0,0.3);
}
.product-popup.active {
  opacity:1; visibility:visible; transform:translate(-50%,-50%);
}
.popup-close {
  position:absolute; top:16px; right:16px;
  width:36px; height:36px; border:1px solid var(--sand);
  background:var(--white); color:var(--text-mid);
  font-size:0.85rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition); z-index:3;
}
.popup-close:hover { background:var(--chocolate); color:var(--white); border-color:var(--chocolate); }
.popup-inner { display:grid; grid-template-columns:minmax(320px, 1.05fr) minmax(320px, 0.95fr); }
.popup-image-side { overflow:hidden; background:var(--cream); padding:18px; }
.popup-img { width:100%; height:auto; object-fit:cover; aspect-ratio:4/5; min-height:420px; background:var(--parchment); }
.popup-thumbs {
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:8px;
  margin-top:10px;
}
.popup-thumb {
  border:1px solid var(--parchment);
  background:var(--white);
  padding:0;
  aspect-ratio:1;
  cursor:pointer;
  opacity:0.72;
  transition:var(--transition);
}
.popup-thumb.active,
.popup-thumb:hover {
  border-color:var(--gold-warm);
  opacity:1;
}
.popup-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.popup-avail-badge {
  position:absolute; top:16px; left:16px;
  background:var(--chocolate); color:var(--warm-white);
  padding:5px 12px; font-family:'Jost', sans-serif;
  font-size:0.62rem; letter-spacing:2px; text-transform:uppercase;
}
.popup-image-side { position:relative; }
.popup-info-side {
  padding:44px 40px; display:flex;
  flex-direction:column; justify-content:center;
  background:var(--warm-white);
}
.popup-cat {
  font-family:'Jost', sans-serif; font-size:0.65rem;
  letter-spacing:3px; text-transform:uppercase; color:var(--text-light);
}
.popup-name {
  font-family:'Playfair Display', serif;
  font-size:1.8rem; color:var(--chocolate);
  margin:12px 0 10px; font-weight:700; line-height:1.2;
}
.popup-price {
  font-family:'Playfair Display', serif;
  font-size:1.3rem; color:var(--brown-mid);
  display:block; margin-bottom:20px;
}
.popup-divider { height:1px; background:var(--parchment); margin:20px 0; }
.popup-desc {
  font-size:0.92rem; color:var(--text-mid);
  line-height:1.8; margin-bottom:22px; font-weight:300;
}
.popup-section-title {
  font-family:'Jost', sans-serif;
  font-size:0.7rem;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--text-light);
  margin-bottom:10px;
}
.popup-spec-block { margin-bottom:26px; }
.popup-spec-grid {
  border-top:1px solid var(--parchment);
}
.popup-spec-row {
  display:grid;
  grid-template-columns:120px 1fr;
  gap:16px;
  padding:10px 0;
  border-bottom:1px solid var(--parchment);
}
.popup-spec-row span {
  font-family:'Jost', sans-serif;
  font-size:0.72rem;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--text-light);
}
.popup-spec-row strong {
  font-family:'Jost', sans-serif;
  font-size:0.88rem;
  color:var(--text);
  font-weight:500;
}
.popup-actions { display:flex; flex-direction:column; gap:10px; }
.btn-wa-popup {
  background:#2E7D32; color:var(--white);
  border:1px solid #2E7D32; justify-content:center;
}
.btn-wa-popup:hover { background:#1B5E20; }
.btn-ig-popup {
  background:var(--white); color:var(--chocolate);
  border:1px solid var(--sand); justify-content:center;
}
.btn-ig-popup:hover { border-color:var(--chocolate); background:var(--cream); }

/* ===== BRAND / ABOUT ===== */
.brand-section { background:var(--cream); }
.brand-container {
  display:grid; grid-template-columns:1fr 1fr;
  gap:80px; align-items:center;
}
.brand-img-frame {
  position:relative; overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:var(--shadow-warm);
}
.brand-img { width:100%; height:100%; object-fit:cover; }
.brand-img-accent {
  position:absolute; bottom:-1px; left:-1px; right:-1px;
  height:40%; background:linear-gradient(transparent, rgba(62,39,35,0.15));
}
.brand-tag {
  position:absolute; bottom:24px; right:24px;
  background:var(--chocolate); color:var(--warm-white);
  padding:12px 20px; text-align:center;
}
.brand-tag-num {
  font-family:'Playfair Display', serif;
  font-size:1.8rem; font-weight:700; display:block;
  color:var(--gold-warm);
}
.brand-tag-label {
  font-family:'Jost', sans-serif; font-size:0.65rem;
  letter-spacing:2px; text-transform:uppercase; opacity:0.85;
}
.brand-quote {
  font-family:'Playfair Display', serif;
  font-size:1.15rem; font-style:italic;
  color:var(--brown); line-height:1.7;
  border-left:2px solid var(--gold-warm);
  padding-left:20px; margin:24px 0 20px;
}
.brand-desc {
  font-size:0.95rem; color:var(--text-mid);
  line-height:1.85; margin-bottom:18px; font-weight:300;
}
.brand-pillars { display:flex; gap:32px; margin:28px 0 32px; flex-wrap:wrap; }
.pillar {
  display:flex; flex-direction:column; gap:4px;
}
.pillar-label {
  font-family:'Jost', sans-serif; font-size:0.65rem;
  letter-spacing:2px; text-transform:uppercase; color:var(--text-light);
}
.pillar-val {
  font-family:'Playfair Display', serif;
  font-size:1rem; color:var(--chocolate); font-weight:600;
}

/* ===== WHY ===== */
.why-section { background:var(--chocolate); }
.why-section .section-pre { color:var(--gold-warm); }
.why-section .section-title { color:var(--cream); }
.why-section .section-title em { color:var(--gold-warm); }
.why-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:1px; background:rgba(255,255,255,0.07);
}
.why-card {
  background:var(--chocolate);
  padding:40px 32px; transition:var(--transition);
  border:1px solid transparent;
}
.why-card:hover {
  background:var(--brown);
  border-color:rgba(200,169,106,0.2);
}
.why-icon {
  width:48px; height:48px;
  border:1px solid rgba(200,169,106,0.3);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px; font-size:1.2rem; color:var(--gold-warm);
  transition:var(--transition);
}
.why-card:hover .why-icon {
  background:var(--gold-warm); color:var(--chocolate);
  border-color:var(--gold-warm);
}
.why-card h3 {
  font-family:'Playfair Display', serif;
  font-size:1.1rem; color:var(--cream); margin-bottom:10px;
}
.why-card p {
  font-size:0.88rem; color:rgba(245,240,232,0.5);
  line-height:1.75; font-weight:300;
}

/* ===== GALLERY ===== */
.gallery-section { background:var(--warm-white); }
.insta-link { color:var(--brown-mid); font-weight:500; }
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.gallery-item {
  overflow:hidden; position:relative; aspect-ratio:1; cursor:pointer;
}
.gallery-item.g-large { grid-column:span 2; grid-row:span 2; aspect-ratio:auto; }
.gallery-item.g-tall { grid-row:span 2; aspect-ratio:auto; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.gallery-item:hover img { transform:scale(1.05); }
.gallery-hover {
  position:absolute; inset:0;
  background:rgba(62,39,35,0.5);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity 0.3s ease;
  font-size:1.8rem; color:var(--warm-white);
}
.gallery-item:hover .gallery-hover { opacity:1; }

/* ===== TESTIMONIALS ===== */
.testimonial-section { background:var(--parchment); }
.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:24px;
}
.testimonial-card {
  background:var(--warm-white); padding:36px;
  box-shadow:var(--shadow-soft); transition:var(--transition);
  border-bottom:2px solid transparent;
}
.testimonial-card:hover {
  box-shadow:var(--shadow-mid);
  border-bottom-color:var(--gold-warm);
  transform:translateY(-3px);
}
.stars { color:var(--gold-warm); font-size:0.9rem; margin-bottom:16px; letter-spacing:2px; }
.review-text {
  font-family:'Lora', serif; font-size:0.98rem; color:var(--text);
  line-height:1.8; margin-bottom:24px; font-style:italic;
}
.reviewer { display:flex; align-items:center; gap:14px; }
.reviewer-avatar {
  width:42px; height:42px;
  background:var(--chocolate); color:var(--warm-white);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display', serif; font-size:1rem; flex-shrink:0;
}
.reviewer strong { display:block; font-size:0.88rem; color:var(--chocolate); font-family:'Jost',sans-serif; }
.reviewer span { font-size:0.78rem; color:var(--text-light); font-family:'Jost',sans-serif; }

/* ===== CONTACT ===== */
.contact-section { background:var(--warm-white); }
.contact-container { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
.contact-desc { font-size:0.95rem; color:var(--text-mid); line-height:1.85; margin-bottom:36px; font-weight:300; }
.contact-channels { display:flex; flex-direction:column; gap:12px; }
.channel-card {
  display:flex; align-items:center; gap:16px;
  padding:18px 20px; border:1px solid var(--sand);
  background:var(--white); transition:var(--transition);
}
.channel-card:hover { border-color:var(--brown-mid); transform:translateX(4px); }
.channel-card > i:first-child { font-size:1.3rem; }
.whatsapp-ch > i:first-child { color:#2E7D32; }
.insta-ch > i:first-child { color:#C13584; }
.email-ch > i:first-child { color:var(--brown-mid); }
.channel-card strong { display:block; font-size:0.88rem; color:var(--chocolate); font-family:'Jost',sans-serif; }
.channel-card span { font-size:0.78rem; color:var(--text-light); font-family:'Jost',sans-serif; }
.ch-arrow { margin-left:auto; color:var(--sand); transition:var(--transition); }
.channel-card:hover .ch-arrow { color:var(--brown-mid); transform:translateX(4px); }

.contact-form { background:var(--cream); padding:40px; }
.contact-form h3 {
  font-family:'Playfair Display', serif;
  font-size:1.5rem; color:var(--chocolate); margin-bottom:28px;
}
.form-group { margin-bottom:20px; }
.form-group label {
  display:block; font-family:'Jost', sans-serif;
  font-size:0.7rem; letter-spacing:2px; text-transform:uppercase;
  color:var(--text-light); margin-bottom:8px; font-weight:500;
}
.form-group input, .form-group textarea {
  width:100%; padding:13px 16px;
  background:var(--white); border:1px solid var(--sand);
  font-family:'Lora', serif; font-size:0.9rem; color:var(--text);
  outline:none; transition:border-color 0.3s; resize:vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color:var(--brown-mid); }

/* ===== FOOTER ===== */
.footer { background:var(--black); color:var(--cream); padding-top:72px; }
.footer-top {
  max-width:1200px; margin:0 auto; padding:0 48px 60px;
  display:grid; grid-template-columns:2fr 1fr 1fr; gap:60px;
}
.footer-logo {
  font-family:'Playfair Display', serif; font-size:1.4rem;
  font-weight:700; margin-bottom:14px; letter-spacing:2px;
  text-transform:uppercase; color:var(--warm-white);
}
.footer-brand p {
  font-size:0.88rem; color:rgba(245,240,232,0.4);
  line-height:1.8; max-width:260px; margin-bottom:28px;
  font-weight:300;
}
.footer-socials { display:flex; gap:12px; }
.footer-socials a {
  width:38px; height:38px; border:1px solid rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center;
  font-size:0.95rem; color:rgba(245,240,232,0.5);
  transition:var(--transition);
}
.footer-socials a:hover {
  background:var(--gold-warm); border-color:var(--gold-warm);
  color:var(--chocolate); transform:translateY(-2px);
}
.footer-links-group h4 {
  font-family:'Jost', sans-serif; font-size:0.65rem;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--gold-warm); margin-bottom:20px; font-weight:500;
}
.footer-links-group ul { display:flex; flex-direction:column; gap:12px; }
.footer-links-group a {
  font-size:0.88rem; color:rgba(245,240,232,0.4);
  transition:color 0.3s; font-family:'Jost', sans-serif; font-weight:300;
}
.footer-links-group a:hover { color:var(--cream); }
.footer-divider { border:none; height:1px; background:rgba(255,255,255,0.06); }
.footer-bottom {
  max-width:1200px; margin:0 auto; padding:22px 48px;
  display:flex; align-items:center; justify-content:space-between;
}
.footer-bottom p {
  font-family:'Jost', sans-serif; font-size:0.75rem;
  color:rgba(245,240,232,0.25); letter-spacing:0.5px;
}
.admin-link {
  font-size:0.7rem; color:rgba(245,240,232,0.1);
  transition:color 0.3s; letter-spacing:2px; font-family:'Jost',sans-serif;
}
.admin-link:hover { color:var(--gold-warm); }

/* ===== WA FLOAT ===== */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:900;
  width:56px; height:56px; background:#2E7D32;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:var(--white);
  box-shadow:0 8px 28px rgba(46,125,50,0.4);
  transition:var(--transition);
}
.wa-float:hover { background:#1B5E20; transform:translateY(-3px); }

/* ===== ANIMATIONS ===== */
.fade-up,
.fade-up.visible {
  opacity:1;
  transform:none;
  transition:none;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .hero-content { grid-template-columns:1fr; gap:48px; text-align:center; }
  .hero-right { display:grid; grid-template-columns:1fr 1fr; gap:12px; max-width:460px; margin:0 auto; }
  .hero-img-main { display:none; }
  .hero-eyebrow { justify-content:center; }
  .hero-tagline { margin:0 auto 40px; }
  .hero-ctas { justify-content:center; }
  .brand-container { grid-template-columns:1fr; }
  .brand-image-side { max-width:420px; margin:0 auto; }
  .contact-container { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-item.g-large, .gallery-item.g-tall { grid-column:auto; grid-row:auto; aspect-ratio:1; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:span 2; }
  .popup-inner { grid-template-columns:1fr; }
  .popup-img { min-height:280px; max-height:420px; }
  .popup-thumbs { grid-template-columns:repeat(6, 1fr); }
}
@media (max-width:768px) {
  .nav-links {
    position:fixed; top:0; right:-100%; height:100vh; width:72%;
    background:var(--warm-white); flex-direction:column;
    align-items:flex-start; padding:100px 36px 40px; gap:28px;
    box-shadow:var(--shadow-warm); transition:right 0.4s ease; z-index:999;
  }
  .nav-links.open { right:0; }
  .nav-link { color:var(--text-mid); font-size:0.85rem; }
  .hamburger { display:flex; z-index:1001; }
  .nav-container { padding:0 24px; }
  .section { padding:64px 0; }
  .container { padding:0 24px; }
  .hero-content { padding:120px 24px 80px; }
  .footer-top { grid-template-columns:1fr; gap:36px; }
  .footer-brand { grid-column:1; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; padding:20px 24px; }
  .footer-top { padding:0 24px 48px; }
  .product-popup { width:96%; max-height:92vh; }
  .popup-info-side { padding:24px 20px; }
  .popup-image-side { padding:12px; }
  .popup-thumbs { grid-template-columns:repeat(4, 1fr); }
  .popup-spec-row { grid-template-columns:1fr; gap:2px; }
  .products-grid { grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:20px; }
}

/* ===== CTA BAND (replaces fake testimonials) ===== */
.cta-band-section { background: var(--chocolate); }
.cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; padding: 16px 0; flex-wrap: wrap;
}
.cta-band-text { flex: 1; min-width: 280px; }
.cta-band-text .section-pre { color: var(--gold-warm); }
.cta-band-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--warm-white); line-height: 1.2;
  margin: 10px 0 14px;
}
.cta-band-title em { color: var(--gold-warm); font-style: italic; font-weight: 400; }
.cta-band-sub {
  font-size: 0.92rem; color: rgba(245,240,232,0.6);
  line-height: 1.75; font-weight: 300; max-width: 420px;
}
.cta-band-actions {
  display: flex; flex-direction: column; gap: 12px; flex-shrink: 0;
}
.btn-outline-dark {
  background: transparent; color: rgba(245,240,232,0.8);
  border: 1px solid rgba(245,240,232,0.25);
  font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 32px; display: inline-flex; align-items: center;
  gap: 10px; transition: var(--transition); cursor: pointer;
  justify-content: center;
}
.btn-outline-dark:hover {
  background: rgba(245,240,232,0.08);
  border-color: rgba(245,240,232,0.5);
  color: var(--warm-white);
}
@media (max-width: 768px) {
  .cta-band { flex-direction: column; text-align: center; }
  .cta-band-sub { margin: 0 auto; }
  .cta-band-actions { width: 100%; }
  .btn-outline-dark { width: 100%; }
}