/* Always show vertical scrollbar */


/* Carousel / Hero captions */
.hero-section .carousel-caption {
  bottom: 30%;
  text-align: left;
}
.hero-section .carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
}
.hero-section .carousel-caption p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}
.hero-section .carousel-caption a.btn {
  border-radius: 50px;
  padding: 10px 25px;
  transition: 0.3s;
}
.hero-section .carousel-caption a.btn:hover {
  background: #c59d5f;
  color: #fff;
  transform: scale(1.05);
}

/* Collection / Product cards */
.collection-card,
.product-card {
  cursor: pointer;
  transition: 0.3s;
  border-radius: 12px;
}
.collection-card:hover img,
.product-card:hover img {
  transform: scale(1.05);
}
.collection-card .overlay,
.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: 0.3s;
  border-radius: inherit;
}
.collection-card:hover .overlay,
.product-card:hover .overlay {
  opacity: 1;
}

/* Services hover */
.services i {
  transition: 0.3s;
}
.services i:hover {
  transform: scale(1.2);
}

/* CTA Button */
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: inherit;
}
.cta-btn:hover::after {
  transform: scaleX(1);
}

/* Hero container */
.hero1-section {
  width: 100vw;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Hero image */
.hero1-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay content */
.hero1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #000;
  z-index: 2;
}

.hero1-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero1-btn {
  padding: 12px 28px;
  font-size: 18px;
  background: #ff4081;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
}

.hero1-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}


/* MOBILE RESPONSIVE + BLUR BACKGROUND FOR PARAGRAPH */
@media (max-width: 480px) {

    .hero1-content {
        top: 55%;
        padding: 40px 10px;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
    }

    .hero1-content h2 {
        font-size: 16px !important;
        line-height: 22px;
        margin-bottom: 6px;
        font-weight: 600;
    }

    /* 🔥 BLURRED BACKGROUND ON PARAGRAPH */
    .hero1-content p {
        font-size: 10px !important;
        line-height: 14px;
        margin-bottom: 10px;
        font-weight: 700;
        
        background: rgba(255, 255, 255, 0.35);       /* Light premium glass */
        backdrop-filter: blur(8px);                 /* Blur effect */
        -webkit-backdrop-filter: blur(8px);
        
        padding: 6px 8px;
        border-radius: 8px;
        display: inline-block;
    }

    .hero1-btn {
        font-size: 11px !important;
        padding: 6px 14px;
        margin-top: 10px;
        border-radius: 20px;
    }
}


  
/* Elegant Premium Category Bar - FULL WIDTH */
.category-bar {
  width: 100%;
  background: #fff;
  padding: 0.8rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 0;
  position: relative;  /* removed sticky */
  z-index: 5;
}

.category-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Category Items */
.category-item {
  padding: 0.6rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fdf9f3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  white-space: nowrap;
}

.category-item:hover,
.category-item.active {
  background: linear-gradient(135deg, #c59d5f, #8c6a3f);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

/* Bottom highlight */
.category-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: #c59d5f;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.category-item:hover::after,
.category-item.active::after {
  width: 60%;
}

/* 🔥 MOBILE RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .category-bar {
    padding: 0.5rem 0.5rem;
  }

  .category-bar .container {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;             /* horizontal scroll */
    scrollbar-width: none;         /* hide scrollbar Firefox */
  }

  .category-bar .container::-webkit-scrollbar {
    display: none;                 /* hide scrollbar Chrome */
  }

  .category-item {
    flex: 0 0 auto;                /* items don't wrap */
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 480px) {
  .category-item {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
}


/* Import Playfair Display font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&display=swap');

/* Product Section Container */
.trending-products .container,
.new-arrivals .container,
.luxury-edit .container,
.best-sellers .container,
.festival-collection .container,
.featured-collections .container {
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Playfair Display', serif; /* ✅ Font applied */
}

/* Product Cards */
.trending-products .col-md-3,
.new-arrivals .col-md-3,
.luxury-edit .col-md-3,
.best-sellers .col-md-3,
.festival-collection .col-md-3,
.featured-collections .col-md-3 {
  flex: 1 1 calc(20% - 20px);
  max-width: calc(20% - 20px);
  margin-bottom: 20px;
}

/* Card Box */
.product-card {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease forwards; /* ✅ Animation */
  opacity: 0;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Image: Full, No Crop */
.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05); /* ✅ Zoom effect */
}

/* Text Styling */
.card-body {
  padding: 15px;
  text-align: center;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.card-text {
  font-size: 1rem;
  font-weight: bold;
  color: #222;
}

/* 🔥 Responsive Layout */
@media (max-width: 1200px) {
  .trending-products .col-md-3,
  .new-arrivals .col-md-3,
  .luxury-edit .col-md-3,
  .best-sellers .col-md-3,
  .festival-collection .col-md-3,
  .featured-collections .col-md-3 {
    flex: 1 1 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}

@media (max-width: 992px) {
  .trending-products .col-md-3,
  .new-arrivals .col-md-3,
  .luxury-edit .col-md-3,
  .best-sellers .col-md-3,
  .festival-collection .col-md-3,
  .featured-collections .col-md-3 {
    flex: 1 1 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .trending-products .col-md-3,
  .new-arrivals .col-md-3,
  .luxury-edit .col-md-3,
  .best-sellers .col-md-3,
  .festival-collection .col-md-3,
  .featured-collections .col-md-3 {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .trending-products .col-md-3,
  .new-arrivals .col-md-3,
  .luxury-edit .col-md-3,
  .best-sellers .col-md-3,
  .festival-collection .col-md-3,
  .featured-collections .col-md-3 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* 🎬 Keyframes for fade-in-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.about {
  padding: 40px 0 !important;
}

.about .row {
  align-items: center;
}

.about img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 10px;
}

/* Headings */
.about h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 700;
}

/* Paragraph */
.about p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}


/* ============================= */
/* 📱 Mobile Responsive Styling */
/* ============================= */

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .about {
    padding: 30px 0 !important;
  }

  .about img {
    max-height: 280px;
  }

  .about h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .about p {
    font-size: 0.95rem;
    text-align: center;
  }
}

/* Phones (480px and below) */
@media (max-width: 480px) {
  .about {
    padding: 25px 0 !important;
  }

  .about img {
    max-height: 230px;
  }

  .about h2 {
    font-size: 1.4rem;
  }

  .about p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
