/* =========================
   General Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* =========================
   Mega Dropdown Styling
========================= */
.navbar .dropdown-menu {
  border-radius: 0.5rem;
  border: none;
}

.navbar .dropdown-menu h6 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
}

.navbar .dropdown-menu .dropdown-item {
  padding: 6px 0;
  font-size: 0.9rem;
}

/* =========================
   Hero Slider Styles
========================= */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  max-width: 800px;
  padding: 20px;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out;
}
.hero-content h1 {
  font-size: 3rem;
}
.hero-content p {
  font-size: 1.25rem;
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  background: none;
  padding: 0 1rem;
}

.carousel-caption h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.carousel-caption p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  text-align: center;
}

.carousel-caption .btn {
  border-radius: 25px;
  /* padding: 8px 20px; */
  /* max-width: 250px;
  width: 100%; */
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  padding: 0.75rem 2rem;
  width: auto;
  min-width: 180px;
  text-align: center;
}

/* =========================
   Animations for Captions
========================= */
.carousel-caption h1,
.carousel-caption p,
.carousel-caption a {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.carousel-item.active .carousel-caption h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.carousel-item.active .carousel-caption p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.carousel-item.active .carousel-caption a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

/* ======================= 
Featured products Zoom Effect
=========================*/
.featured-zoom .featured-img {
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}
.featured-zoom:hover .featured-img,
.featured-zoom:focus-within .featured-img {
  transform: scale(1.08);
}

.featured-card-link.card {
  transition: box-shadow 0.2s, transform 0.2s;
  border-radius: 1rem;
  overflow: hidden;
}
.featured-card-link.card:hover, .featured-card-link.card:focus {
  box-shadow: 0 0.5rem 1.5rem rgba(197, 194, 194, 0.15), 0 0.25rem 0.5rem rgba(165, 159, 159, 0.08);
  transform: translateY(-4px) scale(1.03);
  text-decoration: none;
}
.featured-card-link .card-title {
  color: #010101;
}
.featured-card-link .featured-img {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: transform 0.3s;
}
.featured-card-link.card:hover .featured-img {
  transform: scale(1.05);
}

/* =========================
   Shop Categories Section
========================= */

.shop-category h2 {
  font-weight: bold;
}

.shop-category .underline {
  width: 120px;
  height: 3px;
  background: #e91e63;
  margin: 0 auto 40px;
  border: none;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card .overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: top 0.5s ease;
  text-align: center;
  padding: 15px;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .overlay {
  background: rgba(181, 46, 46, 0.5);
  top: 0;
}

.category-card .overlay h5 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}

.category-card .overlay p {
  font-size: 1rem;
  margin: 0;
  color: #ffcc00;
}

.carousel-indicators.custom-indicators {
  position: relative;
  margin-top: 20px;
}

.carousel-indicators.custom-indicators button {
  background: #e91e63;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  margin: 0 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.carousel-indicators.custom-indicators button.active {
  background: #c2185b;
}

.underline {
  width: 80px;
  height: 3px;
  background-color: #ff0000;
  border: none;
  margin: 0 auto;
}

.product-card {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.035);
  opacity: 0;
  inset: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-card:hover .overlay {
  opacity: 1;
}

.product-card .overlay .btn {
  transition: transform 0.3s ease;
  z-index: 2;
}

.product-card .overlay .btn:hover {
  transform: scale(1.05);
}

.promo-section {
  background-color: #E8F5FE;
}

.promo-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.beauty-promo-text {
  margin-top: -30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.highlight {
  color: #BB2D3B;
}

.promo-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1rem;
  max-width: 480px;
}

.intro-text,
h5.intro-text {
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.btn-dark {
  background-color: #333;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-dark:hover {
  background-color: #000;
  transform: translateY(-3px);
}

.product-video {
  position: relative;
  max-width: 100%;
  height: 70%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-video .video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-video .video-player:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.product-video .video-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(26, 35, 126, 0.15) 0%, transparent 70%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.product-video:hover .video-glow {
  opacity: 1;
}

.promo-section h5 {
  color: #1a237e;
  font-weight: 600;
}

.promo-section h2 {
  color: #000;
}

.promo-section p {
  color: #333;
}

.promo-section .btn-primary {
  background-color: #010101;
  border-color: #1a237e;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

.product-section h2 {
  font-weight: 600;
  font-size: 1.8rem;
}

.section-underline {
  width: 80px;
  height: 3px;
  background-color: #BB2D3B;
  margin: 0 auto 2rem;
  border: none;
  border-radius: 2px;
}

.nav-tabs .nav-link {
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  color: #BB2D3B;
  border-color: #BB2D3B #BB2D3B transparent;
  font-weight: 600;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(229, 225, 225, 0.08);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.product-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(141, 131, 132, 0.5); */
  transition: top 0.4s ease;
  z-index: 1;
}

.product-card:hover::before {
  top: 0;
}

.wishlist-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  color: #BB2D3B;
  font-size: 1.2rem;
  padding: 6px 8px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  opacity: 0;
  transform: scale(0.8);
}

.product-card:hover .wishlist-icon {
  opacity: 1;
  transform: scale(1);
}

.wishlist-icon:hover {
  background: #BB2D3B;
  color: #fff;
}

.product-card p,
.product-card button {
  position: relative;
  z-index: 2;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 5px;
}

.product-price {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  font-weight: 500;
}

.product-card .btn {
  border: 2px solid #BB2D3B;
  color: #BB2D3B;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-card .btn:hover {
  background-color: #897073;
  color: #fff;
}

/* SHOP PAGE */
 .shop-section .card.product-card {
    transition: box-shadow .2s;
    border-radius: 12px;
    background: #fff;
  }
  /* .shop-section .card.product-card:hover {
    box-shadow: 0 0 0 2px #f7c59f, 0 4px 24px rgba(0,0,0,0.08);
  } */
  .shop-section .wishlist-btn {
    color: #e74c3c;
    background: #fff;
    border: none;
  }
  .shop-section .wishlist-btn:hover {
    background: #ffeaea;
  }
  .shop-section .card-img-top {
    height: 170px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 12px 12px 0 0;
  }
  .shop-section .card-title {
    font-size: 1rem;
  }
  .shop-section .pagination .page-link {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .shop-section .pagination .active .page-link {
    background: #f7c59f;
    border-color: #f7c59f;
    color: #fff;
  }


/* TESTIMONIAL SECTION STYLING */
.testimonials-section {
  background: #f8f9fa;
}

.testimonials-section .carousel-inner {
  transition: height 0.4s ease-in-out;
}

.testimonials-section .carousel-item {
  min-height: 320px;
}

.testimonials-section .testimonial-card {
  padding: 25px 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1rem;
  color: #555;
  font-style: italic;
}

.stars i {
  color: #FFD700;
  font-size: 1.1rem;
  margin-right: 2px;
}

.section-underline {
  width: 80px;
  height: 3px;
  background: #BB2D3B;
  border: none;
  margin: 0 auto 40px auto;
  border-radius: 5px;
}

/* Newsletter Section */
.newsletter-section {
  background: #f8f9fa;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.newsletter-section h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

.newsletter-form .form-control {
  border-radius: 30px;
  padding: 0.75rem 1rem;
  flex: 1;
}

.btn-newsletter {
  background-color: #BB2D3B;
  color: #fff;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  transition: 0.3s ease;
}

.btn-newsletter:hover {
  background-color: #a22633;
  color: #fff;
}

.footer-section {
  background: #111;
  color: #ccc;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}

.footer-link {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #BB2D3B;
}

.newsletter-form .form-control {
  border-radius: 30px;
  padding: 0.6rem 1rem;
  flex: 1;
}

.btn-newsletter {
  background-color: #BB2D3B;
  color: #fff;
  border-radius: 30px;
  padding: 0.6rem 1.2rem;
  transition: 0.3s ease;
}

.btn-newsletter:hover {
  background-color: #a22633;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icon {
 display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #BB2D3B;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #BB2D3B;
  transform: translateY(-3px);
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.payment-icons img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(1) invert(0);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.1);
  filter: brightness(1) invert(0);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ABOUT SECTION */
.breadcrumb-section {
  background: #E8F5FE;
  padding: 30px 0;
}

.breadcrumb-section h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb {
  justify-content: center;
  font-size: 1.2rem;
}

.breadcrumb-item a {
  color: #BB2D3B;
}
.about-section {
  padding: 60px 0;
}

.about-section h2,
.about-section h4 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-section h2::after {
  content: '';
  width: 60px;
  height: 3px;
  background: #BB2D3B;
  display: block;
  margin-top: 10px;
  border-radius: 3px;
}

.story-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.highlight-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.highlight-box:hover {
  transform: translateY(-5px);
}

.highlight-box i {
  font-size: 2rem;
  color: #BB2D3B;
  margin-bottom: 15px;
}
.customer-feedback {
  background: #fdfdfd;
  border-left: 4px solid #BB2D3B;
  padding: 20px;
  margin-bottom: 20px;
  font-style: italic;
}

.contact-info i {
  color: #BB2D3B;
  margin-right: 10px;
}
.image-card {
  overflow: hidden;
  border-radius: 10px;
}

.image-card img {
  transition: transform 0.5s ease, filter 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.95);
}
.owner-img {
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #f8f9fa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Team cards */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #E8F5FE;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


/* CONTACT PAGE */
.contact-section{
  background: #f3f4f5;
}
.contact-section h3 {
  color: #010101!important;
  font-weight: 700;
}

.contact-section h5 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.contact-section a {
  color: inherit;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
  color: #BB2D3B;
}

.contact-section form {
  border: 1px solid #eee;
  transition: box-shadow 0.3s ease-in-out;
}

.contact-section form:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.contact-section ul li {
  font-size: 0.95rem;
}

.contact-section table {
  font-size: 0.9rem;
  margin-top: 10px;
}

.contact-section table td:first-child {
  font-weight: 600;
}

.contact-section .form-control {
  border-radius: 10px;
}
.map-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}
.whatsapp-qr img {
  border: 3px solid #25D366;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  transition: transform 0.3s ease;
  max-width:150px;
}
.whatsapp-qr img:hover {
  transform: scale(1.05);
}


/* =========================
   Responsive Adjustments
========================= */
@media (max-width: 991.98px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .category-card img {
    height: 200px;
  }

  .category-card .overlay {
    font-size: 0.9rem;
    padding: 8px 20px;
  }

  .product-video {
    width: 100%;
  }
.shop-section aside {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .product-card {
    margin-bottom: 20px;
  }

  .nav-tabs .nav-link {
    font-size: 0.95rem;
    padding: 8px 10px;
  }

  .product-card {
    padding: 12px;
  }

  .product-name {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 0.85rem;
  }

  .hero-slide {
    height: 70vh;
  }

  .carousel-caption {
    /* bottom: 20%; */
    padding: 0 1rem;
  }
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-slide {
    height: 60vh;
  }

  .carousel-caption {
    bottom: 15%;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.95rem;
  }

  .carousel-caption .btn {
    font-size: 0.85rem;
    padding: 6px 16px;
    width: 90%;
  }

  .category-card img {
    height: 180px;
    margin-top: 10px;
  }

  .category-card .overlay {
    font-size: 0.85rem;
    padding: 6px 15px;
  }
}