/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0b2b4a;
  --primary-light: #1a4b6d;
  --accent: #d4af37;
  --accent-glow: #f5d76e;
  --green: #2e7d32;
  --bg: #f8fafc;
  --text: #1e293b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --card-bg: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== STICKY HEADER ===== */
.site-header {
  background: var(--primary);
  color: white;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
}
.logo-icon {
  font-size: 1.6rem;
}
.logo-accent {
  color: var(--accent);
}
.header-phone {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(20px);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: scale(1.1);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
  color: white;
  padding: 60px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: var(--accent);
  pointer-events: none;
}
.shape-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -80px;
  animation: pulseShape 8s ease-in-out infinite;
}
.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
  background: var(--green);
  animation: pulseShape 10s ease-in-out infinite reverse;
}
@keyframes pulseShape {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50% { transform: scale(1.3); opacity: 0.2; }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(212,175,55,0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.05) 2px, transparent 2px),
    radial-gradient(circle at 40% 90%, rgba(212,175,55,0.08) 1px, transparent 1px);
  background-size: 50px 50px, 70px 70px, 90px 90px;
  animation: driftParticles 20s linear infinite;
}
@keyframes driftParticles {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-20px, -20px); }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.hero-text { flex: 1; }
.hero-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.highlight {
  background: linear-gradient(120deg, var(--accent), var(--accent-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 450px;
  margin-bottom: 24px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.hero-phone {
  font-weight: 600;
  opacity: 0.9;
}
.hero-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.floating-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-size: 0.95rem;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.floating-card:nth-child(2) { animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

/* ===== SCROLLING BANNER (slower) ===== */
.banner-section {
  background: var(--primary);
  padding: 8px 0;
  overflow: hidden;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}
.banner-track {
  display: flex;
  gap: 40px;
  animation: scrollBanner 60s linear infinite; /* Slowed down from 30s to 60s */
  width: max-content;
}
.banner-track:hover {
  animation-play-state: paused;
}
@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.banner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9rem;
}
.banner-item img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--accent);
}
.banner-item .banner-price {
  color: var(--accent);
  font-weight: 800;
}

/* ===== CATEGORY NAV ===== */
.category-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 56px; /* height of header */
  z-index: 99;
  padding: 0.3rem 0;
}
.category-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  overflow-x: auto;
  padding: 0.3rem 0;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.category-nav ul::-webkit-scrollbar { height: 3px; }
.category-nav ul::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
.category-nav ul li a {
  display: block;
  padding: 0.3rem 0;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: 0.2s;
  font-size: 0.85rem;
}
.category-nav ul li a:hover,
.category-nav ul li a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

/* ===== PRODUCT SECTIONS ===== */
#product-container { padding: 1.5rem 0; }
.category-section {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.category-section:nth-child(1) { animation-delay: 0.05s; }
.category-section:nth-child(2) { animation-delay: 0.1s; }
.category-section:nth-child(3) { animation-delay: 0.15s; }

.category-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.category-section h2 span {
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 16px 12px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow));
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover::after { opacity: 1; }
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.product-card .product-image {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  border-radius: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #94a3b8;
  overflow: hidden;
  position: relative;
}
.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-card .badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--accent);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.3);
}
.product-card .badge.sale { background: #e11d48; color: white; }
.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.product-card .price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin: 6px 0;
}
.product-card .stock {
  font-size: 0.7rem;
  color: #64748b;
  margin-bottom: 10px;
}
.product-card .add-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  font-size: 0.85rem;
}
.product-card .add-btn:hover:not(:disabled) {
  background: var(--primary-light);
  transform: scale(1.02);
}
.product-card .add-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.pagination button {
  background: white;
  border: 1px solid #e2e8f0;
  color: var(--text);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.8rem;
  min-width: 34px;
}
.pagination button:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
}
.pagination button.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination .page-dots {
  padding: 0 4px;
  color: #94a3b8;
}

/* ===== SKELETON ===== */
.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
}
.skeleton-card {
  background: #e2e8f0;
  border-radius: var(--radius);
  height: 240px;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.skeleton-card {
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
}

/* ===== FLOATING CART ===== */
.cart-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(11, 43, 74, 0.4);
  z-index: 999;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-float:hover { transform: scale(1.1); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e11d48;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}
.cart-overlay:not(.hidden) { opacity: 1; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100%;
  background: white;
  z-index: 1001;
  padding: 20px 16px;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 12px;
}
.cart-header h2 { font-size: 1.3rem; }
.cart-close-btn { background: none; border: none; font-size: 1.8rem; cursor: pointer; color: #94a3b8; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 0; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}
.cart-item .item-info { flex: 1; }
.cart-item .item-name { font-weight: 600; font-size: 0.95rem; }
.cart-item .item-meta { font-size: 0.8rem; color: #64748b; }
.cart-item .item-actions { display: flex; align-items: center; gap: 10px; }
.cart-item .item-qty { background: #f1f5f9; padding: 2px 8px; border-radius: 20px; font-weight: 600; font-size: 0.85rem; }
.cart-item .remove-item { background: none; border: none; color: #e11d48; font-weight: 700; cursor: pointer; font-size: 1.1rem; }
.cart-footer {
  border-top: 2px solid #f1f5f9;
  padding-top: 16px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal.hidden { display: none; }
.modal-content {
  background: white;
  max-width: 400px;
  width: 100%;
  padding: 28px 20px;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeUp 0.3s ease;
}
.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #94a3b8;
}
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 3px; }
.form-group input, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.hidden { display: none; }

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 90%;
}
.toast {
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease forwards;
}
.toast.success { background: var(--green); }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: white;
  padding: 32px 0 16px;
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid h4 { margin-bottom: 8px; color: var(--accent); font-size: 0.95rem; }
.footer-grid p { opacity: 0.8; line-height: 1.6; font-size: 0.9rem; }
.footer-bottom { text-align: center; padding-top: 16px; opacity: 0.6; font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header {
    padding: 6px 0;
  }
  .logo {
    font-size: 1rem;
  }
  .logo-icon {
    font-size: 1.2rem;
  }
  .header-phone {
    font-size: 0.8rem;
    padding: 2px 10px;
  }
  .hero {
    padding: 40px 0 60px;
  }
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-text p {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-visual {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .floating-card {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  .category-nav {
    top: 44px; /* smaller header height on mobile */
  }
  .category-nav ul {
    gap: 0.8rem;
  }
  .category-nav ul li a {
    font-size: 0.75rem;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  .product-card {
    padding: 12px 10px;
  }
  .product-card .product-image {
    height: 110px;
  }
  .product-card h3 {
    font-size: 0.9rem;
  }
  .product-card .price {
    font-size: 1rem;
  }
  .product-card .add-btn {
    font-size: 0.75rem;
    padding: 6px;
  }
  .pagination button {
    padding: 3px 10px;
    font-size: 0.7rem;
    min-width: 30px;
  }
  .cart-drawer {
    max-width: 100%;
    right: -100%;
  }
  .banner-item {
    font-size: 0.75rem;
    gap: 8px;
  }
  .banner-item img {
    width: 24px;
    height: 24px;
  }
  .back-to-top {
    bottom: 70px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .cart-float {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    bottom: 16px;
    right: 16px;
  }
  .cart-badge {
    width: 18px;
    height: 18px;
    font-size: 0.55rem;
  }
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  display: inline-block;
  background: var(--accent) !important;
  color: var(--primary) !important;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 60px;
  text-decoration: none !important;  /* removes underline */
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
  text-align: center;
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: rgb(255, 236, 70) !important;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
  color: var(--primary) !important;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.full-width {
  width: 100%;
  justify-content: center;
}

/* Footer brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 100px;
  width: auto;
  display: block;
}
.footer-brand h3 {
  margin-bottom: 2px;
}
.footer-brand p {
  opacity: 0.8;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo {
    height: 40px;
  }
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

/* ===== HERO WHATSAPP BUTTON ===== */
.hero-whatsapp {
  display: inline-block;
  background: #25D366;
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  text-align: center;
}
.hero-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  background: #20b85a;
}

/* ===== FOOTER LINKS ===== */
.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--accent);
}

/* ===== HEADER PHONE ===== */
.header-phone {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: #25D366;
  padding: 6px 16px;
  border-radius: 40px;
  border: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header-phone:hover {
  background: #20b85a;
  transform: scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-whatsapp {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .header-phone {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
}

/* ===== HERO WHATSAPP BUTTON ===== */
.hero-whatsapp {
  display: inline-block;
  background: #25D366;
  color: white;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 60px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  text-align: center;
}
.hero-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  background: #20b85a;
}

/* ===== FOOTER LINKS ===== */
.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--accent);
}

/* ===== HEADER PHONE ===== */
.header-phone {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: #25D366;
  padding: 6px 16px;
  border-radius: 40px;
  border: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header-phone:hover {
  background: #20b85a;
  transform: scale(1.02);
}