/* ====================================================================
   LIVING LIQUIDZ MUMBAI — STYLESHEET
   Aesthetics: Deep Obsidian Dark Mode, Crimson Ruby & Luxury Gold Accents
   ==================================================================== */

:root {
  --bg-dark: #0a0a0d;
  --bg-card: #141419;
  --bg-card-hover: #1c1c24;
  --bg-elevated: #1a1a22;
  
  --primary-red: #d90429;
  --primary-red-hover: #ef233c;
  --accent-gold: #d4af37;
  --accent-gold-light: #f3d052;
  
  --text-main: #f8f9fa;
  --text-muted: #a0a0ab;
  --border-color: rgba(212, 175, 55, 0.15);
  --border-red: rgba(217, 4, 41, 0.3);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* UTILITY CLASSES */
.text-gold { color: var(--accent-gold) !important; }
.text-red { color: var(--primary-red) !important; }
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #b8860b);
  color: #000;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-red {
  background: linear-gradient(135deg, var(--primary-red), #990000);
  color: #fff;
}
.btn-red:hover {
  background: linear-gradient(135deg, var(--primary-red-hover), var(--primary-red));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
}

.btn-whatsapp-lg, .btn-whatsapp-md, .btn-whatsapp-order {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp-lg:hover, .btn-whatsapp-md:hover, .btn-whatsapp-order:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}
.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: #000;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-call {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-call:hover {
  background: var(--accent-gold);
  color: #000;
}

.btn-cart-trigger {
  background: rgba(217, 4, 41, 0.2);
  border: 1px solid var(--primary-red);
  color: var(--text-main);
  padding: 8px 18px;
  font-size: 0.85rem;
}
.btn-cart-trigger:hover {
  background: var(--primary-red);
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* TOP ANNOUNCEMENT BAR */
.top-announcement-bar {
  background: linear-gradient(90deg, #120306, #1f050b, #120306);
  border-bottom: 1px solid var(--border-red);
  padding: 8px 0;
  font-size: 0.82rem;
}
.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.delivery-badge-pill {
  background: var(--primary-red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
  margin-right: 8px;
}
.duty-text {
  color: var(--text-muted);
}
.top-contacts {
  display: flex;
  gap: 16px;
}
.top-link {
  color: var(--text-muted);
  transition: color 0.2s;
}
.top-link:hover {
  color: var(--accent-gold);
}

/* SITE HEADER & NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 40%, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-city {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--primary-red);
  font-weight: 700;
  margin-top: -4px;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url('../images/hero.png') center/cover no-repeat;
  padding: 100px 0 60px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 13, 0.95) 0%, rgba(10, 10, 13, 0.8) 50%, rgba(10, 10, 13, 0.6) 100%);
}
.hero-container {
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 4, 41, 0.2);
  border: 1px solid var(--primary-red);
  color: var(--primary-red-hover);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}
.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent-gold-light);
  margin-bottom: 24px;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}
.typing-cursor {
  font-weight: 700;
  color: var(--primary-red);
  margin-left: 4px;
  animation: cursorBlink 0.8s infinite;
}
.keyboard-cursor {
  color: var(--accent-gold);
  text-shadow: 0 0 10px var(--accent-gold);
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-duty-pill {
  background: rgba(212, 175, 55, 0.1);
  border: 1px dashed var(--accent-gold);
  color: var(--accent-gold);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* SECTION TITLES */
.section-header {
  margin-bottom: 50px;
}
.section-subtitle {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--primary-red);
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.section-desc {
  max-width: 650px;
  margin: 12px auto 0;
  color: var(--text-muted);
}

/* HOME DELIVERY SPOTLIGHT SECTION */
.section-delivery-spotlight {
  padding: 80px 0;
  background: var(--bg-elevated);
}
.delivery-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.delivery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}
.delivery-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 30px rgba(217, 4, 41, 0.15);
}
.card-icon {
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}
.delivery-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}
.delivery-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CATALOG SECTION */
.section-catalog {
  padding: 90px 0;
}
.catalog-control-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.search-box {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.search-input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}
.search-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-pill {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.cat-pill:hover, .cat-pill.active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: #fff;
}

/* PRODUCT GRID & CARDS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.product-img-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #08080a;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}
.product-badge-delivery {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(37, 211, 102, 0.9);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-category-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: var(--accent-gold);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.product-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-gold);
}
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

/* STORE LOCATION SECTION */
.section-store-location {
  padding: 90px 0;
  background: var(--bg-elevated);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.location-lead {
  color: var(--text-muted);
  margin-bottom: 30px;
}
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(217, 4, 41, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.1rem;
}
.info-item h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 2px;
}
.info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.location-buttons {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

/* COMPLIANCE BANNER SECTION */
.section-compliance-banner {
  padding: 40px 0;
  background: #0f0f14;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.compliance-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--accent-gold);
}
.compliance-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
}
.compliance-content h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 8px;
}
.compliance-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.compliance-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tag {
  font-size: 0.82rem;
  color: #fff;
}

/* SITE FOOTER */
.site-footer {
  background: #050508;
  padding-top: 70px;
  border-top: 1px solid var(--border-color);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.footer-logo span {
  color: var(--primary-red);
  font-size: 0.8rem;
  letter-spacing: 3px;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.delivery-notice-box {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-heading {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent-gold);
}
.footer-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.footer-bottom {
  background: #020204;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-sub-links a {
  color: var(--text-muted);
  margin: 0 4px;
}
.footer-sub-links a:hover {
  color: var(--accent-gold);
}

/* FLOATING BUTTONS */
.floating-btn {
  position: fixed;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 990;
  transition: var(--transition-smooth);
}
.floating-wa {
  right: 24px;
  background: #25d366;
  color: #fff;
}
.floating-call {
  left: 24px;
  background: var(--accent-gold);
  color: #000;
}
.floating-btn:hover {
  transform: scale(1.1);
}

.floating-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.floating-wa:hover .floating-tooltip {
  opacity: 1;
}

/* MODALS & CART DRAWER */
.modal-overlay, .cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active, .cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
}
.modal-close, .cart-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.cart-drawer {
  position: fixed;
  right: -420px;
  top: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.cart-drawer-overlay.active .cart-drawer {
  right: 0;
}
.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}
.delivery-notice-alert {
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid var(--accent-gold);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  border-radius: 4px;
}
.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-elevated);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 14px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}
.form-input:focus {
  border-color: var(--accent-gold);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: block; }
  .hero-title { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-announcement-bar { text-align: center; }
  .announcement-inner { justify-content: center; }
}
