:root {
  --primary-color: #000000;
  --secondary-color: #fff;
  --text-color: #333;
  --font-family: 'Arial', sans-serif;
  --bg-color: #212529;
}

body {
  background-color: var(--bg-color);
  color: var(--secondary-color);
}

.social-pill {
  background-color: #fff;
  border-radius: 50px;
  padding: 6px 20px 6px 6px;
  gap: 8px;
}

.social-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.phone-link {
  color: #c0392b;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 6px;
}

.navbar {
  background-color: var(--primary-color);
}

.btn-red {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.btn-red:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.nav-link {
  color: #fff !important;
}

.bg-footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.footer-alva .footer-logo {
  height: 50px;
  width: auto;
}
.footer-alva .footer-links-row {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-alva .footer-links {
  margin: 0;
}
.footer-alva .footer-links li {
  margin-bottom: 14px;
}
.footer-alva .footer-links li:last-child {
  margin-bottom: 0;
}
.footer-alva .footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-alva .footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-alva .footer-contact-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.footer-alva .footer-phone {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-alva .footer-phone i {
  margin-right: 6px;
}
.footer-alva .footer-phone:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-alva .footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-alva .footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}
.footer-alva .footer-social-icon:hover {
  opacity: 0.8;
}
.footer-alva .footer-social-icon--text {
  font-size: 0.65rem;
  font-weight: 700;
}
.footer-alva .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-alva .footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.footer-alva .footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.whatsapp-float:hover {
  color: #fff;
  background-color: #1ebe57;
  transform: scale(1.08);
}

.cart-float {
  position: fixed;
  right: 24px;
  bottom: 92px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.cart-float:hover {
  background-color: #000;
  transform: scale(1.08);
}
.cart-float .cart-float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #25D366;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.alva-cart-offcanvas {
  width: 380px;
}
.alva-cart-offcanvas .cart-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alva-cart-offcanvas .cart-item-img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 6px;
}
.alva-cart-offcanvas .cart-item-name {
  font-weight: 600;
}
.alva-cart-offcanvas .qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  line-height: 1;
}

@media (max-width: 1400px) {
  .navbar-nav .nav-link {
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
    font-size: 0.9rem;
  }
  .social-pill {
    padding: 4px 12px 4px 4px;
    gap: 4px;
  }
  .social-icon img {
    width: 26px;
    height: 26px;
  }
  .phone-link {
    font-size: 0.85rem;
  }
}/*# sourceMappingURL=welcome.css.map */