:root {
  --primary-color: #ff69b4; /* Default pink */
  --secondary-color: #ff4d94; /* Default hot pink */
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  margin: 0; /* Ensure no default margin on body */
  padding-top: 40px; /* Add padding to account for banner height */
}

.shipping-banner {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 0.9rem;
  position: fixed; /* Fix the banner at the top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensure it stays above other elements */
}

.navbar {
  margin-top: 30px; /* Add margin to prevent overlap with fixed banner */
}

.nav-link {
  color: black !important;
  font-weight: 500;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
  text-decoration: underline;
}

.dropdown-menu {
  width: 600px;
  padding: 15px;
}

.dropdown-column {
  flex: 1;
}

.dropdown-item {
  color: black;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background-color: transparent;
  text-decoration: underline;
  color: var(--primary-color);
}

.btn-pink {
  background-color: var(--primary-color);
  color: white;
  border: none;
}

.btn-pink:hover {
  background-color: var(--secondary-color);
  color: white;
}

.hero-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  text-align: center;
}

.hero-section h1 {
  font-family: 'Dancing Script', cursive;
  color: var(--primary-color);
  font-size: 3rem;
}

.category-card {
  text-align: center;
  margin-bottom: 20px;
}

.category-card .card {
  border: none;
  transition: transform 0.2s;
}

.category-card .card:hover {
  transform: scale(1.05);
}

.category-card img {
  height: 150px;
  object-fit: cover;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
}

.product-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
}

.modal-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
}

.modal-carousel {
  max-width: 600px;
  margin: 0 auto;
}

footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  body {
    padding-top: 30px; /* Adjust padding for mobile banner height */
  }

  .navbar {
    margin-top: 20px; /* Adjust margin for mobile banner */
  }
}