/* ── Red Bottle Consultancy — Shared Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

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

:root {
  --wine:    #B81324;
  --wine-d:  #7C0E1B;
  --wine-l:  #D81F35;
  --gold:    #C8973A;
  --gold-l:  #E2B05A;
  --cream:   #FAF7F2;
  --cream-d: #F0EBE1;
  --charcoal:#2C2826;
  --mid:     #5A534C;
  --muted:   #8C847C;
  --white:   #FFFFFF;
  --border:  rgba(184,19,36,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ── NAV ── */
nav {
  background: var(--wine-d);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-logo-text span { color: var(--gold); }

.logo-placeholder {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wine-d);
  flex-shrink: 0;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 1.1rem;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.social-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 1.8; }

.social-icon:hover { background: var(--gold); border-color: var(--gold); }
.social-icon:hover svg { stroke: var(--wine-d); }

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0 0.75rem;
  height: 68px;
  line-height: 68px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--wine-d) !important;
  padding: 0 1.25rem !important;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--gold-l) !important; color: var(--wine-d) !important; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--wine-d);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-left: 12px;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── SECTION COMMON ── */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--cream-d); }
.section-dark { background: var(--charcoal); }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 3rem;
}

.section-sub.light { color: rgba(255,255,255,0.65); }

.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0 2rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--wine-d);
  padding: 4rem 2rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}

.page-hero-content { max-width: 1100px; margin: 0 auto; position: relative; }

.breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a { color: var(--gold); text-decoration: none; }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  max-width: 560px;
  font-weight: 300;
}

/* ── FEATURE LIST ── */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
  padding: 1rem;
  background: var(--white);
  border: 0.5px solid var(--border);
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.process-step {
  padding: 2rem 1.75rem;
  border-left: 1px solid var(--border);
}

.process-step:first-child { border-left: none; }

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,19,36,0.1);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.process-step p { font-size: 0.85rem; color: var(--mid); line-height: 1.6; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-row { display: flex; align-items: flex-start; gap: 1rem; }

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(184,19,36,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; stroke: var(--wine); fill: none; stroke-width: 1.8; }

.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-value { font-size: 0.97rem; color: var(--charcoal); font-weight: 500; }
.contact-value a { color: var(--wine); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

.contact-form { background: var(--white); border: 1px solid var(--border); padding: 2rem; }
.contact-form h3 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--charcoal); }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--wine); }

.form-group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
footer {
  background: var(--wine-d);
  color: rgba(255,255,255,0.65);
  padding: 3rem 2rem;
  border-top: 2px solid var(--gold);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.38);
}

.gstin-badge {
  background: rgba(200,151,58,0.15);
  border: 0.5px solid rgba(200,151,58,0.4);
  color: var(--gold);
  font-size: 0.7rem;
  padding: 3px 10px;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 1rem;
}

/* ── DARK CTA BANNER ── */
.cta-banner {
  background: var(--wine-d);
  text-align: center;
  padding: 5rem 2rem;
}

.cta-banner .section-label { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-left: none; border-top: 1px solid var(--border); padding: 1.5rem 0; }
  .process-step:first-child { border-top: none; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 1.25rem; }
}

/* ── Mobile Nav Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--wine-d);
    flex-direction: column;
    border-top: 1px solid rgba(200,151,58,0.3);
    z-index: 200;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { height: auto; line-height: 1; padding: 1rem 2rem; border-bottom: 0.5px solid rgba(255,255,255,0.07); }
}

/* ════════════════════════════════════════════════════════
   BLOG — Listing page
   ════════════════════════════════════════════════════════ */

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.topic-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--mid);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.topic-pill:hover { border-color: var(--wine); color: var(--wine); }

.topic-pill.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}

/* Featured post */
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--white);
  border: 0.5px solid var(--border);
  text-decoration: none;
  color: inherit;
  margin-bottom: 4rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.featured-post:hover { box-shadow: 0 18px 40px rgba(44,40,38,0.1); transform: translateY(-2px); }

.featured-thumb {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.featured-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.featured-label {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gold);
  color: var(--wine-d);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  z-index: 2;
}

.featured-body {
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 0.6rem 0 0.85rem;
  color: var(--charcoal);
}

.featured-body p { color: var(--mid); font-size: 0.95rem; margin-bottom: 1.25rem; }

.blog-card-meta {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-card-readmore {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wine);
  letter-spacing: 0.02em;
}

.blog-card-readmore::after { content: ' →'; }

/* Category sections */
.category-section { margin-bottom: 4rem; }

.category-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.85rem;
}

.category-section-head h2 {
  font-size: 1.4rem;
  color: var(--charcoal);
}

.category-section-count {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 0.5px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover { box-shadow: 0 14px 32px rgba(44,40,38,0.1); transform: translateY(-3px); }

.blog-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.blog-card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(44,40,38,0.55);
  backdrop-filter: blur(2px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 11px;
  z-index: 2;
}

.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }

.blog-card-body h3 { font-size: 1.08rem; line-height: 1.4; color: var(--charcoal); }

.blog-card-body p { font-size: 0.86rem; color: var(--mid); flex: 1; }

/* ════════════════════════════════════════════════════════
   BLOG — Article page
   ════════════════════════════════════════════════════════ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3.5rem;
  align-items: start;
}

.article-hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 2.25rem;
}

.article-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-header { margin-bottom: 2rem; }

.article-tag {
  display: inline-block;
  background: rgba(184,19,36,0.08);
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 13px;
  margin-bottom: 1rem;
}

.article-header h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.article-meta span:not(:last-child)::after { content: '·'; margin-left: 1rem; color: var(--border); }

.article-intro {
  font-size: 1.08rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

.article-content { color: var(--charcoal); font-size: 1rem; line-height: 1.85; }

.article-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.1rem;
  color: var(--charcoal);
  padding-top: 0.4rem;
}

.article-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.85rem;
  color: var(--charcoal);
}

.article-content p { margin-bottom: 1.25rem; }

.article-content ul, .article-content ol { margin: 0 0 1.4rem; padding-left: 1.4rem; }
.article-content li { margin-bottom: 0.6rem; }
.article-content strong { color: var(--charcoal); font-weight: 600; }

.article-callout {
  background: var(--cream-d);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.article-callout p { margin: 0; font-size: 0.95rem; color: var(--mid); }

.article-divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0 2.5rem; }

.article-author { display: flex; gap: 1.25rem; margin-bottom: 3rem; }

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  overflow: hidden;
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-name { font-weight: 600; color: var(--charcoal); margin-bottom: 0.3rem; }
.author-bio { font-size: 0.88rem; color: var(--mid); line-height: 1.65; max-width: 520px; }

.related-posts h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--charcoal); }

.related-card {
  display: block;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.related-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.35rem;
}

.related-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }

.sidebar-card { background: var(--white); border: 0.5px solid var(--border); padding: 1.5rem; }

.sidebar-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1rem;
}

.sidebar-toc { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

.sidebar-toc a {
  font-size: 0.85rem;
  color: var(--mid);
  text-decoration: none;
  line-height: 1.4;
  display: block;
}

.sidebar-toc a:hover { color: var(--wine); }

@media (max-width: 900px) {
  .featured-post { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 200px; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar-card { flex: 1; min-width: 240px; }
}

@media (max-width: 480px) {
  .featured-body { padding: 1.75rem; }
  .article-author { flex-direction: column; }
}

/* ── FORMS (shared across pages) ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-sub { font-size: 0.88rem; color: var(--mid); margin-bottom: 1.5rem; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 0.85rem; line-height: 1.5; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--wine);
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  text-align: center;
  padding: 7px 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announcement-bar a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.announcement-bar a:hover { opacity: 0.8; }
.ann-sep { color: rgba(255,255,255,0.35); }

/* ── WHATSAPP SECTION ── */
.whatsapp-bar {
  background: #25D366;
  padding: 1rem 2rem;
  text-align: center;
}
.whatsapp-bar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #128C7E;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.whatsapp-bar a:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.whatsapp-bar a svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-bar p { color: rgba(255,255,255,0.9); font-size: 0.85rem; margin-top: 6px; }

/* ── CAN SKU CARDS ── */
.sku-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.sku-card { background: var(--white); border: 1px solid var(--border); padding: 2rem 1.75rem; text-align: center; transition: box-shadow 0.2s, transform 0.2s; position: relative; }
.sku-card:hover { box-shadow: 0 14px 32px rgba(44,40,38,0.1); transform: translateY(-3px); }
.sku-card img { height: 140px; width: auto; object-fit: contain; margin: 0 auto 1.25rem; display: block; }
.sku-size { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 700; color: var(--wine); }
.sku-desc { font-size: 0.85rem; color: var(--mid); margin: 0.5rem 0 1.25rem; line-height: 1.6; }
.sku-features { list-style: none; font-size: 0.82rem; color: var(--mid); text-align: left; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 6px; }
.sku-features li::before { content: '✓ '; color: var(--wine); font-weight: 700; }

/* ── IMAGE HERO SECTION ── */
.img-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 380px; }
.img-split-content { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 3rem; }
.img-split-photo { position: relative; overflow: hidden; min-height: 320px; }
.img-split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-split-photo::after { content: ''; position: absolute; inset: 0; background: rgba(184,19,36,0.12); }
@media (max-width: 768px) { .img-split { grid-template-columns: 1fr; } .img-split-photo { min-height: 220px; } .img-split-content { padding: 2rem 1.5rem; } }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; }
.faq-question:hover { color: var(--wine); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: rgba(184,19,36,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.25s; }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--wine); fill: none; stroke-width: 2.5; transition: transform 0.25s; }
.faq-item.open .faq-icon { background: var(--wine); transform: rotate(180deg); }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--mid); font-size: 0.95rem; line-height: 1.75; }
.faq-answer-inner a { color: var(--wine); }
.faq-category-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--wine); margin: 2.5rem 0 0.5rem; }
