/* ==========================================================
   SAZI DHAZI — LADIES' ETHNIC & FASHION WEAR
   Design System: Luxury White & Baby Pink Boutique Theme
   Fully Mobile Responsive & Progressive Web App Ready
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-pure: #FFFFFF;
  --bg-cream: #FFF9FA;
  --bg-pink-soft: #FFF0F5;
  --bg-pink-light: #FCE4EC;
  --bg-pink-medium: #F8BBD0;
  
  /* Boutique Accent Colors from Logo */
  --primary-pink: #E88EAA;
  --primary-wine: #78112B;
  --primary-wine-hover: #5D0B20;
  --accent-gold: #C59B5F;
  --accent-gold-light: #DFB27B;
  --accent-gold-soft: #F9F2E7;

  /* Text & Border */
  --text-main: #2A2125;
  --text-muted: #6E5D65;
  --text-light: #9B8992;
  --border-pink: #F3D3DF;
  --border-soft: #EFE4E9;

  /* Status Colors */
  --status-open-bg: #E8F5E9;
  --status-open-text: #2E7D32;
  --status-closed-bg: #FFF3E0;
  --status-closed-text: #E65100;
  
  /* WhatsApp Brand */
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(120, 17, 43, 0.04);
  --shadow-md: 0 6px 20px rgba(120, 17, 43, 0.08);
  --shadow-lg: 0 12px 36px rgba(120, 17, 43, 0.12);
  --shadow-hover: 0 14px 40px rgba(120, 17, 43, 0.16);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  --container-max: 1200px;
  --transition-smooth: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px; /* Space for mobile app bottom bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================
   ANNOUNCEMENT TOP BAR
   ========================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #78112B, #941F3C, #78112B);
  color: #FFF;
  font-size: 0.82rem;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}

.top-bar-item:hover {
  opacity: 1;
  color: #FFD2DF;
}

/* ==========================================================
   MAIN NAVBAR / HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-pink);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(120, 17, 43, 0.15);
  border: 2px solid var(--accent-gold);
  transition: transform 0.3s ease;
}

.brand-wrapper:hover .brand-logo-img {
  transform: scale(1.05) rotate(2deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-wine);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Desktop Nav Links */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 6px 2px;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-wine);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-wine);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition-smooth);
}

.status-badge-open {
  background: var(--status-open-bg);
  color: var(--status-open-text);
  border: 1px solid #A5D6A7;
}

.status-badge-closed {
  background: var(--status-closed-bg);
  color: var(--status-closed-text);
  border: 1px solid #FFCC80;
}

/* Pulsing Dots */
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.pulse-green {
  background-color: #2E7D32;
  box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
  animation: pulseGreen 1.8s infinite;
}

.pulse-amber {
  background-color: #E65100;
  box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.7);
  animation: pulseAmber 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 125, 50, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

@keyframes pulseAmber {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(230, 81, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 81, 0, 0); }
}

/* Mobile Toggle Hamburger */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--bg-pink-soft);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 992px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-wine);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* PWA Install Button */
.btn-install-app {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-pink-light);
  color: var(--primary-wine);
  border: 1px solid var(--border-pink);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-install-app:hover {
  background: var(--primary-pink);
  color: #FFF;
  transform: translateY(-1px);
}

/* ==========================================================
   HERO BANNER
   ========================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFF8FA 40%, #FCE4EC 100%);
  padding: 60px 0 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-pink);
}

.hero-decoration-circle {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 187, 208, 0.45) 0%, rgba(255, 240, 245, 0) 70%);
  top: -100px;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-pink);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-wine);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.15;
  color: var(--primary-wine);
  margin-bottom: 16px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.4rem;
  }
}

.hero-title span.highlight {
  color: var(--accent-gold);
  font-style: italic;
  display: inline-block;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 560px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  background: #FFFFFF;
}

.hero-visual-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (min-width: 992px) {
  .hero-visual-img {
    height: 460px;
  }
}

.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.03);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-pink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.hero-stats {
  display: flex;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-pink);
}

.hero-stat-item h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary-wine);
  line-height: 1;
  font-weight: 700;
}

.hero-stat-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  min-height: 48px; /* Mobile touch accessibility */
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-wine) 0%, #921A39 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(120, 17, 43, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-wine-hover) 0%, #78112B 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(120, 17, 43, 0.35);
  color: #FFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--primary-wine);
  border: 1.5px solid var(--border-pink);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-pink-soft);
  border-color: var(--primary-pink);
  color: var(--primary-wine);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #FFF;
}

/* ==========================================================
   CATEGORY SHOWCASE SECTION
   ========================================================== */
.section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.section-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary-wine);
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.7rem;
  }
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.category-scroll-container {
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-scroll-container::-webkit-scrollbar {
  display: none;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 576px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

.category-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-pink);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-pink);
}

.category-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background: var(--bg-pink-soft);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-info {
  padding: 14px 10px;
  background: #FFFFFF;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-wine);
  margin-bottom: 2px;
}

.category-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================
   PRODUCT CATALOG GRID & CARDS
   ========================================================== */
.catalog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  padding: 16px 20px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-pink);
  box-shadow: var(--shadow-sm);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--bg-pink-soft);
  color: var(--text-main);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 40px;
}

.filter-pill:hover, .filter-pill.active {
  background: var(--primary-wine);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(120, 17, 43, 0.2);
}

.catalog-search-wrap {
  position: relative;
  min-width: 240px;
  flex-grow: 1;
  max-width: 380px;
}

.catalog-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-pink);
  background: var(--bg-cream);
  color: var(--text-main);
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition-smooth);
}

.catalog-search-input:focus {
  background: #FFFFFF;
  border-color: var(--primary-wine);
  box-shadow: 0 0 0 3px rgba(120, 17, 43, 0.1);
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.95rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 540px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-pink);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-pink);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 125%; /* 4:5 aspect ratio */
  background: var(--bg-pink-soft);
  overflow: hidden;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.badge-top-left {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-tag {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-new {
  background: var(--primary-wine);
  color: #FFFFFF;
}

.badge-featured {
  background: var(--accent-gold);
  color: #FFFFFF;
}

.quick-view-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-wine);
  border: 1px solid var(--border-pink);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  z-index: 4;
}

.product-card:hover .quick-view-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--primary-wine);
  line-height: 1.25;
  margin-bottom: 6px;
}

.product-title a:hover {
  color: var(--primary-pink);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 14px;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-wine);
}

.product-mrp {
  font-size: 0.88rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-discount {
  font-size: 0.75rem;
  color: #2E7D32;
  font-weight: 600;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.btn-card-inquire {
  background: var(--bg-pink-light);
  color: var(--primary-wine);
  border: 1px solid var(--border-pink);
  font-size: 0.82rem;
  padding: 10px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-card-inquire:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
}

/* ==========================================================
   VISIT OUR STORE SECTION & PAGE
   ========================================================== */
.store-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F8 100%);
  border-top: 1px solid var(--border-pink);
  border-bottom: 1px solid var(--border-pink);
}

.store-container-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .store-container-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.store-info-card {
  background: #FFFFFF;
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-md);
}

.store-live-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
}

.store-schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.store-schedule-table tr {
  border-bottom: 1px solid #FAF0F4;
}

.store-schedule-table tr:last-child {
  border-bottom: none;
}

.store-schedule-table td {
  padding: 9px 4px;
  font-size: 0.88rem;
}

.store-schedule-table td.day-col {
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.store-schedule-table td.hours-col {
  text-align: right;
  color: var(--text-muted);
  font-weight: 500;
}

.store-schedule-table tr.current-day-row {
  background: var(--bg-pink-light);
  border-radius: var(--radius-sm);
}

.store-schedule-table tr.current-day-row td {
  color: var(--primary-wine);
  font-weight: 700;
}

.store-contact-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.store-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-pink-soft);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-pink);
  transition: var(--transition-smooth);
}

.store-contact-item:hover {
  background: #FFFFFF;
  border-color: var(--primary-wine);
}

.store-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-wine);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.store-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  height: 440px;
  background: #EEE;
  position: relative;
}

.store-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================
   PRODUCT DETAIL PAGE
   ========================================================== */
.product-detail-section {
  padding: 40px 0 60px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

.detail-gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-md);
  background: #FFFFFF;
}

.detail-main-img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
}

.detail-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary-wine);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.detail-sizes-box {
  margin: 20px 0;
}

.size-pill-list {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.size-tag {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1.5px solid var(--border-pink);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.size-tag:hover, .size-tag.selected {
  border-color: var(--primary-wine);
  background: var(--bg-pink-light);
  color: var(--primary-wine);
}

/* ==========================================================
   MODALS (Quick View)
   ========================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42, 33, 37, 0.65);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-pink);
  animation: modalScaleUp 0.28s ease;
}

@keyframes modalScaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--bg-pink-soft);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--primary-wine);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: var(--primary-wine);
  color: #FFF;
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-body-grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

.modal-img-wrap {
  background: var(--bg-pink-soft);
  height: 340px;
}

@media (min-width: 768px) {
  .modal-img-wrap {
    height: 100%;
  }
}

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

.modal-content-wrap {
  padding: 28px 24px;
}

/* ==========================================================
   MOBILE OFFCANVAS DRAWER
   ========================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 10002;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px;
  background: linear-gradient(135deg, #FFF0F5, #FCE4EC);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-pink);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.drawer-nav-link:hover, .drawer-nav-link.active {
  background: var(--bg-pink-soft);
  color: var(--primary-wine);
}

/* ==========================================================
   MOBILE APP BOTTOM BAR (PWA Native App Feel)
   ========================================================== */
.mobile-bottom-appbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-pink);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
  box-shadow: 0 -4px 16px rgba(120, 17, 43, 0.06);
}

@media (min-width: 992px) {
  .mobile-bottom-appbar {
    display: none;
  }
}

.bottom-tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  flex: 1;
}

.bottom-tab-item svg, .bottom-tab-item i {
  font-size: 1.25rem;
  height: 22px;
  width: 22px;
}

.bottom-tab-item:hover, .bottom-tab-item.active {
  color: var(--primary-wine);
}

.bottom-tab-item.tab-highlight {
  color: #25D366;
}

/* ==========================================================
   FLOATING WHATSAPP BUTTON (Desktop & Mobile)
   ========================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9980;
  background: #25D366;
  color: #FFFFFF;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

@media (min-width: 992px) {
  .floating-whatsapp-btn {
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
  }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-pink);
  padding: 60px 0 30px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.9fr 1fr 1fr;
  }
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-wine);
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--primary-wine);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 6px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-wine);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}
