/* ===== OKIT ICE CREAM — MEESHO-STYLE E-COMMERCE ===== */
:root {
  --pink: #FF6B9D;
  --pink-dark: #E91E8C;
  --yellow: #FFD93D;
  --orange: #FF8C42;
  --blue: #4ECDC4;
  --purple: #A855F7;
  --green: #06D6A0;
  --red: #FF4757;
  --dark: #1A1A2E;
  --gray: #F5F5F5;
  --white: #FFFFFF;
  --text: #333;
  --text-light: #777;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 16px;
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: #FAFAFA; color: var(--text); overflow-x: hidden; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-box {
  background: white;
  border-radius: 24px;
  padding: 40px 36px;
  width: 90%; max-width: 420px;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: #f0f0f0; border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 1rem;
  cursor: pointer; transition: background 0.2s;
}
.modal-close:hover { background: #e0e0e0; }

.modal-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  text-align: center; margin-bottom: 24px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-tabs {
  display: flex; background: #f5f5f5;
  border-radius: 12px; padding: 4px;
  margin-bottom: 24px;
}
.auth-tab {
  flex: 1; padding: 10px; border: none;
  background: transparent; border-radius: 10px;
  font-family: var(--font-body); font-weight: 800;
  font-size: 0.95rem; cursor: pointer;
  transition: all 0.3s; color: var(--text-light);
}
.auth-tab.active {
  background: white; color: var(--pink);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }
.auth-form.hidden { display: none; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 800; color: var(--text); }
.form-group input {
  padding: 12px 16px; border: 2px solid #e8e8e8;
  border-radius: 12px; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus { border-color: var(--pink); }

.pass-wrap { position: relative; }
.pass-wrap input { width: 100%; padding-right: 48px; }
.eye-btn {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 1.1rem;
}

.btn-auth {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white; border: none; padding: 14px;
  border-radius: 12px; font-family: var(--font-body);
  font-size: 1rem; font-weight: 800; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(255,107,157,0.4);
}
.btn-auth:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,157,0.5); }

.auth-switch { text-align: center; font-size: 0.85rem; color: var(--text-light); font-weight: 600; }
.auth-switch span { color: var(--pink); cursor: pointer; font-weight: 800; }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: 380px; max-width: 95vw;
  background: white; z-index: 1200;
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: -10px 0 50px rgba(0,0,0,0.15);
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
}
.cart-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
.cart-close {
  background: rgba(255,255,255,0.2); border: none;
  color: white; width: 36px; height: 36px;
  border-radius: 50%; font-size: 1rem; cursor: pointer;
  transition: background 0.2s;
}
.cart-close:hover { background: rgba(255,255,255,0.35); }

.cart-location {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: #FFF9F0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.85rem; font-weight: 700;
}
.loc-icon { font-size: 1.1rem; }
#locationText { flex: 1; color: var(--text); }
.loc-btn {
  background: var(--blue); color: white;
  border: none; padding: 6px 14px;
  border-radius: 20px; font-size: 0.8rem;
  font-weight: 800; cursor: pointer;
  font-family: var(--font-body);
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-light); }
.empty-icon { font-size: 4rem; margin-bottom: 12px; }
.cart-empty p { font-weight: 700; font-size: 0.95rem; line-height: 1.8; }

.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: #fafafa;
  border-radius: 12px; margin-bottom: 10px;
  border: 1px solid #f0f0f0;
}
.ci-emoji { font-size: 2.2rem; width: 50px; text-align: center; }
.ci-info { flex: 1; }
.ci-name { font-weight: 800; font-size: 0.9rem; color: var(--text); }
.ci-price { color: var(--pink); font-weight: 800; font-size: 0.95rem; }
.ci-qty {
  display: flex; align-items: center; gap: 8px;
}
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--pink); background: white;
  color: var(--pink); font-size: 1rem; font-weight: 800;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.qty-btn:hover { background: var(--pink); color: white; }
.qty-num { font-weight: 800; font-size: 0.95rem; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 16px 20px;
  border-top: 2px solid #f0f0f0;
  background: white;
}
.cart-total {
  display: flex; justify-content: space-between;
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 800; margin-bottom: 8px;
}
#cartTotal { color: var(--pink); }
.delivery-info {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-light); margin-bottom: 14px;
}
.btn-order {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white; border: none; border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem;
  font-weight: 800; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(6,214,160,0.4);
}
.btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(6,214,160,0.5); }

/* ===== ORDER POPUP ===== */
.order-popup {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.order-popup.active { opacity: 1; pointer-events: all; }
.order-popup-inner {
  background: white; border-radius: 24px;
  padding: 48px 36px; text-align: center;
  max-width: 380px; width: 90%;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.order-popup.active .order-popup-inner { transform: scale(1); }
.order-anim { font-size: 4rem; animation: popBounce 0.6s ease; margin-bottom: 16px; }
@keyframes popBounce { 0%{transform:scale(0)} 60%{transform:scale(1.2)} 100%{transform:scale(1)} }
.order-popup-inner h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--green); margin-bottom: 10px; }
.order-popup-inner p { color: var(--text-light); font-weight: 600; margin-bottom: 6px; }
.order-time { color: var(--orange) !important; font-weight: 800 !important; margin-bottom: 24px !important; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; gap: 16px;
  padding: 12px 24px;
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  flex-wrap: wrap;
}

.nav-left { display: flex; align-items: center; gap: 12px; }
.hamburger {
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--dark);
  display: none;
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  color: var(--dark); white-space: nowrap;
}
.logo-icon { font-size: 1.6rem; }
.logo-accent { color: var(--pink); }

.nav-location {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 20px;
  background: #FFF0F5; cursor: pointer;
  font-size: 0.85rem; font-weight: 700; color: var(--dark);
  border: 1px solid #FFD0E8; transition: background 0.2s;
  white-space: nowrap;
}
.nav-location:hover { background: #FFE0EE; }
.loc-arrow { color: var(--pink); }

.nav-links {
  display: flex; list-style: none; gap: 24px;
  margin: 0 auto;
}
.nav-links a {
  text-decoration: none; font-weight: 800;
  font-size: 0.9rem; color: var(--text);
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 2px; transition: width 0.3s;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.search-bar input {
  padding: 9px 16px; border: 2px solid #e8e8e8;
  border-radius: 20px; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600; outline: none;
  width: 200px; transition: border-color 0.3s, width 0.3s;
}
.search-bar input:focus { border-color: var(--pink); width: 240px; }

.cart-btn {
  position: relative; background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white; border: none; padding: 9px 18px;
  border-radius: 20px; font-size: 0.9rem; font-weight: 800;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255,107,157,0.35);
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,157,0.45); }
.cart-count {
  background: white; color: var(--pink);
  border-radius: 50%; width: 20px; height: 20px;
  font-size: 0.75rem; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 4px;
}

.user-btn {
  background: var(--dark); color: white;
  border: none; padding: 9px 18px;
  border-radius: 20px; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 800; cursor: pointer;
  transition: all 0.3s;
}
.user-btn:hover { background: var(--purple); }

/* ===== HERO SLIDER ===== */
.hero {
  margin-top: 70px; position: relative;
  overflow: hidden; height: 480px;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 60px 80px;
  opacity: 0; transition: opacity 0.6s ease;
}
.hero-slide.active { opacity: 1; }

.slide-content { max-width: 520px; }
.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  color: white; font-weight: 800; font-size: 0.85rem;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 16px; backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}
.slide-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; color: white;
  line-height: 1.1; margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.slide-content h1 span { color: rgba(255,255,255,0.85); }
.slide-content p {
  color: rgba(255,255,255,0.9); font-size: 1.05rem;
  font-weight: 600; margin-bottom: 28px; line-height: 1.6;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 800; font-size: 0.95rem; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; font-family: var(--font-body); }
.btn-white { background: white; color: var(--dark); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-primary { background: linear-gradient(135deg, var(--pink), var(--orange)); color: white; box-shadow: 0 4px 15px rgba(255,107,157,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,107,157,0.5); }

.slide-emoji {
  font-size: 5rem; letter-spacing: 8px;
  animation: floatEmoji 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}
@keyframes floatEmoji { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }

.slide-prev, .slide-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.25); color: white;
  border: none; width: 44px; height: 44px;
  border-radius: 50%; font-size: 1.5rem; cursor: pointer;
  backdrop-filter: blur(10px); transition: background 0.2s;
  z-index: 10;
}
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
.slide-prev:hover, .slide-next:hover { background: rgba(255,255,255,0.4); }

.slide-dots {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: white; width: 24px; border-radius: 4px; }

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(135deg, var(--dark), #2D1B69);
  padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 700; color: var(--yellow);
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== CATEGORIES ===== */
.categories-section {
  padding: 20px 24px; background: white;
  border-bottom: 1px solid #f0f0f0;
  position: sticky; top: 70px; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.cat-pills { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.cat-pills::-webkit-scrollbar { height: 0; }
.cat-pill {
  white-space: nowrap; padding: 8px 20px;
  border-radius: 50px; border: 2px solid #e8e8e8;
  background: white; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 800; cursor: pointer;
  transition: all 0.3s; color: var(--text);
}
.cat-pill:hover { border-color: var(--pink); color: var(--pink); }
.cat-pill.active {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white; border-color: transparent;
  box-shadow: 0 4px 12px rgba(255,107,157,0.35);
}

/* ===== SECTION COMMONS ===== */
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white; font-size: 0.78rem; font-weight: 800;
  padding: 5px 16px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--dark); margin-bottom: 10px;
}
.highlight-text {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub { color: var(--text-light); font-size: 0.95rem; font-weight: 600; }

/* ===== PRODUCTS ===== */
.products-section { padding: 60px 40px; background: #FAFAFA; }

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

.product-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer; position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.pc-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  color: white; font-size: 0.7rem; font-weight: 800;
  padding: 4px 10px; border-radius: 20px; z-index: 2;
}
.pc-badge.new { background: linear-gradient(135deg, var(--green), var(--blue)); }
.pc-badge.hot { background: linear-gradient(135deg, var(--orange), var(--red)); }

.pc-img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  position: relative; overflow: hidden;
}
.pc-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.05));
}

.pc-body { padding: 16px; }
.pc-name {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 800; color: var(--dark); margin-bottom: 4px;
}
.pc-hindi { font-size: 0.8rem; font-weight: 700; color: var(--text-light); margin-bottom: 8px; }
.pc-rating { font-size: 0.8rem; font-weight: 700; color: #F59E0B; margin-bottom: 10px; }
.pc-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.pc-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--pink); }
.pc-mrp { font-size: 0.8rem; color: var(--text-light); text-decoration: line-through; }
.pc-discount { font-size: 0.75rem; font-weight: 800; color: var(--green); }

.btn-add {
  width: 100%; padding: 10px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white; border: none; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 800; cursor: pointer; transition: all 0.3s;
}
.btn-add:hover { transform: scale(1.02); box-shadow: 0 4px 15px rgba(255,107,157,0.4); }
.btn-add.added {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

/* ===== SERVICES ===== */
.services-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B69 100%);
}
.services-section .section-tag { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: var(--dark); }
.services-section .section-title { color: white; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  border-radius: var(--radius); padding: 32px 24px;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); cursor: pointer;
}
.service-card:hover { transform: translateY(-8px) scale(1.02); }
.sc-1 { background: linear-gradient(135deg,#FF6B9D22,#FF6B9D44); border: 2px solid #FF6B9D55; }
.sc-2 { background: linear-gradient(135deg,#4ECDC422,#4ECDC444); border: 2px solid #4ECDC455; }
.sc-3 { background: linear-gradient(135deg,#FFD93D22,#FFD93D44); border: 2px solid #FFD93D55; }
.sc-4 { background: linear-gradient(135deg,#A855F722,#A855F744); border: 2px solid #A855F755; }
.sc-5 { background: linear-gradient(135deg,#06D6A022,#06D6A044); border: 2px solid #06D6A055; }
.sc-6 { background: linear-gradient(135deg,#FF8C4222,#FF8C4244); border: 2px solid #FF8C4255; }
.sc-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; transition: transform 0.3s; }
.service-card:hover .sc-icon { transform: scale(1.2) rotate(-5deg); }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 8px; }
.service-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; font-weight: 600; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 40px; background: linear-gradient(135deg,#FFF0F5,#FFF9F0,#F0FFFC); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.contact-card {
  border-radius: var(--radius); padding: 36px 24px;
  text-align: center; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow);
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.cc-phone { background: linear-gradient(135deg,#FFE0EC,#FFC2D4); border: 2px solid #FF6B9D33; }
.cc-location { background: linear-gradient(135deg,#E0F7FF,#B3E9FF); border: 2px solid #4ECDC433; }
.cc-hours { background: linear-gradient(135deg,#FFF3CC,#FFE066); border: 2px solid #FFD93D33; }
.cc-map { background: linear-gradient(135deg,#EDE0FF,#D4B8FF); border: 2px solid #A855F733; }
.cc-icon { font-size: 2.8rem; display: block; margin-bottom: 14px; transition: transform 0.3s; }
.contact-card:hover .cc-icon { transform: scale(1.2) rotate(10deg); }
.contact-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.contact-card p { color: #555; font-size: 0.9rem; font-weight: 600; line-height: 1.7; }
.cc-link { display: block; color: var(--pink); font-size: 1.05rem; font-weight: 800; text-decoration: none; margin: 4px 0; transition: color 0.3s; }
.cc-link:hover { color: var(--red); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 60px 40px 30px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 600; margin: 12px 0 16px; line-height: 1.6; }
.footer-phones { display: flex; flex-direction: column; gap: 6px; }
.footer-phones a { color: var(--yellow); font-weight: 800; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-phones a:hover { color: var(--orange); }
.footer-links-col h4 { color: white; font-family: var(--font-display); font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.footer-links-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; transition: color 0.2s; }
.footer-links-col a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; font-weight: 600; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark); color: white;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 800; font-size: 0.9rem;
  z-index: 9999; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-slide { padding: 60px 40px; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; position: fixed;
    top: 70px; left: 0; right: 0;
    background: white; flex-direction: column;
    padding: 20px 24px; gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-location { display: none; }
  .search-bar input { width: 140px; }
  .hero { height: auto; min-height: 380px; }
  .hero-slide { padding: 40px 24px; flex-direction: column; text-align: center; }
  .slide-emoji { font-size: 3rem; }
  .slide-btns { justify-content: center; }
  .products-section, .services-section, .contact-section { padding: 60px 20px; }
  .footer { padding: 40px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .nav-right { gap: 6px; }
  .search-bar { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pc-img { height: 120px; font-size: 3.5rem; }
}