* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: black;
}

ul {
  list-style: none;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Navbar Section */
.navbar {
  background-color: #131a22;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  color: white;
}

.navbar-logo img {
  width: 100px;
  cursor: pointer;
}

.navbar-location {
  color: white;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 20px;
}

.navbar-location span {
  font-size: 12px;
}

.navbar-location strong {
  font-size: 14px;
}

.navbar-search {
  display: flex;
  align-items: center;
  flex-grow: 1;
  max-width: 1200px;
  margin-left: 20px;
}

.navbar-dropdown {
  padding: 8px;
  background-color: #e6e6e6;
  color: #807c7c;
  border: 1px solid #cdcdcd;
  border-right: none;
  height: 40px;
  width: 55px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.navbar-search-input {
  flex-grow: 1;
  padding: 8px;
  border: none;
  outline: none;
  height: 40px;
}

.navbar-search-button {
  background-color: #febd69;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0 12px;
  height: 40px;
  width: 50px;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon {
  font-size: 20px;
}

.navbar-right {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.navbar-language {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: 20px;
}

.navbar-language img {
  width: 20px;
  margin-right: 5px;
}

.navbar-account,
.navbar-orders,
.navbar-cart {
  margin-left: 20px;
  cursor: pointer;
}

.navbar-account span,
.navbar-orders span,
.navbar-cart span {
  font-size: 12px;
}

.navbar-account strong,
.navbar-orders strong,
.navbar-cart strong {
  font-size: 14px;
}

.navbar-cart {
  display: flex;
  align-items: center;
}

.banner {
  background-color: #252f42;
  padding: 10px 20px;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner-all {
  color: #fff;
}

.panel {
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
}

.panel span {
  font-size: 24px;
  margin-right: 5px;
  color: #ffffff;
}

.links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.links li {
  margin: 0 15px;
}

.links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

.deals {
  margin-left: auto;
}

.deals a {
  text-decoration: none;
  color: #f3a847;
  font-weight: bold;
}

/* Hero Section (Image Slider) */
.hero-section {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 50px;
}

.slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 100%;
}

.image-container {
  position: relative; 
  height: 100%;
}

.slide img {
  width: 100%; 
  height: 100%; 
  display: block;
  object-fit: cover;
}

.auto-navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.auto-navigation div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 5px;
  cursor: pointer;
}


/* Shop Section */
/* Shop Section */
.shop-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffd77d;
}

.shop-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shop-link {
  width: 23%;
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  text-align: left;
  font-family: Arial, sans-serif;
}

.shop-link .discount-badge {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: white;
  background-color: #e91212;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 10px;
}

.shop-link .discount-badge .festival-name {
  color: #d32f2f;
  background-color: #fbe9e7;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 3px;
}

.shop-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 10px;
}

.shop-link .price-info {
  font-size: 20px;
  color: #000;
  margin-bottom: 8px;
}

.shop-link .price-info .current-price {
  font-weight: bold;
}

.shop-link .price-info .mrp {
  font-size: 12px;
  color: #757575;
  display: block;
}

.shop-link .price-info .old-price {
  text-decoration: line-through;
  color: #9e9e9e;
}

.shop-link .product-name {
  font-size: 18px;
  font-weight: 700;
  color: #212121;
  margin-top: 5px;
}

/* Buttons */
.product-buttons {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  margin-top: 20px;
}

.product-buttons .btn {
  width: 100%; /* Full width */
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  margin-bottom: 10px; /* Space between buttons */
}

.product-buttons .add-to-cart {
  background-color: #F7CA26; /* Button 1 background color */
  color: #000;
}

.product-buttons .buy-now {
  background-color: #FA890B; /* Button 2 grey background color */
  color: #000;
}

/* Button Hover Effects */
.product-buttons .btn:hover {
  opacity: 0.9; /* Add slight transparency on hover */
}

/* Media Queries */
@media (max-width: 768px) {
  .shop-link {
    width: 48%;
  }

  .product-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .shop-link {
    width: 100%;
  }
}


/* Footer Section */
footer {
  background-color: #131a22;
  color: white;
  padding: 40px 20px;
  margin-top: 50px;
}

/* Back to Top button */
.footer-title {
  background-color: #37475a;
  color: white;
  font-size: 14px;
  text-align: center;
  display: block;
  padding: 10px 0;
  margin-bottom: 40px;
  border-radius: 5px;
  text-decoration: none;
}

.footer-title:hover {
  background-color: #485769;
}

.footer-items {
  display: flex;
  justify-content: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-items ul {
  width: 200px;
  padding: 0 20px;
}

.footer-items h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
}

.footer-items li {
  margin-bottom: 10px;
}

.footer-items a {
  color: #ddd;
  font-size: 14px;
}

.footer-items a:hover {
  color: #febd69;
}

.footer-bottom {
  background-color: #131a22;
  padding: 20px 0;
  text-align: center;
  color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom img {
  margin-right: 15px;
}

.footer-bottom .language-selector {
  display: flex;
  align-items: center;
  background-color: #232f3e;
  color: white;
  padding: 5px;
  border-radius: 5px;
  margin-right: 15px;
}

.footer-bottom .language-selector select {
  background: none;
  border: none;
  color: white;
  font-size: 14px;
  padding: 5px;
}

.footer-bottom .language-selector option {
  background-color: #232f3e;
  color: white;
}

.footer-bottom .flag {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
}

.footer-bottom .country-name {
  font-size: 14px;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom img,
  .footer-bottom .language-selector,
  .footer-bottom .country-name {
    margin-bottom: 15px;
  }
}