:root {
  --bg: #fffaf6;
  --bg-alt: #faf0e8;
  --ink: #2a1f24;
  --muted: #7a6b71;
  --accent: #9e1b3a;
  --accent-dark: #6d0f27;
  --gold: #b39a5a;
  --radius: 18px;
  --shadow: 0 18px 40px -20px rgba(109, 15, 39, 0.35);
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: "Cormorant Garamond", serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.005em; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 12px 26px -12px rgba(158, 27, 58, 0.7);
}
.btn:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(158,27,58,0.75); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(42,31,36,0.2); box-shadow: none; }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-small { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-gold {
  background: linear-gradient(135deg, #c9ad63, #a98c44);
  color: #2a1f24; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.82rem;
  box-shadow: 0 12px 26px -14px rgba(0,0,0,0.6);
}
.btn-gold:hover { filter: brightness(1.07); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 250, 246, 0.82);
  border-bottom: 1px solid rgba(42,31,36,0.06);
}
.brand-row { display: flex; align-items: center; justify-content: center; position: relative; padding: 0.7rem 0 0.4rem; }
.nav { display: flex; align-items: center; justify-content: center; padding: 0 0 0.7rem; }
.brand { display: inline-flex; align-items: center; }
.brand-text {
  font-family: "Cormorant Garamond", serif; font-size: clamp(1.5rem, 3.4vw, 2.1rem); font-weight: 700;
  letter-spacing: 0.06em; line-height: 1; text-transform: uppercase;
  background: linear-gradient(120deg, #c9ad63, #9c7f3c);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  position: relative; padding-bottom: 0.4rem;
}
.brand-text::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-links { list-style: none; display: flex; align-items: center; gap: 1.8rem; margin: 0 auto; }
.nav-links a { font-size: 0.92rem; font-weight: 400; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: var(--accent); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(158,27,58,0.18), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(179,154,90,0.18), transparent 40%),
    var(--bg);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slides::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,12,16,0.45) 0%, rgba(20,12,16,0.20) 45%, rgba(20,12,16,0.35) 100%);
}
.hero-content { position: relative; z-index: 2; display: flex; justify-content: flex-end; }

/* Hero translucent panel (Vaarahi/Singhania style) */
.hero-card {
  max-width: 460px; width: 100%;
  background: linear-gradient(160deg, rgba(109,15,39,0.62), rgba(42,31,36,0.55));
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(179,154,90,0.55);
  border-radius: var(--radius);
  padding: 2.6rem 2.2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.hero-card .eyebrow { color: var(--gold); }
.hero-card .hero-title { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 0.9rem; }
.hero-card .hero-sub { color: rgba(255,255,255,0.88); margin-inline: auto; font-size: 1rem; }

/* Hero side info chips */
.hero-side { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; display: grid; gap: 1.4rem; width: 170px; justify-items: center; }
.hero-side-left { left: 2.5rem; }
.hero-side-right { right: 2.5rem; }
.hero-thumb {
  display: block; width: 130px; height: 130px; overflow: hidden;
  background: linear-gradient(135deg, #f7d8e0, #b35a78);
  box-shadow: 0 16px 36px -18px rgba(42,31,36,0.55);
  border: 4px solid rgba(255,255,255,0.85);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-thumb .ht-img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }
.hero-thumb:hover { transform: translateY(-5px) scale(1.04); box-shadow: 0 24px 44px -18px rgba(109,15,39,0.55); }
.t-shape1 { border-radius: 50%; width: 120px; height: 120px; }
.t-shape2 { border-radius: 48% 52% 55% 45% / 50% 45% 55% 50%; }
.t-shape3 { border-radius: 22px; width: 110px; height: 140px; }
.hero-side-left .hero-thumb:nth-child(2) { margin-left: 2.2rem; }
.hero-side-right .hero-thumb:nth-child(2) { margin-right: 2.2rem; }
@media (max-width: 1180px) {
  .hero-side { display: none; }
}
.hero-content { max-width: 640px; padding-block: 4rem; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); margin-bottom: 1.2rem; letter-spacing: -0.01em; }
.hero-title em {
  font-style: italic; font-weight: 700;
  background: linear-gradient(120deg, var(--gold), #e7d39a);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
}
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 460px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.8rem; color: var(--muted); letter-spacing: 0.2em; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.highlight { text-align: center; }
.highlight strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.6rem; color: var(--accent-dark); }
.highlight span { font-size: 0.82rem; color: var(--muted); }

/* Sections */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); position: relative; display: inline-block; padding-bottom: 0.6rem; }
.section-head h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 64px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.section-sub { color: var(--muted); margin-top: 0.6rem; }
.grid { display: grid; gap: 1.5rem; }

/* Collection cards */
.cards { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 12px 30px -22px rgba(42,31,36,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-art {
  width: 100%; height: 150px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem; font-weight: 700;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.card-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.card-art.no-img::after { content: attr(data-letter); }
.card h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.card-link { color: var(--accent); font-weight: 500; font-size: 0.9rem; }
.card-link:hover { color: var(--accent-dark); }

/* Featured */
.featured-grid { grid-template-columns: repeat(3, 1fr); }
.feature { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 30px -22px rgba(42,31,36,0.4); transition: transform 0.25s ease; }
.feature:hover { transform: translateY(-6px); }
.feature-img { height: 180px; background: linear-gradient(135deg, var(--c1), var(--c2)); overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-live { background-size: cover; background-position: center; }
a.feature { color: inherit; }
.feature-body { padding: 1.4rem; }
.tag { display: inline-block; background: var(--bg-alt); color: var(--accent-dark); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; padding: 0.25rem 0.7rem; border-radius: 999px; margin-bottom: 0.7rem; }
.feature-body h3 { font-size: 1.5rem; }
.feature-body p { font-size: 0.9rem; color: var(--muted); margin: 0.3rem 0 0.9rem; }
.price { font-weight: 600; color: var(--accent-dark); font-size: 1.15rem; }
.price small { color: var(--muted); text-decoration: line-through; font-weight: 400; font-size: 0.85rem; margin-left: 0.4rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 3rem; align-items: center; }
.about-art { position: relative; display: grid; place-items: center; min-height: 360px; }
.about-art .blob {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  animation: morph 9s ease-in-out infinite;
  opacity: 0.92;
}
.about-art span { position: relative; z-index: 2; color: #fff; font-family: "Cormorant Garamond", serif; font-size: 1.6rem; font-weight: 600; letter-spacing: 0.05em; }
@keyframes morph { 0%,100%{border-radius:42% 58% 63% 37% / 41% 44% 56% 59%} 50%{border-radius:58% 42% 38% 62% / 56% 38% 62% 44%} }
.about-text h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.ticks { list-style: none; margin-top: 1rem; }
.ticks li { position: relative; padding-left: 1.8rem; margin-bottom: 0.5rem; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Testimonials */
.testimonials { grid-template-columns: repeat(3, 1fr); }
.quote { background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: 0 12px 30px -22px rgba(42,31,36,0.4); border-top: 3px solid var(--accent); }
.quote p { font-style: italic; color: var(--ink); margin-bottom: 1rem; }
.quote footer { font-weight: 500; color: var(--accent-dark); font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.map-wrap { grid-column: 1 / -1; display: grid; gap: 0.8rem; justify-items: start; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-list { list-style: none; }
.contact-list li { padding: 0.6rem 0; border-bottom: 1px solid rgba(42,31,36,0.08); font-size: 0.95rem; }
.contact-list strong { display: inline-block; width: 80px; color: var(--accent-dark); }
.contact-form { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.4rem; font-size: 0.85rem; font-weight: 500; }
.contact-form input, .contact-form textarea {
  font-family: inherit; font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(42,31,36,0.12);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.form-note { font-size: 0.8rem; color: var(--muted); text-align: center; }

/* Footer */
.site-footer { background: var(--ink); color: #e8dde2; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; padding-bottom: 2.5rem; }
.brand-footer .brand-text, .brand-footer .brand-text small { color: #fff; }
.footer-tag { color: #b9a8af; font-size: 0.9rem; margin-top: 0.8rem; max-width: 260px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-cols h4 { font-family: "Poppins", sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; margin-bottom: 0.9rem; }
.footer-cols a { display: block; font-size: 0.88rem; color: #b9a8af; padding: 0.25rem 0; transition: color 0.2s; }
.footer-cols a:hover { color: #fff; }
.footer-mission h4 { font-family: "Poppins", sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.9rem; }
.footer-mission p { font-size: 0.88rem; color: #c8bac0; line-height: 1.7; max-width: 320px; }
.footer-bottom { display: flex; justify-content: space-between; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: #b9a8af; }

/* Promo band */
.promo-band { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; }
.promo-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 2.2rem 0; flex-wrap: wrap; }
.promo-eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; font-weight: 600; opacity: 0.9; }
.promo-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.promo-text { opacity: 0.92; margin-top: 0.3rem; }
.btn-light { background: #fff; color: var(--accent-dark); }
.btn-light:hover { background: var(--ink); color: #fff; }

/* Category tiles (Target-style) */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cat-tile {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--c1), var(--c2));
  background-size: cover; background-position: center;
  box-shadow: 0 14px 34px -24px rgba(42,31,36,0.5); transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.cat-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,12,16,0.6), rgba(20,12,16,0.05) 60%); transition: background 0.3s ease; }
.cat-tile:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -26px rgba(42,31,36,0.6); }
.cat-tile:hover::after { background: linear-gradient(to top, rgba(122,46,74,0.7), rgba(20,12,16,0.1) 70%); }
.cat-name {
  color: #fff;
  font-family: "Cormorant Garamond", serif; font-size: 1.7rem; font-weight: 700; line-height: 1.1;
}
.cat-meta {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.cat-shop {
  color: #fff; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
  opacity: 0; transform: translateY(6px); transition: opacity 0.25s ease, transform 0.25s ease;
}
.cat-tile:hover .cat-shop { opacity: 0.95; transform: none; }

/* Promo cards */
.promo-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.promo-card {
  position: relative; display: block; min-height: 240px; border-radius: var(--radius); overflow: hidden;
  background: #ddd center/cover no-repeat; box-shadow: 0 14px 34px -24px rgba(42,31,36,0.5);
  transition: transform 0.25s ease;
}
.promo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,12,16,0.6), rgba(20,12,16,0.1)); }
.promo-card:hover { transform: translateY(-5px); }
.promo-card-body { position: absolute; left: 1.3rem; bottom: 1.2rem; z-index: 2; color: #fff; }
.promo-card-body .eyebrow { color: #fff; opacity: 0.9; }
.promo-card-body h3 { font-size: 1.6rem; }
.promo-card-body .card-link { color: #fff; font-weight: 600; }

@media (max-width: 760px) {
  .cat-grid, .promo-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .cat-grid { grid-template-columns: 1fr; }
  .promo-cards { grid-template-columns: 1fr; }
}

/* About (simplified) */
.about-simple { padding: 3.5rem 0; text-align: center; }
.about-simple-inner { max-width: 640px; margin: 0 auto; }
.about-simple h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.8rem; }
.about-simple p { color: var(--muted); }
.about-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.4rem; }
.about-pills span {
  background: var(--bg-alt); color: var(--accent-dark); font-size: 0.82rem; font-weight: 500;
  padding: 0.45rem 1rem; border-radius: 999px;
}

/* Telugu text */
.te { font-family: "Noto Sans Telugu", "Poppins", sans-serif; }
.te-tag { color: var(--accent-dark); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; }

/* Nav search button */
.nav-search { background: none; border: none; cursor: pointer; font: inherit; font-size: 0.92rem; color: var(--ink); padding: 0; transition: color 0.2s; }
.nav-search:hover { color: var(--accent); }

/* Trust badges strip */
.trust-strip { background: var(--bg-alt); padding: 1.6rem 0; border-top: 1px solid rgba(179,154,90,0.3); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: 0.7rem; justify-content: center; text-align: center; }
.trust-ico { font-size: 1.5rem; }
.trust-item strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.15rem; color: var(--accent-dark); line-height: 1.1; }
.trust-item span { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0.5rem; } }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; background: rgba(20,12,16,0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); z-index: 300; display: none; }
.search-overlay.open { display: block; }
.search-box { background: var(--bg); max-width: 720px; margin: 6vh auto 0; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; max-height: 84vh; display: flex; flex-direction: column; }
.search-bar { display: flex; gap: 0.6rem; align-items: center; }
.search-bar input { flex: 1; font: inherit; font-size: 1.05rem; padding: 0.8rem 1rem; border: 1.5px solid rgba(42,31,36,0.15); border-radius: 12px; background: #fff; }
.search-bar input:focus { outline: none; border-color: var(--accent); }
.search-bar button { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--muted); padding: 0.3rem 0.5rem; }
.search-hint { font-size: 0.85rem; color: var(--muted); margin: 0.7rem 0.2rem; }
.search-results { overflow-y: auto; display: grid; gap: 0.5rem; }
.sr-card { display: flex; align-items: center; gap: 0.8rem; padding: 0.5rem; border-radius: 10px; transition: background 0.15s; }
.sr-card:hover { background: var(--bg-alt); }
.sr-card img { width: 54px; height: 68px; object-fit: cover; border-radius: 8px; flex: none; }
.sr-info strong { display: block; font-size: 0.95rem; color: var(--ink); }
.sr-info small { font-size: 0.8rem; color: var(--muted); }

/* Local favourites chips */
.fav-chips { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.fav-chip {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  background: #fff; border: 1.5px solid rgba(158,27,58,0.18); border-radius: 14px;
  padding: 0.9rem 1.3rem; min-width: 130px; box-shadow: 0 12px 30px -24px rgba(42,31,36,0.4);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.fav-chip .te { font-size: 1.1rem; font-weight: 600; color: var(--accent-dark); }
.fav-chip small { font-size: 0.78rem; color: var(--muted); }
.fav-chip:hover { transform: translateY(-4px); background: var(--accent); }
.fav-chip:hover .te, .fav-chip:hover small { color: #fff; }

/* Announcement bar */
.announce-bar {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  color: #fff; overflow: hidden;
}
.announce-bar .marquee { overflow: hidden; }
.marquee-track {
  display: inline-flex; align-items: center; gap: 1.4rem;
  white-space: nowrap; padding: 0.5rem 0;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  will-change: transform; animation: marquee 28s linear infinite;
}
.marquee-track span { color: #fff; }
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Side social strip */
.side-social {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 90;
  display: flex; flex-direction: column; gap: 2px;
}
.side-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--accent); color: #fff; transition: background 0.2s ease, transform 0.2s ease;
}
.side-social a:first-child { border-top-right-radius: 8px; }
.side-social a:last-child { border-bottom-right-radius: 8px; }
.side-social a:hover { background: var(--accent-dark); transform: translateX(2px); }

/* Floating action buttons */
.fab-stack {
  position: fixed; right: 1rem; bottom: 1.2rem; z-index: 95;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.fab {
  width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4); transition: transform 0.2s ease, opacity 0.2s ease;
}
.fab:hover { transform: translateY(-3px); }
.fab-wa { background: #25d366; }
.fab-call { background: var(--accent); }
.fab-map { background: var(--gold); }
.fab-top { background: var(--ink); opacity: 0; pointer-events: none; }
.fab-top.show { opacity: 1; pointer-events: auto; }

@media (max-width: 600px) {
  .side-social { top: auto; bottom: 1.2rem; transform: none; flex-direction: row; left: 1rem; gap: 6px; }
  .side-social a { border-radius: 50%; width: 42px; height: 42px; }
  .fab { width: 46px; height: 46px; }
}

/* Product carousels */
.carousel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.carousel-actions { display: flex; align-items: center; gap: 1rem; }
.view-all { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; white-space: nowrap; transition: color 0.2s; }
.view-all:hover { color: var(--accent); }
.carousel-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); position: relative; padding-bottom: 0.5rem; }
.carousel-head h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 48px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--gold)); }
.carousel-nav { display: flex; gap: 0.5rem; }
.carousel-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(42,31,36,0.15);
  background: #fff; cursor: pointer; font-size: 1.3rem; color: var(--accent-dark); line-height: 1; transition: all 0.2s ease;
}
.carousel-nav button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.carousel {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(200px, 1fr);
  gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.6rem; scrollbar-width: thin;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: rgba(42,31,36,0.18); border-radius: 999px; }
@media (min-width: 700px) { .carousel { grid-auto-columns: minmax(230px, 1fr); } }
.p-card { scroll-snap-align: start; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px -22px rgba(42,31,36,0.4); transition: transform 0.2s ease; display: flex; flex-direction: column; }
.p-card:hover { transform: translateY(-5px); }
.p-frame { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; }
.p-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.p-card:hover .p-frame img { transform: scale(1.06); }
.p-wish {
  position: absolute; top: 0.55rem; right: 0.55rem; z-index: 3;
  width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.9); color: var(--accent); font-size: 1.05rem; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 4px 12px -6px rgba(0,0,0,0.4);
  transition: transform 0.15s ease, background 0.2s ease;
}
.p-wish:hover { transform: scale(1.1); }
.p-wish.on { color: #e0245e; }
.p-shop {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: linear-gradient(135deg, #c9ad63, #a98c44); color: #2a1f24;
  text-align: center; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.55rem 0; transform: translateY(100%); transition: transform 0.25s ease;
}
.p-card:hover .p-shop { transform: translateY(0); }
.p-badge { position: absolute; top: 0.5rem; left: 0.5rem; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; padding: 0.2rem 0.55rem; border-radius: 999px; }
.p-badge.b-new { background: #1f8a4c; color: #fff; }
.p-badge.b-sold { background: #c0392b; color: #fff; }
.p-name { padding: 0.7rem 0.8rem 0; font-size: 0.92rem; font-weight: 500; color: var(--ink); }
.p-price { padding: 0.2rem 0.8rem 0.9rem; font-weight: 600; color: var(--accent-dark); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll, .about-art .blob { animation: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .featured-grid, .testimonials { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1.2rem 1.5rem 1.8rem;
    gap: 1rem;
    box-shadow: var(--shadow);
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.3s ease;
  }
  .nav-links.open { clip-path: inset(0 0 0 0); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}
@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile polish */
@media (max-width: 680px) {
  .section { padding: 3rem 0; }
  .section-head { margin-bottom: 2rem; }
  .container { width: min(100% - 2rem, var(--maxw)); }
  .announce-bar { font-size: 0.72rem; padding: 0.45rem 0; }
  .announce-bar .container { white-space: normal; line-height: 1.5; }

  .hero { min-height: 76vh; }
  .hero-content { padding-block: 2.5rem; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { gap: 0.7rem; }
  .hero-actions .btn { flex: 1; text-align: center; padding: 0.8rem 1rem; }

  .promo-band-inner { flex-direction: column; align-items: flex-start; gap: 1rem; text-align: left; }
  .promo-band .btn-light { width: 100%; text-align: center; }

  .cat-grid { gap: 0.8rem; }
  .cat-name { font-size: 1.4rem; }

  .hero-content { justify-content: center; }
  .hero-card { max-width: 100%; padding: 2rem 1.4rem; }
  .carousel-head h2, .section-head h2 { font-size: 1.7rem; }
  .carousel { grid-auto-columns: minmax(150px, 70%); }

  .feature-img { height: 220px; }

  .contact-info h2 { font-size: 2rem; }
  .map-wrap iframe { height: 240px; }

  .fab { width: 48px; height: 48px; }
  .side-social { bottom: 5.5rem; }

  .btn { padding: 0.8rem 1.4rem; }
}

@media (max-width: 420px) {
  .nav .brand-text { font-size: 1.15rem; }
  .hero h1 { font-size: clamp(2.1rem, 12vw, 3rem); }
  .carousel { grid-auto-columns: minmax(140px, 78%); }
}
