.shop-banner-full-section {
  padding: 0;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  position: relative;
  overflow: hidden;
}

.shop-banner-full-section::before {
  content: "";
  position: absolute;
  /* top: -50%;
        right: -10%; */
  width: 500px;
  height: 500px;
  border-radius: 10%;
}

.shop-banner-full-content {
  position: relative;
  z-index: 2;
}

.enhanced-carousel {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bannerItem {
  position: relative;
  height: 450px !important;
  transition: transform 0.6s ease-in-out;
}

.bannerItem img {
  width: 100%;
  filter: brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.bannerItem:hover img {
  filter: brightness(0.75);
  transform: scale(1.05);
}

/* Enhanced Caption Styling */
.carousel-caption {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.3) 0%,
    transparent
  );
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 80px 50px 40px !important;
  text-align: left;
  transform: translateY(0);
  transition: all 0.4s ease;
  display: block !important;
}

.bannerItem:hover .carousel-caption {
  padding-bottom: 50px !important;
}

.carousel-caption h5 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: slideInUp 0.6s ease;
  letter-spacing: -0.5px;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: slideInUp 0.6s ease 0.1s backwards;
  max-width: 600px;
}

/* Custom Indicators */
.carousel-indicators {
  bottom: 20px;
  margin-bottom: 0;
  gap: 8px;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 1;
  transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target]:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-indicators .active {
  width: 40px;
  border-radius: 6px;
  background-color: #fff;
  border-color: #fff;
}

/* Custom Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.enhanced-carousel:hover .carousel-control-prev,
.enhanced-carousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 24px;
  height: 24px;
  background-size: 100%;
  filter: invert(1) brightness(0);
}

/* Progress Bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.1s linear;
  z-index: 10;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (min-width: 500px) and (max-width: 768px) {
  .bannerItem {
    height: 400px;
  }

  .carousel-caption h5 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  .carousel-caption {
    padding: 60px 30px 30px !important;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
    opacity: 0.9;
  }
}

@media screen and (max-width: 500px) {
  .bannerItem {
    height: 150px !important;
  }

  .carousel-caption h5 {
    font-size: 1.4rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  /* .carousel-caption {
            padding: 60px 30px 30px !important;
        } */

  .carousel-control-prev,
  .carousel-control-next {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
}
/* ============================================================ */
/* Modern CSS Variables */
:root {
  --primary-color: #e91e63;
  --primary-dark: #c2185b;
  --secondary-color: #ff9800;
  --accent-color: #9c27b0;
  --text-dark: #333;
  --text-light: #666;
  --text-lighter: #888;
  --bg-light: #f8f9fa;
  --bg-lighter: #fafafa;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* Base Styles */
.homepage-container {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 10px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  width: 100%;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  width: 100%;
}

/* Horizontal Scroll Outlet Section */

.outlet-section {
  padding: 1rem 0;
  background: var(--white);
  position: relative;
}

.outlet-scroll-container {
  position: relative;
  overflow: hidden;
}

.outlet-scroll-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.outlet-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.outlet-scroll-card {
  flex: 0 0 160px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  /* Remove the fixed small dimensions */

  height: 150px !important;
}

.outlet-scroll-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.outlet-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.outlet-image {
  height: 115px;
  overflow: hidden;
  position: relative;
}

.outlet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
  transition: var(--transition);
}

.outlet-scroll-card:hover .outlet-image img {
  transform: scale(1.05);
}

.outlet-info {
  padding: 1.2rem;
}

.outlet-info h4 {
  /* margin: 0 0 0.8rem 0; */
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.outlet-info p {
  margin: 0 0 1rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

.outlet-scroll-card:hover .outlet-cta {
  transform: translateX(3px);
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  color: var(--text-dark);
}

.scroll-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.scroll-left {
  left: 10px;
}

.scroll-right {
  right: 10px;
}

/* Banner Section */
.deal-section {
  /* padding: 4rem 0; */
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: var(--white);
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  background: var(--white);
  color: #667eea;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.banner-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* shop_card Section */
.shop_card-section {
  padding: 4rem 0;
}

.shop_card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.shop_card-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 5px;
  position: relative;
  transition: var(--transition);
}

.shop_card-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.shop_card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary-color);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.shop_card-badge[class*="Bestseller"] {
  background: var(--primary-color);
}

.shop_card-badge[class*="Popular"] {
  background: var(--accent-color);
}

.shop_card-badge[class*="Trending"] {
  background: #4caf50;
}

.shop_card-badge[class*="New"] {
  background: #2196f3;
}

.shop_card-image {
  height: 120px;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.shop_card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.shop_card-card:hover .shop_card-image img {
  transform: scale(1.05);
}

.shop_card-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.shop_card-desc {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.shop_tagline {
  /* color: var(--text-light); */
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.shop_dist {
  /* display: flex; */
  /* position: absolute; */
  /* bottom: 20px;
        right: 20px; */
  font-size: 1rem;
  color: dark;
  /* margin-bottom: 1rem; */
  line-height: 1.4;
  font-weight: 600;
}

.shop_distance {
  font-size: 1rem;
  line-height: 1.4;
  color: dark;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .bannerItem img {
    height: 100%;
  }

  .outlet-scroll-card {
    flex: 0 0 260px;
  }

  .scroll-btn {
    display: none;
  }

  .outlet-scroll-wrapper {
    padding: 1rem 0;
  }

  .promo-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .banner-content h2 {
    font-size: 2rem;
  }

  .shop_card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .bannerItem img {
    height: 100%;
  }

  .category-card {
    text-align: center;
    padding: 0;
    border: 2px solid transparent;
  }

  .outlet-scroll-card {
    flex: 0 0 150px;
    height: 130px !important;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    grid-template-columns: repeat(2, 1fr);
  }

  .outlet-image {
    height: 90px;
  }

  .outlet-info h4 {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .outlet-info {
    padding: 1rem;
  }

  .shop_card-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    padding: 1.5rem 0.5rem;
  }
}
/* ====================================================== */
/* Category Section */
.category-section {
  padding: 2rem 0 !important;
  background: var(--white);
}

.category-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #7259b1 #f1f1f1;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

/* Webkit scrollbar styling */
.category-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.category-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.category-scroll-container::-webkit-scrollbar-thumb {
  background: #7259b1;
  border-radius: 10px;
}

.category-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #7259b1;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 180px));
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 1.5rem;
  width: max-content;
}

.category-card {
  text-align: center;
  padding: 0.5rem 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  /* border: 2px solid transparent; */
  width: 180px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  /* border-color: var(--primary-color); */
  background: var(--white);
}

.category-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  padding: 8px;
  box-shadow: var(--shadow);
}

/* .category-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    } */

.category-card h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.category-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 140px));
  }

  .category-card {
    width: 140px;
  }

  .category-icon {
    width: 120px;
    height: 120px;
  }
}
