:root {
  --primary: #0ea5e9;
  --primary-rgb: 14, 165, 233;
  --secondary: #14b8a6;
  --secondary-rgb: 20, 184, 166;
  --accent: #f97316;
  --bg-dark: #070e1b;
  --bg-card: rgba(15, 23, 42, 0.65);
  --bg-glass: rgba(10, 25, 47, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.15);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-dark);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(20, 184, 166, 0.08) 0%, transparent 45%);
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 14, 27, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.logo-badge {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(20, 184, 166, 0.12));
  border: 1px solid rgba(14, 165, 233, 0.25);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
  transition: var(--transition-smooth);
}

.logo-badge i {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sub-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
}

.logo:hover .logo-badge {
  transform: rotate(-8deg) scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.35);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-light);
}

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

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

.cart-icon-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
}

.cart-icon-btn:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.cart-count {
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 14, 27, 0.4), var(--bg-dark)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: var(--secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4); }
  70% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(20, 184, 166, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(135deg, #38bdf8, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Info Section (Extra Info for Packing & Transport) */
.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  z-index: 5;
  margin-top: -3rem;
}

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

.info-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: var(--shadow-glow);
}

.info-icon {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-card:nth-child(2) .info-icon {
  background: rgba(20, 184, 166, 0.1);
  color: var(--secondary);
}

.info-card:nth-child(3) .info-icon {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent);
}

.info-card h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Catalog section */
.catalog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-title h2 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-light), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.filter-tabs {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
}

.filter-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.25);
  box-shadow: var(--shadow-glow);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 14, 27, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--secondary);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
}

.product-tag.dry {
  color: var(--accent);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-light);
}

.product-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-add-cart {
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  transform: scale(1.1);
}

/* Cart Sidebar (Drawer) */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-glass);
  z-index: 200;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-close-cart {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-close-cart:hover {
  color: var(--text-light);
  transform: rotate(90deg);
}

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

/* Empty state */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  text-align: center;
  gap: 1rem;
}

.cart-empty i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.05);
}

.cart-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 0.75rem;
  border-radius: 12px;
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-detail {
  flex-grow: 1;
}

.cart-item-name {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cart-item-type {
  font-size: 0.75rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.cart-item-type.dry {
  color: var(--accent);
}

.cart-item-price {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-qty-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

.cart-qty-btn:hover {
  background: rgba(14, 165, 233, 0.2);
  border-color: var(--primary);
}

.cart-qty-val {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}

.btn-remove-item {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.25rem;
  transition: var(--transition-smooth);
}

.btn-remove-item:hover {
  transform: scale(1.15);
}

.cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-glass);
  background: rgba(7, 14, 27, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-row.total {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
  border-top: 1px dashed var(--border-glass);
  padding-top: 0.85rem;
  margin-top: 0.25rem;
}

.price-row span.highlight {
  color: var(--accent);
  font-weight: 600;
}

.price-row span.fresh-label {
  color: var(--secondary);
}

/* Shipping Charge Info note */
.charges-info-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  background: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.15);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

/* Checkout Modal */
.checkout-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 14, 27, 0.8);
  backdrop-filter: blur(8px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.checkout-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  width: 90%;
  max-width: 550px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.checkout-backdrop.open .checkout-modal {
  transform: translateY(0);
}

.checkout-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.btn-close-checkout {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-close-checkout:hover {
  color: var(--text-light);
}

.checkout-body {
  padding: 1.5rem;
  max-height: 70vh;
  overflow-y: auto;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(14, 165, 233, 0.05);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

.whatsapp-note {
  display: flex;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1.5rem;
  color: #4ade80;
  font-size: 0.85rem;
  line-height: 1.5;
}

.whatsapp-note i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.btn-whatsapp-submit {
  width: 100%;
  background: #22c55e;
  color: white;
  border: none;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
  margin-top: 1.5rem;
}

.btn-whatsapp-submit:hover {
  background: #15803d;
  box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
  transform: translateY(-2px);
}

/* Footer styling */
footer {
  background: #040911;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 2rem 2rem 2rem;
  margin-top: 6rem;
  content-visibility: auto;
  contain-intrinsic-size: 350px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand h3 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-col h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  border-color: var(--primary);
}

/* Modal Overlay for backdrop blur */
.modal-open-blur {
  filter: blur(4px);
  transition: var(--transition-smooth);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--primary);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  transform: translateX(-120%);
  animation: slideIn 0.3s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
  to { transform: translateX(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-tabs {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .cart-sidebar {
    max-width: 100%;
    right: -100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Reviews styling */
.reviews-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  border-top: 1px solid var(--border-glass);
  content-visibility: auto;
  contain-intrinsic-size: 450px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  transition: var(--transition-smooth);
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: var(--shadow-glow);
}
.review-stars {
  color: var(--accent);
  margin-bottom: 1rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
}

/* FAQ styling */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
  border-top: 1px solid var(--border-glass);
  content-visibility: auto;
  contain-intrinsic-size: 380px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 1.25rem;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-light);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 1.25rem 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1rem;
}

/* Search & Sort Controls */
.search-sort-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.search-box {
  position: relative;
  flex-grow: 1;
  max-width: 500px;
}
.search-box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
}
.search-box input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 0.85rem 1rem 0.85rem 3rem;
  color: var(--text-light);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}
.search-box input:focus {
  border-color: var(--primary);
  background: rgba(14, 165, 233, 0.05);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
}
.sort-box {
  position: relative;
  min-width: 220px;
}
.sort-box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  z-index: 5;
}
.sort-box select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  color: var(--text-light);
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: var(--transition-smooth);
}
.sort-box select:focus {
  border-color: var(--primary);
}
.sort-box::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Timeline Steps */
.timeline-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 3rem 2rem;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(14, 165, 233, 0.06);
  line-height: 1;
  margin-bottom: -1rem;
  z-index: 1;
}
.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}
.timeline-step:hover .step-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}
.timeline-step h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}
.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 200px;
}
.timeline-step-arrow {
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.25rem;
}
@media (max-width: 992px) {
  .timeline-steps {
    flex-direction: column;
    gap: 2.5rem;
  }
  .timeline-step-arrow {
    transform: rotate(90deg);
  }
}

.product-tag.cooked {
  color: #e11d48;
}
.cart-item-type.cooked {
  color: #e11d48;
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 150;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  text-decoration: none;
}
.floating-btn.call {
  background: var(--primary);
}
.floating-btn.call:hover {
  background: #0284c7;
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}
.floating-btn.whatsapp {
  background: #22c55e;
}
.floating-btn.whatsapp:hover {
  background: #15803d;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}
@media (max-width: 768px) {
  .floating-contact {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #070e17, #0f172a);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.5rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-light);
  z-index: 110;
  position: relative;
}
.announcement-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.announcement-bar i {
  color: var(--primary);
  margin-right: 0.25rem;
}
.announcement-bar .divider {
  color: rgba(255, 255, 255, 0.15);
}
@media (max-width: 576px) {
  .announcement-bar {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .announcement-container {
    gap: 0.5rem;
  }
  .announcement-bar .divider {
    display: none;
  }
}

/* Cooking Showcase Banner */
.cooking-banner {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(225, 29, 72, 0.05);
}
.cooking-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.3);
  color: #f43f5e;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.cooking-banner-content h2 {
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #f8fafc, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cooking-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cooking-features {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.c-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}
.c-feat i {
  color: #ef4444;
}
.cooking-banner-img {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.cooking-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.cooking-banner:hover .cooking-banner-img img {
  transform: scale(1.05);
}
.filter-tab[data-filter="cooked"] {
  border: 1px solid rgba(225, 29, 72, 0.4);
  background: rgba(225, 29, 72, 0.05);
  color: #f43f5e;
}
.filter-tab[data-filter="cooked"].active {
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}
@media (max-width: 992px) {
  .cooking-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  .cooking-banner-img {
    height: 220px;
  }
}

/* Image hover WhatsApp overlay */
.wa-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 197, 94, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  gap: 0.5rem;
  color: white;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 6;
}
.product-img-wrapper:hover .wa-image-overlay {
  opacity: 1;
}
