:root {
  --bs-primary: #153b6f;
  --bs-primary-rgb: 21, 59, 111;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}


.body-wrapper {
  margin: 0 auto;
  max-width: 90%;
}

/* Top Bar Styling Start */
.top-bar {
  background: #f3faff;
  font-size: 14px;
  padding: 6px 0;
}

.top-bar a {
  /* color: #153b6f; */
  /* text-decoration: none; */

  padding: 0 0 0 6px;
}

.separator {
  /* color: #153b6f; */
  padding: 0 6px;
}


@media(max-width: 637px) {
  .top-bar .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-bar div {
    margin-bottom: 2px;
  }

  .top-bar a,
  .top-bar span {
    font-size: 14px;
  }
}

/* Top Bar Styling End */

/* Header Styling Start */
.main-header {
  background: #e2f2ff;
  padding: 18px 0;
}

.search-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1020px;
  border: 2px solid #dce3ed;
  border-radius: 50px;
  padding: 6px 10px;
  background: #fff;
}

.search-wrapper select,
.search-wrapper input {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 14px;
  background: transparent;
}

.search-wrapper select {
  cursor: pointer;
  border-right: none;
}

.search-wrapper input {
  flex: 1;
}

.search-wrapper button {
  border: none;
  background: #2563eb;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-wrapper button:hover {
  background: #1e40af;
}

.select-box {
  position: relative;
  min-width: 150px;
}

.select-box::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 2px;
  height: 25px;
  background: #02060e94;

}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: transparent;
  width: 100%;
  padding: 8px 44px 8px 12px;
  padding-right: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: bold;
}

.select-box::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #333;
  pointer-events: none;
}

@media (min-width:1200px) {
  .header-search-2 {
    display: none;
  }

  .header-button {
    text-align: end;

  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .header-logo {
    text-align: start !important;
    margin-bottom: 10px;
  }

  .header-search-2 {
    margin-bottom: 13px;
    text-align: center;
    margin: 0 auto;
    width: 90%;
  }

  .header-button {
    text-align: end !important;
    margin-bottom: 13px;
  }

  .header-search-1 {
    display: none;
  }

  .search-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) and (min-width: 576px) {

  .header-logo {
    text-align: center;
    margin-bottom: 10px;
  }

  .header-search-2 {
    margin-bottom: 13px;
    text-align: center;
    margin: 0 auto;
    width: 90%;
  }

  .header-button {
    text-align: center;
    margin-bottom: 13px;
  }

  .header-search-1 {
    display: none;
  }

}

@media(max-width: 576px) {
  .header-logo {
    text-align: center;
    margin-bottom: 10px;
  }

  .header-search-1 {
    margin-bottom: 13px;
  }

  .header-button {
    text-align: center !important;
  }

  .header-search-2 {
    display: none;
  }
}

/* Header Styling End */

/* Navbar Styling Start */
.main-nav {
  padding: 8px 16px;
}

.main-nav .btn {
  padding: 6px 14px;
  font-size: 14px;
  min-width: 320px;
  border-radius: 10px;
}

@media(max-width: 1200px) {
  .category-btn {
    width: 60% !important;
    margin: 0 auto;
  }
}

/* Navbar Styling End */

/* button primary custom color */
.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #122f5c;
  --bs-btn-hover-border-color: #122f5c;
  --bs-btn-focus-shadow-rgb: 21, 59, 111;
  --bs-btn-active-bg: #0f2850;
  --bs-btn-active-border-color: #0f2850;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

/* button primary custom color */

/* Category Styling Start */
.category-box {
  margin-left: 40px;
  width: 93%;
  background: #fff;
  border-radius: 6px;
  padding: 15px;
  line-height: 50px;
}

.category-box ul {
  list-style: none;
  padding: 0;
}

.category-box li {
  padding: 6px 0;
  border-bottom: 2px solid #eee;
}

.category-box li a {
  font-size: 16px;
}

.category-icon {
  width: 24px;
  margin-left: 12px;
  margin-right: 12px;
  text-align: center;
  font-size: 16px;
}

@media(max-width: 1835px) and (min-width:1680px) {
  .category-box {
    line-height: 30px;
  }
}

@media(max-width:1680px) and (min-width:1440px) {
  .category-box {
    line-height: 24px;
  }
}

@media(max-width:1440px) {
  .category-box {
    line-height: 18px;
  }
}

@media(max-width: 1200px) {
  .offCanvasBtn {
    width: 60%;
    /* margin: 0 auto; */
  }
}

/* Category Styling End */


/* Slider Styling Start */
.slider-carousel {
  border-radius: 20px;
  overflow: hidden;
}

.slider-carousel img {
  border-radius: 20px;
}

.homeSliderCarousel .carousel-item {
  aspect-ratio: 16 / 6;
  /* tweak ratio */
}

.homeSliderCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-arrow {
  font-size: 28px;
  /*  color: #0d6efd; */
  cursor: pointer;
  user-select: none;
}

.carousel-arrow:hover {
  color: #084298;
}

.carousel-arrow {
  transition: transform 0.2s ease, color 0.2s ease;
}

.carousel-arrow:hover {
  transform: scale(1.15);
}

.carousel-caption.custom-caption-left {
  left: 5%;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  font-family: 'Mouse Memoirs', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  padding: 30px;
}

.carousel-caption.custom-caption-right {
  right: 5%;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  font-family: 'Mouse Memoirs', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  padding: 30px;
}

.carousel-caption.custom-caption-center {
  /*   right: 5%;         
    left: auto;  */
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-family: 'Mouse Memoirs', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  padding: 30px;
}

.carousel-caption.custom-caption p {
  margin: 0;
}

@media(max-width:1200px) and (min-width:768px) {
  .homeSliderCarousel {
    width: 95%;
    margin: 0 auto;
  }

  .carousel-caption.custom-caption-left,
  .carousel-caption.custom-caption-right,
  .carousel-caption.custom-caption-center {
    font-size: 1.5rem;
    margin-bottom: -65px;
    /* padding: 5px; */
  }
}

@media(max-width:768px) {
  .homeSliderCarousel {
    width: 92%;
    margin: 0 auto;
  }

  .carousel-caption.custom-caption-left,
  .carousel-caption.custom-caption-right,
  .carousel-caption.custom-caption-center {
    font-size: 1rem;
    margin-bottom: -65px;
    padding: 27px;
  }
}

/* Slider Styling End */

/* Product Card Styling Start */
.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  border: 2px solid #e6f0ff;
  transition: all 0.3s ease;
  overflow: hidden;
  margin: 5px;
}

.product-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.product-body h6 {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-footer {
  margin-top: auto;
}

.offer-badge {
  position: absolute;
  top: 0px;
  left: -5px;
  background: #ff3b3b;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-bottom-right-radius: 22px;
}
.offer-badge-installment {
  position: absolute;
  top: 0px;
  right: -5px;
  background: #863bff;
  color: #fff;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-bottom-left-radius: 22px;
}

.offer-badge-arrival {
  position: absolute;
  top: 0px;
  left: -5px;
  background: #81fd8e;
  color: #000;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-bottom-right-radius: 22px;
  letter-spacing: 1px;
}

.offer-badge-best-seller {
  position: absolute;
  top: 0px;
  left: -5px;
  background: #fd8581;
  color: #000;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-bottom-right-radius: 22px;
  letter-spacing: 1px;
}

.product-image {
  min-height: 340px;
  /* text-align: center; */
  display: flex;
  align-items: center;
  justify-content: center;
}


.product-image img {
  height: auto;
  width: 350px !important;
  margin: 0 auto;
  max-height: 340px;
  max-width: 100%;
  border-radius: 12px;
  /* margin-bottom: 10px; */
}


.product-body h6 {
  font-weight: 700;
  color: #0d3b8e;
  margin-bottom: 8px;
}

.price {
  min-height: 48px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}

.new-price {
  font-weight: 700;
  color: #000;
}


.product-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.btn-details {
  position: absolute;
  border: none;
  padding: 8px 16px;
  border-top-right-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  bottom: 0px;
  left: 0px;
  cursor: pointer;
}

.btn-details {
  background: #eaf2ff;
  color: #0d3b8e;
}

.btn-add {
  position: absolute;
  border: none;
  padding: 8px 16px;
  border-top-left-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  bottom: 0px;
  right: 0px;
  cursor: pointer;
}

.btn-add {
  background: #eaf2ff;
  color: #0d3b8e;
}

.btn-details:hover,
.btn-add:hover {
  background: #0d6efd;
  color: #fff;
}

@media(max-width:1200px) and (min-width:992px) {
  .product-image {
    min-height: 235px;
  }
}

/* Product Card Styling End */

/* Product Collection Card Styling Start */
.collection-card {
  min-height: auto;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.collection-img {
  width: 100%;
  height: 350px;
  /*height: auto;  commented for now */
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Product Collection Card Styling End */

/* Homepage Banner Styling Start */
.homepage-banner {
  padding: 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.full-cover-card {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 15px;
}

.full-cover-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Homepage Banner Styling End */

/* Footer Styling Start */
.footer-top {
  background: #d8efff;
}

.footer-title {
  position: relative;
  margin-bottom: 20px;
}

.footer-title::after {
  content: "";
  width: 36%;
  height: 3px;
  background: #000;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.footer-text,
.footer-links,
.contact-list {
  margin-top: 15px;
}

.footer-text {
  letter-spacing: 0.5px;
  text-align: justify;
}

.footer-links,
.contact-list {
  letter-spacing: 0.3px;
}

.footer-links li,
.contact-list li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
}

.footer-bottom {
  background: #1b3b6d;
}

.footer-bottom .row .col-md-6 {
  text-align: center !important;
}

.text-yellow {
  color: #f0d300;
  font-weight: 600;
}

/* Footer Styling End */


/* Winners page styling start */
.winners-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1578262825743-a4e402caab76?auto=format&fit=crop&q=80&w=1200&h=400');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.winner-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
  position: relative;
  border: 1px solid #eee;
}

.winner-card:hover {
  transform: translateY(-10px);
}

.winner-card .medal {
  font-size: 3rem;
  margin-bottom: 20px;
}

.gold {
  color: #FFD700;
}

.silver {
  color: #C0C0C0;
}

.bronze {
  color: #CD7F32;
}

.gold-card {
  border: 3px solid #FFD700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.silver-card {
  border: 2px solid #C0C0C0;
}

.bronze-card {
  border: 2px solid #CD7F32;
}

.winner-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #f8f9fa;
}

.winner-name {
  font-weight: 800;
  margin-bottom: 5px;
  color: #333;
}

.winner-prize {
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0;
}

.table-container {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: 50px;
}

.winners-table thead {
  background: var(--bs-primary);
  color: #fff;
}

.winners-table thead th {
  border: none;
  padding: 15px;
}

.winners-table tbody td {
  padding: 15px;
  vertical-align: middle;
}

/* Winners page styling end */

/* Contact Page styling start */
.contact-header {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-top: -60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: relative;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-text h5 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.info-text p {
  color: #666;
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
}

.form-control {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.1);
}

.map-container {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Page styling end */

/* product detail styling start */

    .breadcrumb-area {
      background: #f8f9fa;
      padding: 20px 0;
      margin-bottom: 30px;
    }
    .product-gallery {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      border: 1px solid #e6f0ff;
    }
    .main-image {
      margin-bottom: 20px;
      text-align: center;
    }
    .main-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }
    .thumb-images {
      display: flex;
      gap: 10px;
      justify-content: center;
    }
    .thumb-item {
      width: 80px;
      height: 80px;
      border: 1px solid #eee;
      border-radius: 8px;
      cursor: pointer;
      overflow: hidden;
    }
    .thumb-item.active {
      border-color: var(--bs-primary);
    }
    .thumb-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .product-details-content {
      padding-left: 20px;
    }
    .product-title {
      font-weight: 700;
      color: var(--bs-primary);
      margin-bottom: 15px;
    }
    .product-rating {
      color: #ffc107;
      margin-bottom: 15px;
    }
    .product-price {
      font-size: 28px;
      font-weight: 700;
      color: #333;
      margin-bottom: 20px;
    }
    .product-price .old-price {
      font-size: 18px;
      color: #888;
      text-decoration: line-through;
      margin-right: 10px;
    }
    .product-meta {
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
    }
    .qty-input {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }
    .qty-btn {
      width: 40px;
      height: 40px;
      border: 1px solid #ddd;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .qty-val {
      width: 60px;
      height: 40px;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      border-left: none;
      border-right: none;
      text-align: center;
      font-weight: 600;
    }
    .nav-tabs .nav-link {
        color: #666;
        font-weight: 600;
        border: none;
        border-bottom: 3px solid transparent;
        padding: 15px 30px;
    }
    .nav-tabs .nav-link.active {
        color: var(--bs-primary);
        border-bottom-color: var(--bs-primary);
        background: transparent;
    }
    .tab-content {
        padding: 30px 0;
        line-height: 1.8;
    }
    .related-products-title {
        border-left: 5px solid var(--bs-primary);
        padding-left: 15px;
        margin-bottom: 30px;
    }
  
/* product detail styling end */

/* cart page styling start */
.breadcrumb-area {
      background: #f8f9fa;
      padding: 20px 0;
      margin-bottom: 30px;
    }
        .breadcrumb-item a {
      color: var(--bs-primary);
      text-decoration: none;
    }
    .cart-table th {
      background: #f8faff;
      color: var(--bs-primary);
      border: none;
      padding: 15px;
      font-weight: 700;
      text-transform: uppercase;
      font-size: 14px;
    }
    .cart-table td {
      vertical-align: middle;
      padding: 20px 15px;
      border-color: #f0f0f0;
    }
    .cart-prod-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
    }
    .qty-input {
      display: flex;
      align-items: center;
      /* max-width: 120px; */
    }
    .qty-btn {
      width: 32px;
      height: 32px;
      border: 1px solid #ddd;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .qty-val {
      width: 40px;
      height: 32px;
      border-top: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      border-left: none;
      border-right: none;
      text-align: center;
      font-size: 14px;
    }
    .order-summary {
      background: #f8faff;
      border-radius: 15px;
      padding: 25px;
      border: 1px solid #e6f0ff;
    }
    .order-summary h5 {
      font-weight: 700;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 2px solid #e1e8f2;
    }
    .summary-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
    }
    .summary-total {
      border-top: 2px solid #e1e8f2;
      padding-top: 15px;
      margin-top: 15px;
      font-weight: 700;
      font-size: 18px;
      color: var(--bs-primary);
    }
    .remove-btn {
      color: #ff3b3b;
      cursor: pointer;
      font-size: 18px;
      transition: transform 0.2s;
    }
    .remove-btn:hover {
      transform: scale(1.2);
    }
/* cart page styling end */

/* proceed to checkout start */
.breadcrumb-area {
      background: #f8f9fa;
      padding: 20px 0;
      margin-bottom: 30px;
    }
    .checkout-section { padding: 40px 0; }
    .checkout-card {
      background: #fff;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      border: 1px solid #f0f0f0;
    }
    .step-title {
      font-weight: 700;
      color: var(--bs-primary);
      margin-bottom: 25px;
      display: flex;
      align-items: center;
    }
    .step-number {
      width: 30px;
      height: 30px;
      background: var(--bs-primary);
      color: #fff;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      font-size: 14px;
    }
    .order-summary-box {
      background: #f8faff;
      border-radius: 15px;
      padding: 25px;
      border: 1px solid #e6f0ff;
    }
    .summary-product {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #e1e8f2;
    }
    .payment-option {
      border: 2px solid #f0f0f0;
      border-radius: 12px;
      padding: 20px;
      transition: all 0.3s;
      cursor: pointer;
      display: flex;
      align-items: center;
    }
    .payment-option.active {
      border-color: var(--bs-primary);
      background: #f8faff;
    }
    .form-label { font-weight: 600; color: #444; }
/* proceed to checkout end */


/* about us styling start */

    .breadcrumb-area {
      background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
      padding: 60px 0;
      margin-bottom: 40px;
    }
    .breadcrumb-item a {
      color: var(--bs-primary);
      text-decoration: none;
    }
    .page-content {
      line-height: 1.8;
      color: #444;
    }
    .team-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #fff;
    }
    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .team-img-wrapper {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/5;
    }
    .team-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .team-card:hover .team-img-wrapper img {
      transform: scale(1.1);
    }
    .team-social {
      position: absolute;
      bottom: -40px;
      left: 0;
      right: 0;
      background: rgba(var(--bs-primary-rgb), 0.9);
      padding: 10px;
      display: flex;
      justify-content: center;
      gap: 15px;
      transition: bottom 0.3s ease;
    }
    .team-card:hover .team-social {
      bottom: 0;
    }
    .team-social a {
      color: #fff;
      font-size: 1.2rem;
    }
    .section-title {
      font-weight: 800;
      color: var(--bs-primary);
      margin-bottom: 40px;
      position: relative;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: var(--bs-primary);
    }
    .team-info {
        padding: 20px;
        text-align: center;
    }
    .team-name {
        font-weight: 700;
        margin-bottom: 5px;
    }
    .team-role {
        color: var(--bs-primary);
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
/* about us styling end */

/* latest deals styling start */

.breadcrumb-area {
      background: #f8f9fa;
      padding: 20px 0;
      margin-bottom: 30px;
    }
    .breadcrumb-item a {
      color: var(--bs-primary);
      text-decoration: none;
    }
    .filter-sidebar {
      background: #fff;
      border: 1px solid #e6f0ff;
      border-radius: 15px;
      padding: 20px;
      margin-bottom: 30px;
    }
    .filter-title {
      font-weight: 700;
      color: var(--bs-primary);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #f0f0f0;
    }
    .filter-group {
      margin-bottom: 25px;
    }
    .filter-group h6 {
      font-weight: 600;
      margin-bottom: 15px;
    }
    .form-check-label {
      font-size: 14px;
      cursor: pointer;
    }
    .sort-bar {
      background: #fff;
      border: 1px solid #e6f0ff;
      border-radius: 10px;
      padding: 10px 20px;
      margin-bottom: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .product-grid-item {
      margin-bottom: 30px;
    }
    .pagination .page-link {
        color: var(--bs-primary);
    }
    .pagination .page-item.active .page-link {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #fff;
    }
    .sidebar-category-list {
        padding: 0;
    }
    .sidebar-category-list li a {
        transition: all 0.3s ease;
        padding: 5px 0;
    }
    .sidebar-category-list li a:hover {
        padding-left: 10px;
        color: #000 !important;
    }
/* latest deals styling end */

/* category products styling start */

    .breadcrumb-area {
      background: #f8f9fa;
      padding: 20px 0;
      margin-bottom: 30px;
    }
    .breadcrumb-item a {
      color: var(--bs-primary);
      text-decoration: none;
    }
    .filter-sidebar {
      background: #fff;
      border: 1px solid #e6f0ff;
      border-radius: 15px;
      padding: 20px;
      margin-bottom: 30px;
    }
    .filter-title {
      font-weight: 700;
      color: var(--bs-primary);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #f0f0f0;
    }
    .filter-group {
      margin-bottom: 25px;
    }
    .filter-group h6 {
      font-weight: 600;
      margin-bottom: 15px;
    }
    .form-check-label {
      font-size: 14px;
      cursor: pointer;
    }
    .sort-bar {
      background: #fff;
      border: 1px solid #e6f0ff;
      border-radius: 10px;
      padding: 10px 20px;
      margin-bottom: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .product-grid-item {
      margin-bottom: 30px;
    }
    .pagination .page-link {
        color: var(--bs-primary);
    }
    .pagination .page-item.active .page-link {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        color: #fff;
    }
    .sidebar-category-list {
        padding: 0;
    }
    .sidebar-category-list li a {
        transition: all 0.3s ease;
        padding: 5px 0;
    }
    .sidebar-category-list li a:hover {
        padding-left: 10px;
        color: #000 !important;
    }
/* category products styling end */