/* ═══════════════════════════════════════════════════════
   DIVINO STUDIOS — MAIN CSS
   Full responsive, mobile-first luxury fabric theme
═══════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #e8d49a;
  --gold-pale: #fdf8ee;
  --gold-dark: #9a7430;
  --gold-deep: #b8922e;
  --black: #0a0a0a;
  --white: #ffffff;
  --ivory: #faf8f3;
  --off-white: #fdfcf8;
  --cream: #f8f4ec;
  --blush: #fdf0f3;
  --blush-mid: #f9e4ea;
  --text-dark: #2a1f0e;
  --text-mid: #5a4a30;
  --text-light: #9a8060;
  --border: #ede5d0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  font-weight: 300;
}

/* ── PROMO BAR ── */
.promo-bar {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--white);
  text-align: center;
  padding: 9px 20px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  z-index: 1001;
}

/* ── DESKTOP NAV ── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: background 0.35s, box-shadow 0.35s, height 0.35s;
  background: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
nav.scrolled {
  background: rgba(250, 248, 243, 0.99);
  box-shadow: 0 2px 24px rgba(201, 168, 76, 0.12);
  height: 64px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(154, 116, 48, 0.35);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: border-color 0.2s;
}
.nav-logo-img img { width: 54px; height: 54px; object-fit: contain; mix-blend-mode: multiply; border-radius: 50%; display: block; }
.nav-logo-placeholder {
  background: var(--gold-pale);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-dark);
  font-weight: 400;
}
.nav-logo-text .brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1;
}
.nav-logo-text .tag {
  font-size: 8px;
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold-dark); transition: all 0.3s; }

/* ── MOBILE TICKER BAR ── */
.mobile-ticker-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 0;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.ticker-inner {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}
.ticker-track span {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 400;
  padding-right: 60px;
  font-family: var(--sans);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.mobile-ticker-menu-btn {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  margin-left: 12px;
}
.mobile-ticker-menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold-dark);
  transition: all 0.3s;
}

/* ── MOBILE FULL-SCREEN MENU ── */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  border-left: 1px solid var(--border);
}
.mobile-menu.open { transform: translateX(0); pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 28px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gold-dark);
  font-weight: 300;
  line-height: 1;
}
.mobile-social {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.mobile-social a {
  font-size: unset !important;
  color: var(--gold-dark) !important;
  padding: 8px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 8% 80px 10%;
  position: relative;
  z-index: 2;
  background: linear-gradient(160deg, var(--white) 70%, var(--gold-pale) 100%);
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ivory) 0%, transparent 35%);
}
.hero-gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}
.hero-logo-display { margin-bottom: 28px; }
.hero-logo-display img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: multiply;
  display: block;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-dark); }
.hero-sub {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold-dark);
  color: var(--white);
  padding: 14px 34px;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background 0.2s;
  font-weight: 400;
}
.btn-primary:hover { background: var(--gold); }
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  padding: 13px 34px;
  border: 1.5px solid var(--gold-dark);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: all 0.2s;
  font-weight: 400;
}
.btn-outline:hover { background: var(--gold-dark); color: var(--white); }

/* ── GOLD DIVIDER ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 36px 5%;
  max-width: 800px;
  margin: 0 auto;
}
.gold-divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.gold-divider-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ── SECTION COMMON ── */
section { padding: 80px 5%; }
.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  text-align: center;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 52px;
  font-weight: 300;
}

/* ── CATEGORIES ── */
#categories { background: var(--white); padding-top: 70px; padding-bottom: 70px; }
.cat-carousel-wrapper { position: relative; overflow: hidden; }
.cat-carousel-track {
  display: flex;
  gap: 28px;
  padding: 20px 5% 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.cat-carousel-track::-webkit-scrollbar { display: none; }
.cat-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.cat-carousel-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.cat-carousel-btn:hover svg { stroke: white; }
.cat-carousel-btn svg { stroke: var(--gold-dark); transition: stroke 0.2s; }
.cat-carousel-prev { left: 12px; }
.cat-carousel-next { right: 12px; }
.cat-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.cat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); cursor: pointer; transition: all 0.2s; }
.cat-dot.active { background: var(--gold-dark); width: 20px; border-radius: 3px; }
.cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.cat-circle:hover { transform: translateY(-6px); }
.circle-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  overflow: hidden;
  transition: all 0.3s;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.12);
}
.cat-circle:hover .circle-wrap {
  border-color: var(--gold-dark);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
  transform: scale(1.04);
}
.circle-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.circle-label-text { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--gold-dark); text-align: center; padding: 4px; }
.circle-name { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); font-weight: 400; text-align: center; max-width: 120px; }

/* ── VIDEO ── */
#video-section { background: var(--ivory); }
.video-wrapper { max-width: 840px; margin: 0 auto; }
.video-fabric-preview { max-width: 840px; margin: 0 auto; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(201, 168, 76, 0.12); }
.vfp-image-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.vfp-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.vfp-image-wrap:hover .vfp-img { transform: scale(1.03); }
.vfp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(154, 116, 48, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  text-align: center;
}
.vfp-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}
.vfp-icon:hover { transform: scale(1.08); }
.vfp-label { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
.vfp-sub { font-size: 11px; color: rgba(255, 255, 255, 0.7); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── CEO MESSAGE ── */
#ceo-message {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 50%, var(--gold-pale) 100%);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ceo-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.ceo-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ceo-left { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ceo-monogram {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-light);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ceo-monogram img { width: 140px; height: 140px; object-fit: cover; display: block; }
.ceo-name-txt { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--text-dark); text-align: center; }
.ceo-title-txt { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); font-weight: 400; text-align: center; }
.ceo-gold-line { width: 40px; height: 1px; background: var(--gold); margin: 4px auto 0; }
.ceo-big-quote {
  font-family: var(--serif);
  font-size: 160px;
  line-height: 0.4;
  color: var(--gold-dark);
  opacity: 0.12;
  position: absolute;
  top: 10px;
  left: -10px;
  font-weight: 300;
  pointer-events: none;
}
.ceo-small-label { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-dark); font-weight: 400; margin-bottom: 22px; }
.ceo-message-text {
  font-family: 'Playfair Display', var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 2.1;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ── COLLECTIONS / PRODUCTS ── */
#collections { background: var(--ivory); }
.filter-bar { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  color: var(--text-mid);
  font-weight: 400;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  display: block;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 14px 48px rgba(201, 168, 76, 0.14); }
.product-img { aspect-ratio: 3/4; overflow: hidden; position: relative; background: var(--ivory); }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
  font-weight: 400;
}
.product-wa {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  text-decoration: none;
}
.product-card:hover .product-wa { opacity: 1; }
.product-body { padding: 18px 20px 22px; }
.product-cat { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 7px; }
.product-name { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--text-dark); margin-bottom: 8px; }
.product-desc { font-size: 12px; color: var(--text-light); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
.product-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 9px 18px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: opacity 0.2s;
}
.product-enquire:hover { opacity: 0.88; }
.wa-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 260px; }
.gal-item { overflow: hidden; position: relative; cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.gal-item:hover img { transform: scale(1.07); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122, 90, 24, 0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gal-item:hover .gal-overlay { background: rgba(122, 90, 24, 0.38); }
.gal-label { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--white); opacity: 0; transition: opacity 0.3s; }
.gal-item:hover .gal-label { opacity: 1; }

/* ── ABOUT ── */
#about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 10%;
}
.about-visual { position: relative; }
.about-img-box { border-radius: 2px; aspect-ratio: 4/5; overflow: hidden; background: var(--ivory); }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(154, 116, 48, 0.35);
}
.badge-num { font-family: var(--serif); font-size: 34px; font-weight: 300; line-height: 1; }
.badge-txt { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; font-weight: 400; text-align: center; padding: 0 8px; }
.about-text .section-label, .about-text .section-title { text-align: left; }
.about-text .section-title { margin-bottom: 20px; }
.about-body { color: var(--text-mid); font-size: 14px; line-height: 2; font-weight: 300; margin-bottom: 32px; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.pillar { border-left: 2px solid var(--gold-light); padding-left: 14px; }
.pillar-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); font-weight: 400; margin-bottom: 4px; }
.pillar-text { font-size: 12px; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(135deg, var(--ivory), var(--cream));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 48px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { padding: 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--serif); font-size: 42px; font-weight: 300; color: var(--gold-dark); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-mid); font-weight: 400; }

/* ── CONTACT ── */
#contact { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 960px; margin: 0 auto; }
.contact-info h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 16px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.c-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-lbl { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 3px; }
.c-val { font-size: 13px; color: var(--text-mid); line-height: 1.6; font-weight: 300; }
.wa-big {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 400;
  width: fit-content;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.wa-big:hover { opacity: 0.88; }
.form-side h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 7px; font-weight: 400; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-dark);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 300;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--gold-dark);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  width: 100%;
  transition: background 0.2s;
  font-weight: 400;
}
.form-submit:hover { background: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--cream); border-top: 1px solid var(--border); padding: 60px 10% 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 1.5px solid var(--gold-light); display: flex; align-items: center; justify-content: center; }
.footer-logo img { width: 48px; height: 48px; object-fit: contain; display: block; mix-blend-mode: multiply; border-radius: 50%; }
.footer-brand-name { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--text-dark); letter-spacing: 3px; text-transform: uppercase; line-height: 1; }
.footer-brand-name span { display: block; font-size: 8px; font-family: var(--sans); font-weight: 300; letter-spacing: 3.5px; color: var(--gold); text-transform: uppercase; margin-top: 3px; }
.footer-tagline { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--text-light); line-height: 1.6; }
.footer-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark); font-weight: 400; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { text-decoration: none; color: var(--text-mid); font-size: 12px; font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 11px; color: var(--text-light); font-weight: 300; }
.footer-heart { color: var(--gold); }
.footer-social-link { color: var(--text-light); transition: color 0.2s; display: inline-flex; }
.footer-social-link:hover { color: var(--gold-dark); }

/* ── FLOATING WHATSAPP ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.wa-float-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
  position: relative;
  flex-shrink: 0;
}
.wa-float-btn:hover { transform: scale(1.1); }
.wa-float-btn svg { width: 30px; height: 30px; }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: #25D366; animation: pulse 2.5s ease-out infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.75); opacity: 0; } }
.wa-tip {
  background: var(--text-dark);
  color: var(--white);
  font-size: 11px;
  padding: 7px 14px;
  border-radius: 4px;
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  order: -1;
  position: relative;
}
.wa-tip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--text-dark);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.wa-float:hover .wa-tip { opacity: 1; }

/* ── POPUP ── */
.popup-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(42, 31, 14, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(3px);
  padding: 20px;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box { background: var(--white); max-width: 500px; width: 100%; border-radius: 6px; overflow: hidden; position: relative; box-shadow: 0 24px 80px rgba(154, 116, 48, 0.25); }
.popup-top {
  background: linear-gradient(135deg, var(--blush-mid) 0%, var(--blush) 100%);
  padding: 40px 36px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.popup-logo { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; border: 1.5px solid rgba(154, 116, 48, 0.4); display: flex; align-items: center; justify-content: center; }
.popup-logo img { width: 70px; height: 70px; object-fit: contain; display: block; mix-blend-mode: multiply; }
.popup-top h2 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--text-dark); line-height: 1.2; margin-bottom: 10px; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 900px)
═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { display: flex; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 6% 48px; order: 2; }
  .hero-right { height: 55vw; max-height: 420px; order: 1; }
  .hero-right-overlay { background: linear-gradient(to bottom, transparent, var(--ivory)); }

  .ceo-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .ceo-big-quote { display: none; }

  #about { grid-template-columns: 1fr; gap: 48px; padding: 80px 6%; }
  .about-badge { right: 0; bottom: -20px; width: 110px; height: 110px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 360px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 600px)
═══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Hide desktop nav completely, show only mobile ticker */
  nav { display: none !important; }
  .promo-bar { display: none; }
  .mobile-ticker-bar { display: flex; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 5% 40px; order: 2; }
  .hero-right { height: 70vw; max-height: 340px; order: 1; }
  .hero-title { font-size: clamp(30px, 8vw, 44px); }
  .hero-sub { font-size: 13px; max-width: 100%; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-primary, .btn-outline { text-align: center; padding: 14px 24px; font-size: 11px; }

  /* Sections */
  section { padding: 60px 5%; }
  .section-title { font-size: clamp(24px, 7vw, 36px); }

  /* Categories */
  .cat-carousel-track { padding: 16px 5% 20px; gap: 20px; }
  .circle-wrap { width: 88px; height: 88px; }
  .circle-name { font-size: 9px; max-width: 88px; }
  .cat-carousel-btn { display: none; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-name { font-size: 15px; }
  .product-body { padding: 12px 14px 16px; }
  .product-enquire { font-size: 9px; padding: 8px 12px; }

  /* Gallery */
  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 280px; }

  /* About */
  #about { grid-template-columns: 1fr; padding: 60px 5%; gap: 36px; }
  .about-badge { right: 0; bottom: -16px; width: 90px; height: 90px; }
  .badge-num { font-size: 24px; }
  .about-pillars { grid-template-columns: 1fr; gap: 16px; }

  /* Stats */
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 32px 5%; }
  .stat-num { font-size: 32px; }

  /* CEO */
  #ceo-message { padding: 60px 5%; }
  .ceo-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .ceo-message-text { font-size: 15px; line-height: 1.9; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  #contact .section-sub { margin-bottom: 36px; }

  /* Footer */
  footer { padding: 48px 5% 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  /* Floating WhatsApp */
  .wa-float { bottom: 18px; right: 18px; }
  .wa-float-btn { width: 52px; height: 52px; }
  .wa-float-btn svg { width: 26px; height: 26px; }
  .wa-tip { display: none; }

  /* Popup */
  .popup-top { padding: 28px 24px 24px; }
  .popup-box { max-width: 100%; }
  .popup-top h2 { font-size: 22px; }
}

/* ── TOUCH IMPROVEMENTS ── */
@media (hover: none) {
  .product-wa { opacity: 1; }
  .cat-circle:hover { transform: none; }
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card:active { transform: translateY(-2px); }
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeInUp 0.7s ease both; }
.hero-eyebrow  { animation-delay: 0.1s; }
.hero-logo-display { animation-delay: 0.05s; }
.hero-title    { animation-delay: 0.2s; }
.hero-sub      { animation-delay: 0.35s; }
.hero-btns     { animation-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════

/* ═══════════════════════════════════════════════════════
   PRODUCT CARDS — REFERENCE DESIGN
   Gold & ivory brand colors. Rounded rect, colored image
   area, name row with "Enquire Now →", fabric tag chips.
   3-col desktop, 2-col mobile GRID.
═══════════════════════════════════════════════════════ */

/* Reset any old card styles */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── CARD SHELL ── */
.product-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    /* 3D shadow layers */
    box-shadow:
        0 2px 0 rgba(237,229,208,0.9),
        0 4px 12px rgba(42,31,14,0.06),
        0 12px 32px rgba(42,31,14,0.08),
        0 24px 56px rgba(42,31,14,0.05);
    border: 1px solid rgba(237,229,208,0.8);
    transition: transform 0.32s cubic-bezier(0.34,1.2,0.64,1),
                box-shadow 0.32s ease;
    cursor: pointer;
    position: relative;
}
.product-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow:
        0 2px 0 rgba(237,229,208,0.9),
        0 8px 20px rgba(42,31,14,0.10),
        0 24px 56px rgba(42,31,14,0.14),
        0 48px 80px rgba(42,31,14,0.08);
}

/* ── IMAGE AREA (gold-pale background, like sage green in reference) ── */
.product-img-area {
    width: 100%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 20px;
    position: relative;
    min-height: 220px;
    overflow: hidden;
}
/* Subtle inner shadow around image area */
.product-img-area::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    box-shadow: inset 0 -8px 20px rgba(154,116,48,0.06);
    pointer-events: none;
}
.product-img-area img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.12));
}
.product-card:hover .product-img-area img {
    transform: scale(1.05) translateY(-4px);
}
.product-img-no-image {
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
}
.product-img-no-image p {
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-align: center;
}

/* Badge (optional) — top-left of image area */
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    color: var(--gold-dark);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(201,168,76,0.3);
}

/* ── CARD BODY ── */
.product-body-new {
    padding: 16px 18px 20px;
    background: #ffffff;
}

/* Name + Enquire Now row */
.product-name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.product-name-new {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.2;
    flex: 1;
    margin: 0;
}
.product-enquire-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text-mid);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
    white-space: nowrap;
    padding-top: 3px;
    transition: color 0.2s;
    flex-shrink: 0;
}
.product-enquire-link:hover { color: var(--gold-dark); }
.product-enquire-link svg { stroke: currentColor; flex-shrink: 0; }

/* Short description */
.product-desc-new {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.75;
    font-weight: 300;
    margin: 0 0 14px;
}

/* Fabric tag chips */
.product-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.product-tag-chip {
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--text-mid);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
    padding: 4px 11px;
    border-radius: 20px;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}
.product-card:hover .product-tag-chip {
    background: var(--gold-pale);
    border-color: var(--gold-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 2%; }
    .product-img-area { padding: 16px 16px 12px; min-height: 160px; }
    .product-img-area img { max-height: 180px; }
    .product-body-new { padding: 12px 12px 16px; }
    .product-name-new { font-size: 16px; }
    .product-enquire-link { font-size: 10px; }
    .product-desc-new { font-size: 11px; margin-bottom: 10px; }
    .product-tag-chip { font-size: 9px; padding: 3px 8px; }
    .product-badge { font-size: 8px; padding: 4px 9px; }
}

/* Touch: always show, no hover dependency */
@media (hover: none) {
    .product-card:hover { transform: none; box-shadow: 0 2px 0 rgba(237,229,208,0.9), 0 4px 12px rgba(42,31,14,0.06), 0 12px 32px rgba(42,31,14,0.08); }
    .product-card:active { transform: scale(0.98); }
}

/* ═══════════════════════════════════════════════════════
   VIDEO SECTION — CONTAINED 840px CENTERED
   Autoplay muted loop, poster thumbnail, mute toggle
═══════════════════════════════════════════════════════ */
#video-section { background: var(--ivory); padding: 90px 5%; }
.video-wrapper { max-width: 840px; margin: 0 auto; }

.divino-vid-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 40px rgba(201,168,76,0.18);
    border: 1px solid var(--border);
}
.divino-vid-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mute/unmute button */
.divino-vid-sound {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(42,31,14,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px 8px 12px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.2s, transform 0.2s;
}
.divino-vid-sound:hover {
    background: rgba(154,116,48,0.8);
    transform: scale(1.04);
}
.divino-vid-lbl { white-space: nowrap; }

/* Placeholder when no video uploaded */
.divino-vid-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    border: 2px dashed var(--gold-light);
    background: var(--gold-pale);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.divino-vid-placeholder p {
    font-size: 12px;
    color: var(--gold-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.7;
    max-width: 340px;
}

@media (max-width: 600px) {
    .divino-vid-sound { bottom: 10px; right: 10px; padding: 6px 10px; }
    .divino-vid-lbl { display: none; }
}

