  /* Top bar */
    .top-bar {
        background-color: black;
        color: white;
        font-weight: bold;
        text-align: center;
        padding: 5px 0;
        font-size: 14px;
    }

    /* Logo */
    .navbar-brand img {
        height: 45px;
    }
    .navbar{
        background-color: white !important;
    }

    /* Icon styling */
    .nav-icon {
        color: #333;
        font-size: 18px;
        margin-left: 15px;
    }

    /* Offcanvas menu width */
    .offcanvas {
        width: 250px;
    }

    .offcanvas-header {
        border-bottom: 1px solid #ddd;
    }
   .pb-wrapper {
    position: relative;
    /* height: 650px; */
    color: white;
    overflow: hidden;
  }
  .pb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pb-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* dark overlay */
    z-index: 1;
  }
.pb-wrapper {
  position: relative;
  display: flex;
  align-items: center;   /* Vertical center */
  justify-content: center; /* Horizontal center */
}

.pb-img {
  width: 100%;
  height: auto;
}

.pb-content {
  position: absolute; /* Stays on top of the image */
  text-align: center;
  z-index: 2;
  color: white;
}

  .pb-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .pb-up-to {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  .pb-discount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .pb-btn {
    background: #e74c3c;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    color: white;
  }
  /* Optional: style bullets */
  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
  }
  .carousel-indicators .active {
    background-color:white;
  }
/* Content wrapper */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

/* Left text block */
.text-block {
  color: #fff;
  max-width: 45%;
}

.text-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.up-to {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.up-to::before,
.up-to::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #fff;
  margin: 0 10px;
  opacity: 0.6;
}

.discount {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}

.discount small {
  font-size: 2.5rem;
  font-weight: 700;
  vertical-align: middle;
}

/* Right product podium area */
.product-area {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}

.pedestal {
  position: relative;
  background: #fff;
  border-radius: 50% / 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -20px 20px rgba(0,0,0,0.08), 0 10px 20px rgba(0,0,0,0.2);
}

.pedestal::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.pedestal img {
  max-width: 90%;
  position: relative;
  z-index: 2;
}

/* Sizes for podiums */
.small { width: 100px; height: 120px; }
.medium { width: 130px; height: 160px; }
.large { width: 160px; height: 200px; }

/* Responsive */
@media (max-width: 992px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .text-block {
    max-width: 100%;
  }
  .product-area {
    flex-wrap: wrap;
    justify-content: center;
  }
}
    .hero-section {
      position: relative;
      width: 100%;
        min-height: 500px;
      overflow: hidden;
      color: #d1d1d1;
      background-color: #a94f6a;
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.5);
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background-color:lightgrey;
      opacity: 0.9;
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 1280px;
      margin: 0 auto;
      height: 100%;
      padding: 3rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .hero-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 0 3rem;
      }
    }

    .hero-text {
      max-width: 450px;
    }

    .hero-text h1 {
      font-weight: 700;
      font-size: 2rem;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 576px) {
      .hero-text h1 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 768px) {
      .hero-text h1 {
        font-size: 3.5rem;
      }
    }

    .hero-text p {
      font-weight: 400;
      font-size: 1.125rem;
      margin-top: 0.25rem;
    }

    .btn-shop {
      background-color: #2a2a2a;
      color: #d1d1d1;
      font-weight: 600;
      padding: 0.75rem 1.5rem;
      border-radius: 0.375rem;
      border: none;
      transition: background-color 0.3s ease;
      white-space: nowrap;
    }

    .btn-shop:hover,
    .btn-shop:focus {
      background-color: #1f1f1f;
      color: #d1d1d1;
    }

    .hero-image {
      max-width: 400px;
      width: 100%;
      object-fit: contain;
      height: 250px;
    }

    @media (max-width: 767.98px) {
      .hero-image {
        max-width: 320px;
      }
    }

    @media (max-width: 575.98px) {
      .hero-image {
        max-width: 280px;
      }
    }

    .bottom-border {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 6px;
      /* background: linear-gradient(to right, #b9a92a, #c6b92a, #d4c92a); */
      z-index: 4;
    }
.hero-bg-img {
  filter: brightness(1); /* Keep image original brightness */
}

.hero-overlay {
  background-color:rgb(72, 100, 181); /* Light pink transparent overlay */
}
.custom-hero-section {
  position: relative;
  width: 100%;
    min-height: 500px;
  overflow: hidden;
  background-color: #a94f6a;
}

.custom-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1); /* Keep image original brightness */
  z-index: 1;
}

.custom-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(65, 105, 225, 0.3); 
  z-index: 2;
}

.custom-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .custom-hero-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 0 3rem;
  }
}

.custom-hero-text {
  max-width: 450px;
}

.custom-hero-text h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .custom-hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .custom-hero-text h1 {
    font-size: 3.5rem;
  }
}

.custom-hero-text p {
  font-weight: 400;
  font-size: 1.125rem;
  margin-top: 0.25rem;
}

.custom-btn-shop {
  background-color: #2a2a2a;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.custom-btn-shop:hover {
  background-color: #1f1f1f;
}

.custom-hero-image {
  max-width: 400px;
  width: 100%;
  object-fit: contain;
  height: 250px;
}

@media (max-width: 767.98px) {
  .custom-hero-image {
    max-width: 320px;
  }
}

@media (max-width: 575.98px) {
  .custom-hero-image {
    max-width: 280px;
  }
}

.custom-bottom-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 4;
}
.hero2-section {
  position: relative;
  width: 100%;
    min-height: 500px;
  overflow: hidden;
  color: #d1d1d1;
  background-color: #a94f6a;
}

.hero2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
  z-index: 1;
}

.hero2-overlay {
  position: absolute;
  inset: 0;
  /* background-color: rgba(105, 110, 125, 0.3) !important; */
  z-index: 2;
}

.hero2-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero2-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 0 3rem;
  }
}

.hero2-text {
  max-width: 450px;
}

.hero2-text h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .hero2-text h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero2-text h1 {
    font-size: 3.5rem;
  }
}

.hero2-text p {
  font-weight: 400;
  font-size: 1.125rem;
  margin-top: 0.25rem;
}

.hero2-btn-shop {
  background-color: #2a2a2a;
  color: #d1d1d1;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.hero2-btn-shop:hover,
.hero2-btn-shop:focus {
  background-color: #1f1f1f;
  color: #d1d1d1;
}

.hero2-image {
  max-width: 400px;
  width: 100%;
  object-fit: contain;
  height: 250px;
}

@media (max-width: 767.98px) {
  .hero2-image {
    max-width: 320px;
  }
}

@media (max-width: 575.98px) {
  .hero2-image {
    max-width: 280px;
  }
}

.hero2-bottom-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 4;
}

    .dr-hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  color: #d1d1d1;
  background-color: #a94f6a;
}

.dr-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
  z-index: 1;
}

.dr-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(20, 82, 97, 0.598);
  z-index: 2;
}

.dr-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .dr-hero-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 0 3rem;
  }
}

.dr-hero-text {
  max-width: 450px;
}

.dr-hero-text h1 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .dr-hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .dr-hero-text h1 {
    font-size: 3.5rem;
  }
}

.dr-hero-text p {
  font-weight: 400;
  font-size: 1.125rem;
  margin-top: 0.25rem;
}

.dr-hero-btn-shop {
  background-color: #2a2a2a;
  color: #d1d1d1;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  border: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.dr-hero-btn-shop:hover,
.dr-hero-btn-shop:focus {
  background-color: #1f1f1f;
  color: #d1d1d1;
}

.dr-hero-image {
  max-width: 400px;
  width: 100%;
  object-fit: contain;
  height: 250px;
}

@media (max-width: 767.98px) {
  .dr-hero-image {
    max-width: 320px;
  }
}

@media (max-width: 575.98px) {
  .dr-hero-image {
    max-width: 280px;
  }
}

.dr-hero-bottom-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 4;
}
.best-selling-products {
  max-width: 1300px;
  margin: auto;
  padding: 2rem 1rem;
  text-align: center;
}

.best-selling-products h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  border: 1px solid #eee;
  padding: 1rem;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  min-height: 50px;
}

.price {
  margin-bottom: 0.5rem;
}

.price .current {
  color: red;
  font-weight: bold;
  display: block;
}

.price .old {
  text-decoration: line-through;
  color: #666;
  font-size: 0.9rem;
}

.discount,
.sold-out {
  display: inline-block;
  background: red;
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 3px;
}

.sold-out {
  background: #555;
}

@media (max-width: 768px) {
  .product-card h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .best-selling-products h2 {
    font-size: 1.25rem;
  }
  .product-card {
    padding: 0.75rem;
  }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Force exactly 2 columns on mobile */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .product-card {
    padding: 0.75rem;
  }
  .product-card h3 {
    font-size: 0.85rem;
    min-height: auto;
  }
  .price .current {
    font-size: 0.9rem;
  }
}
/* footer */
.custom-footer {
  background-color: #f2f2f2; /* light gray */
  color: #333;
  padding: 40px 20px 20px;
  /* font-family: Arial, sans-serif; */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* height: 300px; */
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column form {
  display: flex;
  flex-direction: column;
}

.footer-column input {
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.footer-column button {
  background-color: #333;
  color: white;
  padding: 8px;
  border: none;
  cursor: pointer;
}

.footer-column button:hover {
  background-color: #555;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 24px;
  margin: 0 5px;
}

/* Mobile 2-column layout */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile 1-column layout for very small screens */
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
