/* ==========================================================================
   PADOG.com — El Cielo de los Perros ☁️🫧🐾
   Light, Bright, Heavenly Sky & Floating Bubbles Theme (Colores Claros)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-sky: #e0f2fe;
  --bg-light: #f0f9ff;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-header: rgba(255, 255, 255, 0.92);

  --heavenly-gold: #ff9f1c;
  --heavenly-gold-hover: #ff8800;
  --heavenly-gold-glow: rgba(255, 159, 28, 0.35);

  --sky-blue: #0284c7;
  --sky-blue-light: #38bdf8;
  --sky-cyan-glow: rgba(56, 189, 248, 0.3);

  --text-dark: #0f172a;
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-dim: #64748b;

  --border-light: rgba(2, 132, 199, 0.15);
  --border-gold: rgba(255, 159, 28, 0.4);

  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --transition: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-sky);
  color: var(--text-main);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  background: linear-gradient(180deg, #bae6fd 0%, #e0f2fe 35%, #f0f9ff 70%, #ffffff 100%);
  min-height: 100vh;
  line-height: 1.5;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #e0f2fe; }
::-webkit-scrollbar-thumb { background: #38bdf8; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--heavenly-gold); }

/* FLOATING BUBBLES ANIMATION BACKGROUND */
.bubbles-container {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(56, 189, 248, 0.25) 60%, rgba(255, 159, 28, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.25), inset 0 0 12px rgba(255, 255, 255, 0.8);
  animation: floatBubble 12s infinite linear;
}

@keyframes floatBubble {
  0% {
    transform: translateY(0) scale(0.8) rotate(0deg);
    opacity: 0;
  }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% {
    transform: translateY(-110vh) scale(1.2) rotate(360deg);
    opacity: 0;
  }
}

.bubble-1 { left: 10%; width: 40px; height: 40px; animation-duration: 14s; animation-delay: 0s; }
.bubble-2 { left: 25%; width: 65px; height: 65px; animation-duration: 18s; animation-delay: 2s; }
.bubble-3 { left: 45%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: 4s; }
.bubble-4 { left: 65%; width: 80px; height: 80px; animation-duration: 20s; animation-delay: 1s; }
.bubble-5 { left: 80%; width: 50px; height: 50px; animation-duration: 15s; animation-delay: 5s; }
.bubble-6 { left: 92%; width: 35px; height: 35px; animation-duration: 13s; animation-delay: 3s; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

.section-padding { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 0.88rem;
  color: var(--sky-blue);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-title span {
  background: linear-gradient(135deg, var(--heavenly-gold) 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0.6rem auto 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 800;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--heavenly-gold) 0%, #ff7b00 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px var(--heavenly-gold-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 159, 28, 0.5);
}

.btn-secondary {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--sky-blue);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.1);
}
.btn-secondary:hover {
  background: #f0f9ff;
  border-color: var(--sky-blue);
  transform: translateY(-2px);
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #38bdf8 0%, #0284c7 50%, #ff9f1c 100%);
  color: #ffffff;
  padding: 0.55rem 1rem;
  text-align: center;
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
}

/* Navbar (Light Glassmorphic) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-badge {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #38bdf8 0%, var(--sky-blue) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  box-shadow: 0 6px 18px rgba(56, 189, 248, 0.4);
}

.logo-name {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.logo-name span { color: var(--heavenly-gold); }
.logo-tagline { display: block; font-size: 0.7rem; color: var(--sky-blue); font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 0.98rem;
  font-weight: 700;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--sky-blue); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.3rem;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active-lang {
  background: var(--sky-blue);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.nav-icon-btn {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--text-dark);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.nav-icon-btn:hover {
  background: #f0f9ff;
  border-color: var(--sky-blue);
  color: var(--sky-blue);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--heavenly-gold);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 900;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--heavenly-gold-glow);
}

.nav-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--text-dark);
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(2, 132, 199, 0.15);
  background: #ffffff;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav .nav-link {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #f1f5f9;
  font-size: 1.05rem;
}

/* Hero Section — Light Heavenly Sky */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-heaven-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--sky-blue-light);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--sky-blue);
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.25);
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}
.hero-title span {
  background: linear-gradient(135deg, var(--heavenly-gold) 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.hero-badge-pill {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.15);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Hero Showcase Card */
.hero-visual-card {
  background: #ffffff;
  border: 2px solid var(--sky-blue-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(2, 132, 199, 0.15);
  overflow: hidden;
}

.hero-img-wrap {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  margin-bottom: 1.25rem;
  border: 1px solid #f1f5f9;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.hero-visual-card:hover .hero-img-wrap img {
  transform: scale(1.06);
}

.badge-floating {
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--heavenly-gold) 0%, #ff7b00 100%);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 12px var(--heavenly-gold-glow);
}

/* Store Controls & Product Catalog */
.store-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.15);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-tab-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--text-muted);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  color: #ffffff;
}

.search-input-wrap {
  position: relative;
  min-width: 260px;
}
.search-input {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem 0.6rem 2.4rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--sky-blue); background: #fff; }
.search-icon {
  position: absolute; left: 0.8rem; top: 50%; transform: translateY(-50%);
  color: var(--text-dim); pointer-events: none;
}

/* Products Grid with HD Images */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.06);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--sky-blue-light);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15);
}

.product-thumb-wrap {
  width: 100%;
  height: 220px;
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
}

.product-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-real {
  transform: scale(1.08);
}

.product-badge-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--heavenly-gold);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 159, 28, 0.3);
}

.quick-view-trigger {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--sky-blue-light);
  color: var(--sky-blue);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.product-card:hover .quick-view-trigger {
  opacity: 1;
  transform: translateY(0);
}
.quick-view-trigger:hover {
  background: var(--sky-blue);
  color: #ffffff;
}

.product-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category-tag {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--sky-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.product-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--heavenly-gold);
  margin-bottom: 0.85rem;
}
.rating-count { color: var(--text-dim); font-size: 0.78rem; margin-left: 0.2rem; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-current {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
}

.price-old {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.add-cart-btn {
  background: linear-gradient(135deg, var(--heavenly-gold) 0%, #ff7b00 100%);
  color: #ffffff;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition);
  box-shadow: 0 4px 12px var(--heavenly-gold-glow);
}
.add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 159, 28, 0.5);
}

/* Why Choose PADOG */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.05);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--sky-blue);
}

.feature-icon-box {
  width: 60px; height: 60px;
  background: #f0f9ff;
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1.25rem;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.2);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(8px);
  z-index: 2000; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.cart-drawer-overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0;
  width: 100%; max-width: 420px; height: 100%;
  background: #ffffff; border-left: 2px solid var(--sky-blue-light);
  z-index: 2001; transform: translateX(100%); transition: transform var(--transition);
  display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-drawer.active { transform: translateX(0); }

.cart-drawer-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid #f1f5f9;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-drawer-title { font-family: var(--font-title); font-size: 1.25rem; font-weight: 800; color: var(--text-dark); }
.cart-drawer-close { background: transparent; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; }

.cart-free-shipping-bar {
  background: #f0f9ff; border-bottom: 1px solid #e0f2fe;
  padding: 0.75rem 1.5rem; font-family: var(--font-title); font-size: 0.82rem; color: var(--sky-blue); text-align: center; font-weight: 700;
}

.cart-items-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.cart-item-row {
  display: flex; gap: 1rem; background: #f8fafc;
  border: 1px solid #e2e8f0; border-radius: var(--radius-md); padding: 0.85rem; align-items: center;
}
.cart-item-img { width: 60px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-details { flex: 1; }
.cart-item-title { font-family: var(--font-title); font-size: 0.9rem; font-weight: 800; color: var(--text-dark); margin-bottom: 0.25rem; }
.cart-item-price { font-family: var(--font-title); font-size: 0.95rem; font-weight: 800; color: var(--heavenly-gold); }

.cart-qty-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem; }
.cart-qty-btn { background: #e2e8f0; border: none; color: var(--text-dark); width: 24px; height: 24px; border-radius: 4px; cursor: pointer; font-weight: 800; }

.cart-drawer-footer { padding: 1.5rem; border-top: 1px solid #f1f5f9; background: #f8fafc; }
.cart-total-row { display: flex; justify-content: space-between; font-family: var(--font-title); font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1.25rem; }

/* Checkout Modal */
#checkoutModal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); display: none; align-items: center; justify-content: center;
  z-index: 2100; overflow: auto;
}

#checkoutModal.active {
  display: flex !important;
}

/* Toast Notifications */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 3000; display: flex; flex-direction: column; gap: 0.5rem; }
.toast {
  background: #ffffff; border: 2px solid var(--heavenly-gold); color: var(--text-dark);
  padding: 0.85rem 1.25rem; border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: var(--font-title); font-size: 0.9rem; font-weight: 800; display: flex; align-items: center; gap: 0.6rem;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Footer */
footer { background: #0f172a; color: #ffffff; padding: 4rem 0 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem; margin-bottom: 3rem; }
.footer-title { font-family: var(--font-title); font-size: 1.05rem; font-weight: 800; color: #ffffff; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--heavenly-gold); }

.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #64748b; font-size: 0.85rem; }

/* Mobile Responsiveness */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 2.3rem; }
  .section-title { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .store-controls { flex-direction: column; align-items: stretch; }
  .search-input-wrap { min-width: 100%; }
}
