:root {
  --primary-blue: #0066cc;
  --text-dark: #1d1d1f;
  --text-muted: #86868b;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  position: relative;
  z-index: 100;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
}

/* Footer */
footer {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 4rem 0;
}

/* Shop Link Styling */
.shop-link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.6rem 1.2rem !important;
  border-radius: 50px;
  background: linear-gradient(135deg, #0066cc, #005bb5); 
  color: white !important;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
  transform: translateY(0);
  overflow: hidden;
}

.shop-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.shop-link:hover::after,
.shop-link.active::after {
  width: 100%;
}

.shop-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.shop-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
  color: white !important;
}

.shop-link:hover::before {
  opacity: 1;
}

.shop-link:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0, 102, 204, 0.2);
}

.shop-link .bi-shop {
  font-size: 1.1em;
}

.shop-link .shop-indicator {
  display: none;
}

.shop-nav-item {
  position: relative;
  z-index: 10;
}

.shop-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  position: relative;
}

.shop-icon-container i {
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.shop-text {
  position: relative;
  z-index: 2;
}

.shop-badge {
  position: absolute;
  top: -5px;
  right: 4px;
  background: #ff3b30;
  color: white;
  font-size: 0.6rem;
  padding: 0.1rem 0.4rem;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transform: rotate(3deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: badgePulse 2s infinite;
  z-index: 1000;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }
  
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(13, 110, 253, 0);
  }
  
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

@keyframes badgePulse {
  0% {
    transform: rotate(3deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1.1);
  }
  100% {
    transform: rotate(3deg) scale(1);
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  font-size: 1.5rem;
  margin-right: 8px;
}

.whatsapp-text {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 767.98px) {
  .whatsapp-float {
    bottom: 75px; /* Avoid overlapping with mobile navigation */
    right: 15px;
    padding: 10px;
  }
  
  .whatsapp-text {
    display: none; /* Hide text on mobile, show only icon */
  }
  
  .whatsapp-float i {
    margin-right: 0;
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 991.98px) {
  .shop-link {
    margin: 1rem auto 0.5rem;
    width: 90%;
    justify-content: center;
    padding: 0.8rem 1.5rem !important;
  }
  
  .shop-link::after {
    display: none;
  }
  
  .shop-badge {
    top: -5px;
    right: 5px;
  }
}
