.product-img {
  height: 450px;
  /* Fixed height */
  width: auto;
  /* Auto width (Maintains aspect ratio) */
  object-fit: contain;
  /* Ensures the image is not cropped or stretched */
  display: block;
  margin: auto;
  /* Centers image if smaller than the height */
}

.product-detail-ul ul li::marker {
  color: red;
  font-size: 1.5em;
}


/* ---------- Configurable Skeleton Loader CSS ---------- */

/* default theme variables (override per-instance using inline style or utility classes) */
:root {
  --skeleton-bg: #e9e9ee;
  /* base color */
  --skeleton-highlight: #f5f5f8;
  /* shimmer */
  --skeleton-radius: 6px;
  --skeleton-speed: 1.2s;
  /* animation duration */
}

.skeleton {
  display: inline-block;
  background: linear-gradient(90deg, var(--skeleton-bg) 25%, var(--skeleton-highlight) 50%, var(--skeleton-bg) 75%);
  background-size: 200% 100%;
  border-radius: var(--skeleton-radius);
  width: var(--skeleton-width, 100px);
  height: var(--skeleton-height, 16px);
  position: relative;
  overflow: hidden;
  animation: shimmer var(--skeleton-speed) linear infinite;
}

/* shimmer animation */
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* pulse alternative (use .skeleton--pulse) */
.skeleton--pulse {
  animation: pulse var(--skeleton-speed) ease-in-out infinite;
  background: var(--skeleton-bg);
}

@keyframes pulse {
  0% {
    opacity: 1
  }

  50% {
    opacity: .6
  }

  100% {
    opacity: 1
  }
}

/* Shape utilities */
.skeleton--circle {
  border-radius: 50%;
}

.skeleton--square {
  border-radius: 6px;
}

/* Size utilities (change variables per instance or use these classes) */
.skeleton-sm {
  --skeleton-width: 40px;
  --skeleton-height: 40px;
}

.skeleton-md {
  --skeleton-width: 100px;
  --skeleton-height: 16px;
}

.skeleton-lg {
  --skeleton-width: 200px;
  --skeleton-height: 20px;
}

/* Text block (multi-line) helper */
.skeleton-text {
  display: block;
  width: var(--skeleton-width, 100%);
  height: auto;
}

.skeleton-text .skeleton-line {
  height: var(--skeleton-line-height, 12px);
  margin-bottom: var(--skeleton-line-gap, 8px);
  width: 100%;
  border-radius: calc(var(--skeleton-radius) / 1.5);
}

/* helper to set shaped avatar + label layout */
.example-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

/* small demo page styles */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

h2 {
  margin-top: 28px;
}

.controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

label {
  font-size: 13px;
}

input[type="color"],
input[type="range"],
input[type="number"] {
  vertical-align: middle;
}




.accordion-button:not(.collapsed) {
  background-color: #d50101;
  /* your color */
  color: #fff;
  /* text color */
}

/* Optional: change focus outline */
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(213, 1, 1, 0.25);
}

.img-card {
  overflow: hidden;
  border-radius: .5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  background: #f8f9fa;
}

/* Keep 2:3 aspect ratio (1200x1800) and make image cover the box */
.img-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  /* 1200 / 1800 -> 2:3 */
  object-fit: cover;
  display: block;
}

/* Optionally cap the maximum displayed image width */
.img-card.max-wide {
  max-width: 1200px;
  /* on very wide layouts, each item won't exceed this width */
  margin-left: auto;
  margin-right: auto;
}

/* small caption styling */
.img-caption {
  padding: .5rem .75rem;
  font-size: .9rem;
  text-align: center;
}


/* Flip card wrapper with aspect ratio */
.flip-card {
  perspective: 1000px;
  width: 100%;
  aspect-ratio: 2 / 3;
  /* ensures proper height like your images */
  position: relative;
}

/* Inner wrapper */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* Flip effect */
.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

/* Faces */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: .5rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  top: 0;
  left: 0;
}

/* Front face */
.flip-card-front {
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
}

/* Back face */
.flip-card-back {
  background: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

/* Maintain image aspect ratio */
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------- */

/* Scoped only to the FAQ section with id="faq" */
#faq .faq-line-accordion .faq-toggle {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0;
  text-align: left;
  color: #000;
  /* Question black */
}

#faq .faq-line-accordion .faq-toggle:focus {
  box-shadow: none;
}

#faq .faq-line-accordion .faq-item .icon {
  font-weight: bold;
  transition: transform 0.3s ease;
}

#faq .faq-line-accordion .faq-toggle[aria-expanded="true"] .icon {
  transform: rotate(45deg);
  /* turns + into × */
}

#faq .faq-line-accordion .faq-answer {
  margin-top: 20px !important;
  /* Gap */
  padding-left: 0 !important;
  padding-right: 0 !important;
  color: #000 !important;
  /* Answer black */
  font-size: 0.95rem;
  line-height: 1.6;
}

#faq .faq-item.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) #f71d1d !important;
}

/* --------------------------------------------------------------------------------------- */












.flip-card {
  perspective: 1000px !important;
  touch-action: manipulation !important;
  cursor: pointer !important;
}

.flip-card-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.6s ease !important;
  transform-style: preserve-3d !important;
}

.flip-card.flipped .flip-card-inner,
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg) !important;
}

.flip-card-front,
.flip-card-back {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  backface-visibility: hidden !important;
  top: 0 !important;
  left: 0 !important;
}

.flip-card-front {
  z-index: 2 !important;
  transform: rotateY(0deg) !important;
}

.flip-card-back {
  transform: rotateY(180deg) !important;
  -webkit-backface-visibility: hidden !important;
}


section.home-popupbox {
  padding-top: 80px;
  padding-bottom: 50px !important;
}

.faqSection {

  margin-top: 100px !important;
}

.mt-top {

  margin-top: 50px !important;

}

@media (max-width: 768px) {
  .faqSection {
    margin-top: -100px !important;

  }
}

/* ----------------------------------------------------------------------------------- */




.blog-card {
  background: #fff !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
  /* permanent shadow */
  transition: transform 0.3s ease !important;
  height: 100%;
  /* equal height for all cards */
  display: flex;
  flex-direction: column;
}

/* Hover only moves the card (shadow stays same) */
.blog-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15) !important;
}

/* IMAGE FIXED SIZE + ZOOM */
.blog-img {
  overflow: hidden !important;
}

.blog-img img {
  height: 220px;
  /* FIXED IMAGE HEIGHT */
  width: 100%;
  object-fit: cover;
  /* ensures all images fit nicely */
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

/* Content expands to fill card equally */
.blog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* FIXED title lines (2 lines max) */
.blog-title a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  display: -webkit-box;

  -webkit-box-orient: vertical;

}

/* Fix description lines (3 lines max) */
.blog-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta always stays at bottom */
.blog-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.blog-meta .date {
  font-size: 13px;
}

.read-more {
  font-size: 14px;
  text-decoration: none;
  color: #0a66c2;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}





/* Normal pagination links */
.pagination li a,
.pagination li span {
  color: #ed1c24 !important;
  /* text color */
  border-color: #ed1c24 !important;
  /* border color */
}

/* Active page */
.pagination .active span {
  background-color: #ed1c24 !important;
  color: #fff !important;
  border-color: #ed1c24 !important;
}

/* Hover */
.pagination li a:hover {
  color: #ed1c24 !important;
  border-color: #ed1c24 !important;
}





/* Desktop – keep original behaviour */
.mobile-banner-fix img {
  width: 100%;
  height: auto;
}

/* Mobile fix */
@media (max-width: 767px) {
  .mobile-banner-fix {
    background-color: #fff;

    /* fill gaps if needed */
  }

  .mobile-banner-fix img {
    width: 100%;
    height: 220px;
    /* adjustable */
    object-fit: contain;
  }

  .blog-listing {
    margin-top: -80px !important;
  }
}


@media (max-width: 768px) {
  #navbarNav{
  
    background-color: #4a4a4a !important;
  }
  }