/* General Reset */
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background-color: #fff;
  color: #333;
}

/* Navbar */
.navbar .brand-text {
  font-size: 1.1rem;
  color: #4B0082;
}

.logo-img {
  height: 45px;
  width: auto;
}

.navbar .nav-link {
  font-weight: 500;
  color: #4B0082;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #E75480;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(75, 0, 130, 0.6); /* Purple overlay */
  z-index: -1;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.hero-title span {
  color: #E75480; /* Pink highlight */
}

.hero-text {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Brand Button */
.btn-brand {
  background-color: #4B0082;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  color: #fff;
  padding: 12px 28px;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background-color: #E75480;
  color: #fff;
  transform: translateY(-2px);
}
/* Info Box (Professional Style) */
.info-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  border-color: #E75480;
  box-shadow: 0 8px 20px rgba(75, 0, 130, 0.15);
}

/* Large Icons */
.icon-large {
  font-size: 2rem;
  color: #4B0082;
  transition: color 0.3s ease;
}

.info-box:hover .icon-large {
  color: #E75480;
}

/* About Founder Image */
.about-img {
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
}
.product-gallery .thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
}
.product-gallery .thumb:hover,
.product-gallery .thumb.active {
  border: 2px solid #007bff;
  opacity: 1;
}

#successPopup h5 {
  font-weight: bold;
  color: #004080;
}
/* Featured Products Section */
#featured-products {
  background: linear-gradient(90deg, #D32F2F, #FF3D00); /* Christmas red gradient */
  padding: 60px 0;
}

/* Card styling */
.card {
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Badge styling */
.card .badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  font-weight: bold;
}

/* Hot Sale badge - Christmas red */
.card .badge.bg-danger {
  background-color: #D32F2F !important;
  color: #fff;
}

/* Discount badge - Christmas green */
.card .badge.bg-success {
  background-color: #388E3C !important;
  color: #fff;
}

/* Card title and stars */
.card-title {
  font-weight: bold;
}

.text-warning {
  font-size: 1rem;
}

/* Image styling */
.card-img-top {
  border-radius: 10px 10px 0 0;
  object-fit: cover;
  height: 200px;
}

.mat-img:hover {
  transform: scale(1.1);
  transition: transform 0.3s;
}

/* Checkout Modal Image */
#checkoutImg {
  border-radius: 10px;
  max-height: 300px;
}

/* Thumbnails under checkout image */
#checkoutThumbnails {
  margin-top: 10px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.thumbnail-img {
  cursor: pointer;
  max-width: 70px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.thumbnail-img:hover {
  border-color: #FF3D00;
}

/* Success Popup Modal */
#successPopup .modal-body h5 {
  font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .card-img-top {
    height: 150px;
  }

  #checkoutImg {
    max-height: 200px;
  }
}

@media (max-width: 576px) {
  #checkoutThumbnails {
    justify-content: center;
  }

  .thumbnail-img {
    max-width: 50px;
  }
}
/* Badge styling */
.card .badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  font-weight: bold;
}

/* Hot Sale badge - bright Christmas red */
.card .badge.bg-danger {
  background-color: #D32F2F !important; /* Deep festive red */
  color: #fff;
}

/* Discount badge - Christmas green */
.card .badge.bg-success {
  background-color: #388E3C !important; /* Festive green */
  color: #fff;
}
/* ===== Blogs + FAQs Section ===== */
#blogs-faqs {
  background-color: #f9f9f9;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ===== Blog Tabs ===== */
#blogs-faqs .nav-pills .nav-link {
  margin: 0 5px;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

#blogs-faqs .nav-pills .nav-link.active {
  background-color: #ff4d6d;
  color: #fff;
}

#blogs-faqs .nav-pills .nav-link:hover {
  background-color: #ff738d;
  color: #fff;
}

/* ===== Blog Cards ===== */
#blogs-faqs .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

#blogs-faqs .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

#blogs-faqs .card-img-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 200px;
  object-fit: cover;
}

#blogs-faqs .card-body h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

#blogs-faqs .card-body p {
  font-size: 0.95rem;
  color: #555;
}

#blogs-faqs .btn-primary {
  font-size: 0.85rem;
  padding: 5px 12px;
  background-color: #ff4d6d;
  border-color: #ff4d6d;
  transition: background-color 0.3s;
}

#blogs-faqs .btn-primary:hover {
  background-color: #ff738d;
  border-color: #ff738d;
}

/* ===== Read More Collapse ===== */
#blogs-faqs .collapse p {
  font-size: 0.9rem;
  color: #333;
  margin-top: 5px;
}

/* ===== FAQ Accordion ===== */
#faqAccordion .accordion-button {
  font-weight: 500;
  color: #ff4d6d;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

#faqAccordion .accordion-button:not(.collapsed) {
  background-color: #ff4d6d;
  color: #fff;
}

#faqAccordion .accordion-button:hover {
  background-color: #ff738d;
  color: #fff;
}

#faqAccordion .accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  border-top: 1px solid #ddd;
}

/* ===== Smooth Scroll for Navbar Links ===== */
html {
  scroll-behavior: smooth;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  #blogs-faqs .card-img-top {
    height: 180px;
  }
}

@media (max-width: 576px) {
  #blogs-faqs .nav-pills .nav-link {
    font-size: 0.85rem;
    padding: 8px 12px;
  }
}
