:root {
  --wine: #8B3A52;
  --wine-dark: #642337;
  --wine-light: #F9F0F2;
  --gold: #D4A359;
  --gold-dark: #B58438;
  --gold-light: #FDF7EC;
  --teal: #407B78;
  --teal-light: #EBF4F3;
  --bg: #FFFDF9;
  --card-bg: #FFFFFF;
  --text: #222222;
  --text-muted: #666666;
  --border: #F0E8DF;
  --shadow-sm: 0 4px 15px rgba(139, 58, 82, 0.06);
  --shadow-md: 0 10px 30px rgba(139, 58, 82, 0.1);
  --shadow-lg: 0 15px 40px rgba(139, 58, 82, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif-font {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Floating Utilities */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-wine {
  background: var(--wine-light);
  color: var(--wine);
}

.badge-gold {
  background: var(--gold-light);
  color: var(--gold-dark);
}

.badge-teal {
  background: var(--teal-light);
  color: var(--teal);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-wine {
  background: var(--wine);
  color: #FFF;
}

.btn-wine:hover {
  background: var(--wine-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold);
  color: #FFF;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFF;
}

.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Sticky Glassmorphic Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 163, 89, 0.2);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-wrap img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--gold);
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--wine);
}

.nav-menu a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--wine);
  background: var(--wine-light);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(139, 58, 82, 0.2);
  transition: var(--transition);
}

.phone-badge:hover {
  background: var(--wine);
  color: #FFF;
}

/* Hero Section */
.hero-section {
  padding: 3rem 0 4rem;
  background: linear-gradient(180deg, rgba(253, 247, 236, 0.6) 0%, rgba(255, 253, 249, 1) 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--wine);
  font-weight: 700;
}

.hero-title span {
  color: var(--gold-dark);
  font-style: italic;
}

.hero-tamil-badge {
  font-size: 1.05rem;
  background: #FFFFFF;
  border-left: 4px solid var(--teal);
  padding: 12px 18px;
  border-radius: 0 12px 12px 0;
  color: #333;
  box-shadow: var(--shadow-sm);
  line-height: 1.5;
}

.hero-subtext {
  color: var(--text-muted);
  font-size: 1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
}

.hero-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(212, 163, 89, 0.3);
}

.floating-badge-item {
  display: flex;
  flex-direction: column;
}

.floating-badge-item .val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wine);
}

.floating-badge-item .lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Offers / Bundle Section */
.offers-section {
  padding: 4.5rem 0;
  background: #FFFFFF;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-size: 2.4rem;
  color: var(--wine);
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.deal-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  text-align: center;
  position: relative;
  border: 2px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deal-card.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-light) 0%, #FFFFFF 100%);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--wine);
}

.deal-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #FFF;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.deal-title {
  font-size: 1.4rem;
  color: var(--wine);
  margin-bottom: 0.4rem;
}

.deal-price {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--text);
  line-height: 1;
  margin: 1.2rem 0;
}

.deal-price span {
  font-size: 1.3rem;
  vertical-align: super;
  margin-right: 2px;
}

.deal-features {
  list-style: none;
  margin-bottom: 1.75rem;
  text-align: left;
}

.deal-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.deal-features li svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Products Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: var(--bg);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}

.tab-btn {
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--wine);
  color: var(--wine);
}

.tab-btn.active {
  background: var(--wine);
  color: #FFFFFF;
  border-color: var(--wine);
  box-shadow: 0 4px 15px rgba(139, 58, 82, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(240, 232, 223, 0.8);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 163, 89, 0.4);
}

.product-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #F8F5F2;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.product-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.product-code {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.product-name {
  font-size: 1.15rem;
  color: var(--wine);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.product-action {
  margin-top: auto;
}

.product-action .btn {
  width: 100%;
}

/* Contact & Social Hub */
.contact-section {
  padding: 5rem 0 3rem;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--wine-light) 100%);
  border-top: 1px solid var(--border);
}

.contact-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card h2 {
  font-size: 2.4rem;
  color: var(--wine);
  margin-bottom: 0.8rem;
}

.social-links-wrap {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.2rem 0;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  background: var(--wine);
  color: #FFFFFF;
  border-color: var(--wine);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.social-btn.wa:hover {
  background: #25D366;
  border-color: #25D366;
}

.social-btn.ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.detail-item h4 {
  font-size: 1rem;
  color: var(--wine);
  margin-bottom: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.detail-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background: var(--wine-dark);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 1.8rem 0;
  font-size: 0.85rem;
}

footer a {
  color: var(--gold);
  text-decoration: underline;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background: #25D366;
  color: #FFF;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-wa-btn svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-eyebrow {
    align-self: center;
  }
  .hero-tamil-badge {
    border-left: none;
    border-top: 4px solid var(--teal);
    border-radius: 12px;
  }
  .deals-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  .deal-card.popular {
    transform: none;
  }
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-card img {
    height: 380px;
  }
  .phone-badge span {
    display: none;
  }
}
