*{
margin: 0;
	padding: 0;
	 box-sizing: border-box;
}   

/* Additional styles for the custom slideshow */
.custom-slideshow {
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
}

.custom-slideshow-container {
    position: relative;
}

.custom-slide {
    display: none;
    text-align: center;
}

.custom-slide img {
    width: 100vw;
    height: auto;
	transition: left 0.5s ease-in-out;
}
.fade {
    animation-name: fade;
animation: slideInFromRight 0.5s
}
@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.custom-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 15px;
    font-size: 18px;
}

.custom-prev, .custom-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.custom-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.custom-prev:hover, .custom-next:hover {
    color: #000;
}
 @media (min-width: 768px) {
	 .custom-slide img {
	 height: 55vw;
	 }
	 .custom-slideshow{
	margin-top: -20px	 
	 }
}
        /* Subtle hover shadow for product cards */
        .adverdicement .product-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease-in-out;
        }

        /* Carousel nav buttons */
        .adverdicement .carousel-button {
            background: rgba(0, 0, 0, 0.3);
            color: white;
            font-weight: bold;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            user-select: none;
        }

        .adverdicement .carousel-button:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        .adverdicement .carousel-left {
            left: 4px;
        }

        .adverdicement .carousel-right {
            right: 4px;
        }

        /* Arrow icons styling */
        .adverdicement svg.arrow-icon {
            width: 20px;
            height: 20px;
            stroke-width: 3;
        }

          .top-deals-products {
  background: #f5f5f5;
  padding: 30px 20px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

.top-deals-products h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.top-deals-products .carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.top-deals-products .carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 10px 0;
  margin: 2px auto;
}

.top-deals-products .carousel-track::-webkit-scrollbar {
  display: none;
}

.top-deals-products .product-box {
  flex: 0 0 auto;
  width: 190px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.top-deals-products .product-box:hover {
  transform: translateY(-5px);
}

.top-deals-products .product-box img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 10px;
}

.top-deals-products .product-box h4 {
  font-size: 1rem;
  margin: 5px 0;
  color: #222;
}

.top-deals-products .product-box p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #FF6F00;
}

.top-deals-products .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.top-deals-products .carousel-btn:hover {
  background: #FFAD84;
}

.top-deals-products .carousel-btn.prev {
  left: -5px;
}

.top-deals-products .carousel-btn.next {
  right: -5px;
}

/* Responsive */
@media (max-width: 768px) {
  .top-deals-products .product-box {
    width: 175px;
  }

  .top-deals-products h2 {
    font-size: 1.4rem;
  }
}

.promo-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 30px 20px;
  background: linear-gradient(to right, #FFF78A, #FFE382, #FFC47E, #FFAD84);
  font-family: 'Segoe UI', sans-serif;
}

.promo-banner-grid .promo-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.promo-banner-grid .promo-card:hover {
  transform: translateY(-5px);
}

.promo-banner-grid .promo-text {
  max-width: 60%;
}

.promo-banner-grid .promo-text small {
  color: #666;
  font-size: 0.85rem;
}

.promo-banner-grid .promo-text h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 5px 0 0;
}

.promo-banner-grid .promo-text h3 span {
  color: #FF5722;
  font-size: 0.95rem;
}

.promo-banner-grid .promo-card img {
  width: 100px;
  height: auto;
  object-fit: contain;
  margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .promo-banner-grid .promo-text {
    max-width: 100%;
  }

  .promo-banner-grid .promo-card {
    flex-direction: column;
    text-align: center;
  }

  .promo-banner-grid .promo-card img {
    margin: 15px 0 0;
  }
}

/* Product Banner Grid Styles */
.product-banner-grid {
  padding: 30px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.Featured-Brands h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #222;
}

.Featured-Brands .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.Featured-Brands .product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.Featured-Brands .product-card:hover {
  transform: translateY(-5px);
}

.Featured-Brands .product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.Featured-Brands .product-info {
  background: #D4AF37;
  background: linear-gradient(to right, #D4AF37, #fece7f);
  padding: 15px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.Featured-Brands .product-title {
  margin: 0;
  font-size: 16px;
}

.Featured-Brands .strike {
  text-decoration: line-through;
  font-size: 14px;
  color: #ddd;
  margin-left: 10px;
}


.promo-part {
    padding: 30px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}
/* BANNER */
.promo-part .banner-column .promo-banner {
  background: #f1e8db;
  height: 100%;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  position: relative;
}

.promo-part .promo-banner h3 {
  font-size: 1.6rem;
  color: #333;
}

.promo-part .promo-banner p {
  margin: 10px 0;
  color: #555;
}

.promo-part .promo-banner .btn {
  display: inline-block;
  margin-top: 10px;
  background: #2d3e50;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}

.promo-part .promo-banner img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .promo-part .banner-column .promo-banner img {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}

.btn-cart {
  margin-top: 10px;
  background-color: #D4AF37;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-cart:hover {
  background-color: #b38f00;
}
@media (min-width: 1280px) {
  #mainCarousel {
    max-width: 100vw !important;
    width: 100%;
    border-radius: 0 !important; /* Optional: remove curve on large screens */
  }
}
