  
  
  :root {
    --app-container-max: 1200px;
  }

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: var(--app-container-max) !important;
  }

  .header-logo {
    max-width: 48% !important;
  }

  .header-top {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-top-section {
    background-color: #ffffff;
    border-bottom: 0;
    box-shadow: none;
  }

  .header-menu {
    padding: 0;
  }

  .header-menu-inner {
    min-height: 50px;
    height: 50px;
    align-items: center;
    margin-bottom: 0;
  }

  .category-swiper-section {
    background-color: #ffffff;
  }

  .category-swiper {
    padding-bottom: 10px;
  }

  .category-swiper .swiper-slide {
    height: auto;
  }

  .category-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background-color: #ffffff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }

  .chip-thumb {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #f5f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .chip-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
  }

  .chip-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a1a;
    text-align: center;
    max-width: 140px;
  }

  .category-chip:hover {
    border-color: rgba(13, 110, 253, 0.4);
    box-shadow: 0 18px 30px rgba(13, 110, 253, 0.12);
    transform: translateY(-4px);
  }

  .category-chip:hover .chip-thumb img {
    transform: scale(1.05);
  }

  .category-swiper-nav .swiper-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .category-swiper-nav .swiper-nav-btn:hover {
    background: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
  }

  @media (max-width: 767.98px) {
    .chip-thumb {
      width: 70px;
      height: 70px;
    }

    .chip-label {
      font-size: 0.85rem;
    }

    /* Mobile Header - Smaller Logo */
    .mobile-logo {
      max-height: 45px !important;
    }

    /* Mobile Header - Hamburger Button */
    .mobile-hamburger {
      display: flex !important;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      height: 40px;
    }

    .mobile-hamburger i {
      line-height: 1;
    }

    .mobile-hamburger:hover,
    .mobile-hamburger:focus {
      text-decoration: none;
      opacity: 0.7;
    }

    /* Hide Desktop Menu on Mobile */
    .header-menu {
      display: none !important;
    }

    /* Mobile Filter Card */
    #mobileFilterCollapse .card-body {
      max-height: 70vh;
      overflow-y: auto;
    }

    #mobileFilterCollapse .filter-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    #mobileFilterCollapse .filter-button {
      padding: 6px 12px;
      border: 1px solid #dee2e6;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.2s;
    }

    #mobileFilterCollapse .filter-button.active {
      background-color: #0d6efd;
      color: white;
      border-color: #0d6efd;
    }

    #mobileFilterCollapse .filter-button input[type="checkbox"] {
      display: none;
    }

    /* Reduce gap between search bar and filter in mobile */
    .mobile-category-section {
      margin-top: 1rem !important;
      margin-bottom: 1.5rem !important;
    }

    .mobile-filter-card {
      margin-top: 0.5rem !important;
    }

    /* Reduce margins of search bar row in header */
    .header-top .row.d-block.d-md-none.mb-2 {
      margin-top: 0.75rem !important;
      margin-bottom: 0.5rem !important;
    }

    /* Search page sort dropdown mobile styling */
    #searchSortForm {
      width: 100%;
      justify-content: flex-end;
    }

    #searchSortForm select {
      width: 100% !important;
      min-width: 100% !important;
      max-width: 200px;
    }
  }

  .header-menu .list-group > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .header-menu .list-group > li > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-weight: 300;
    transition: color 0.2s ease, opacity 0.2s ease;
    padding: 0.35rem 0.85rem;
    height: 100%;
  }

  .header-menu .list-group > li > a:hover {
    color: #f1c40f;
    opacity: 0.9;
  }

  .header-menu .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 210px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.97);
    transform-origin: top center;
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0s linear 0.25s;
    pointer-events: none;
    z-index: 1000;
  }

  .header-menu .submenu li a {
    display: block;
    padding: 9px 18px;
    color: #2f2f2f;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
    white-space: nowrap;
  }

  .header-menu .submenu li a:hover {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
  }

  .header-menu .dropdown-hover:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
    animation: submenuFadeIn 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    pointer-events: auto;
  }

  body{
    overflow-x: hidden;
    font-family: "Ubuntu", sans-serif !important;
  }
/* 
  @media 
  (-webkit-min-device-pixel-ratio: 1.5), 
  (min-resolution: 144dpi) {
  body {
    font-size: 0.95rem; adjust slightly if fonts look too big 
  }
}
  */

    .star {
      font-size: 36px;
      color: #ccc;
    }
    .star.filled {
      color: #f5b301;
    }
  
  .header {
      background-color: transparent;
      color: #fff;
      padding: 0;
      margin-bottom: 0;
    }
    .search-input {
      max-width: 100%;
      width: 100%;
    }
    .carousel-img {
      height: 350px;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .carousel-img {
        height: 250px;
      }
    }
    
    /* Banner Carousel Positioning - HIGH PRIORITY */
    .banner-carousel {
      margin-top: 0 !important;
      padding-top: 0 !important;
      position: relative !important;
      z-index: 1 !important;
    }
    
    /* Desktop Search Bar Styling - HIGH PRIORITY */
    .header .input-group {
      border-radius: 50px !important;
      overflow: hidden !important;
      border: 1px solid #007bff !important;
      transition: all 0.3s ease !important;
      height: 38px !important;
      box-shadow: none !important;
    }
    .header .input-group:hover,
    .header .input-group:focus-within {
      border-color: #0056b3 !important;
    }
    .header .input-group .form-control {
      border: none !important;
      padding: 8px 18px !important;
      font-size: 0.9rem !important;
      height: 100% !important;
      box-shadow: none !important;
      border-radius: 0 !important;
    }
    .header .input-group .form-control:focus {
      box-shadow: none !important;
      border: none !important;
      outline: none !important;
    }
    .header .input-group .input-group-text.bg-light {
      background: linear-gradient(45deg, #007bff, #0056b3) !important;
      border: none !important;
      color: white !important;
      padding: 8px 20px !important;
      font-size: 0.9rem !important;
      transition: all 0.3s ease !important;
      height: 100% !important;
      cursor: pointer !important;
      border-radius: 0 !important;
    }
    .header .input-group .input-group-text.bg-light:hover {
      background: linear-gradient(45deg, #0056b3, #004085) !important;
    }
    
  @keyframes submenuFadeIn {
    0% {
      opacity: 0;
      transform: translateY(12px) scale(0.95);
    }
    60% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @media (max-width: 991.98px) {
    .header-menu {
      padding: 0;
    }

    .header-menu-inner {
      min-height: 50px;
      height: auto;
    }

    .header-menu .submenu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      padding: 4px 0;
    }
  }

    .header .d-block.d-md-none .input-group {
      border-radius: 50px !important;
      overflow: hidden !important;
      border: 1px solid #007bff !important;
      transition: all 0.3s ease !important;
      height: 38px !important;
      box-shadow: none !important;
    }
    .header .d-block.d-md-none .input-group .form-control {
      border: none !important;
      padding: 7px 16px !important;
      font-size: 0.85rem !important;
      height: 100% !important;
      box-shadow: none !important;
      border-radius: 0 !important;
    }
    .header .d-block.d-md-none .input-group .form-control:focus {
      box-shadow: none !important;
      border: none !important;
      outline: none !important;
    }
    .header .d-block.d-md-none .input-group .input-group-text.bg-light {
      background-color: #007bff !important;
      border: none !important;
      color: white !important;
      padding: 7px 16px !important;
      font-size: 0.85rem !important;
      height: 100% !important;
      cursor: pointer !important;
      border-radius: 0 !important;
    }
    .header .d-block.d-md-none .input-group .input-group-text.bg-light:hover {
      background-color: #0056b3 !important;
    }
    .category-sidebar {
      border-right: 1px solid #ddd;
    }
    .list-group-item {
    border:none !important;
    }
    .bg-gray
    {
        background-color: #000000;
    }
  
  .h-80
  {
    height: 250px !important;
  }
  .h-75
  {
    height: 114px !important;
  }
  .text-footer
  {
    color: #878787;
    font-size: 14px;
  }
  .text-li-footer
  {
    color: #ffffff !important;
    font-size: 12px !important;
  }
  .text-li-footer a
  {
    color: #ffffff !important;
    font-size: 12px !important;
  }
  .card-title {
    font-size: 13px !important;
  }
  .card-footer {
    padding:0 !important;
  }
   .list-group {
    --bs-list-group-bg: transparent !important;
   }
    .list-group-item a {
  color: #000 !important;
  text-decoration: none;
    }
    .text-h-w
    {
        color: #fff;
    }

    .nav-pills .nav-link {
  color: #000;
  background: #f1f1f100;
  border-radius: 0;
}
.nav-pills .nav-link.active {
  background-color: #007bff;
  color: #fff;
}
.nav-pills .nav-link {
    border-radius:0 !important;
}
.card-title {
  font-size: 0.9rem;
}
.card-text {
  font-size: 0.8rem;
  color: #666;
}
 .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #464747 !important;
}
 @media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
    }
  }
  .accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border:0 !important;
 }
 .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #5f6eb9 !important;
    --bs-btn-border-color: #5f6eb9 !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #27398f !important;
    --bs-btn-hover-border-color: #27398f !important;
}
  .profile-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .profile-pic {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 50%;
    }
     .address-card {
      border: 1px solid #ddd;
      border-radius: 6px;
      background-color: #fff;
      padding: 16px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .tag {
      background-color: #f0f2f5;
      font-size: 12px;
      font-weight: 500;
      padding: 2px 8px;
      border-radius: 4px;
      margin-left: 6px;
    }
    .change-btn {
      font-size: 14px;
      padding: 4px 12px;
    }
      .cart-action-btn {
      background: none;
      border: none;
      font-weight: 600;
      font-size: 14px;
      color: #000;
      margin-right: 15px;
    }
    .cart-action-btn:hover {
      text-decoration: underline;
    }

     .order-card {
      border: 1px solid #e0e0e0;
      background-color: #fff;
      border-radius: 8px;
      padding: 15px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .order-img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
    }
    .status-dot {
      height: 10px;
      width: 10px;
      background-color: green;
      border-radius: 50%;
      display: inline-block;
      margin-right: 5px;
    }
    .review-link {
      color: #2874f0;
      font-weight: 500;
      text-decoration: none;
    }
    .review-link:hover {
      text-decoration: underline;
    }

      .section-title {
      background-color: #2874f0;
      color: white;
      padding: 10px;
      font-weight: 600;
    }
    .box {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 15px;
      margin-bottom: 15px;
    }
    .price-label {
      font-size: 14px;
      color: #555;
    }
    .price-value {
      font-weight: 600;
    }
    .total-payable {
      font-size: 18px;
      font-weight: 700;
      color: #000;
    }
    .savings {
      color: green;
      font-weight: 600;
    }
    .btn-change {
      border: 1px solid #ccc;
      font-size: 14px;
    }
    .product-img {
      width: 70px;
      height: 100px;
      object-fit: cover;
      border-radius: 4px;
    }
    .info-icon {
      font-size: 12px;
      cursor: pointer;
    }
    .section-title {
      background-color: #2874f0;
      color: white;
      padding: 10px;
      font-weight: 600;
    }
    .box {
      border: 1px solid #ccc;
      border-radius: 6px;
      padding: 15px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .price-label {
      font-size: 14px;
      color: #555;
    }
    .price-value {
      font-weight: 600;
    }
    .total-payable {
      font-size: 18px;
      font-weight: 700;
      color: #000;
    }
    .savings {
      color: green;
      font-weight: 600;
    }
    /* .btn-change {
      border: 1px solid #ccc;
      font-size: 14px;
    } */
    .product-img {
      width: 70px;
      height: 100px;
      object-fit: cover;
      border-radius: 4px;
    }
    .info-icon {
      font-size: 12px;
      cursor: pointer;
    }
    .number
    {
    font-size: 12px;
    color: #2874f0;
    background-color: #f0f0f0;
    border-radius: 2px;
    padding: 3px 7px;
    vertical-align: baseline;
    margin-right: 17px;

    }
    .card
    {
          box-shadow: 0;
    }
    
    .story, .mission-vision {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .story img, .mission-vision img {
      max-width: 100%;
      border-radius: 10px;
      flex: 1 1 350px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .story div, .mission-vision div {
      flex: 1 1 400px;
    }

    .stats {
      display: flex;
      justify-content: space-around;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .stat-item {
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      border-radius: 12px;
      padding: 2rem;
      flex: 1 1 180px;
      text-align: center;
    }

    .stat-item h3 {
      font-size: 2.5rem;
      color: #007bff;
      margin-bottom: 0.5rem;
    }

    .stat-item p {
      font-weight: 600;
      color: #555;
    }

    .team {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
    }

    .team-member {
      background: #fff;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .team-member img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 1rem;
    }

    .team-member h4 {
      margin-bottom: 0.25rem;
      color: #222;
    }

    .team-member p {
      color: #666;
      font-size: 0.9rem;
      margin-top: 0;
    }

    /* footer {
      text-align: center;
      padding: 2rem 1rem;
      background-color: #007bff;
      color: white;
    } */

    @media (max-width: 768px) {
      .story, .mission-vision {
        flex-direction: column;
      }
    }
    .stat-item {
  background: #fff;
  padding: 2rem;
  margin: 1rem 0;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
   }
      .contact-section {
      padding: 60px 0;
    }

    .contact-section h2 {
      margin-bottom: 20px;
      color: #333;
    }

    .contact-info {
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .contact-form {
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #007bff;
    }

    iframe {
      border: 0;
      width: 100%;
      height: 300px;
      border-radius: 8px;
      margin-top: 30px;
    }
    .form-control::placeholder {
      color: rgb(203, 203, 203) !important;
      opacity: 1;
     }
        .product-gallery {
      display: flex;
      gap: 20px;
      background-color: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .thumbnails {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .thumbnails img {
      width: 60px;
      height: 90px;
      object-fit: cover;
      border: 2px solid transparent;
      cursor: pointer;
      border-radius: 4px;
    }

    .thumbnails img:hover,
    .thumbnails img.active {
      border-color: #007bff;
    }

    .main-image img {
      width: 400px;
      height: 600px;
      object-fit: cover;
      border-radius: 6px;
    }

    /* Product Detail Page - Image Placeholder */
    .product-image-placeholder {
      width: 500px;
      height: 500px;
      background-color: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .product-image-placeholder .product-main-image {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
      cursor: pointer;
      border-radius: 10px;
      max-width: 100%;
      max-height: 100%;
    }

    @media (max-width: 767.98px) {
      .product-image-placeholder {
        width: 100% !important;
        height: auto;
        min-height: 300px;
        aspect-ratio: 1 / 1;
      }

      .product-image-placeholder .product-main-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
      }
    }
    .fs-7
    {
      font-size: 14px !important;
    }
    .btn-orange{
     background-color: #fa672d !important;
     color: #000 !important;
    }
    .form-label {
    margin-bottom: .5rem;
    color: #767373 !important;
    }
    .order-section
     { border: 1px solid #ddd;
       padding: 20px;
        border-radius: 8px;
         margin-bottom: 20px;
         background-color: #fff; 
        }
    /* .label { font-weight: 500; } */
    .order-items img
     { width: 50px;
       height: 50px;
        object-fit: cover;
         border-radius: 4px;
         }
    .order-meta small 
    { 
      display: block;
     }
     .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400 !important;
}

.img-radius-5 {
  border-radius: 5px;
  width: 70%;
}
.icon-radius-5 {
  border-radius: 5px;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.form-select  {
    padding: .375rem .75rem !important;
    padding-top: 0.375rem !important;
    padding-right: 0.75rem !important;
    padding-bottom: 0.375rem !important;
 
}

  .search-bar
  {
    width: 100%;
   border: 1px solid #fcd6a4;
   color:#3e3d3d;  
   padding: 12px 40px 12px 20px;
    font-size: 16px; 
    outline: none; 
    height: 40px;
     box-sizing: border-box;
      color: #000;
  }

   .amazon-search-bar {
    display: flex;
    border: 1px solid #f05b26;
    border-radius: 4px;
    height: 40px;
    overflow: hidden;
  }

  .amazon-search-bar select {
    width: 160px;
    border: none;
    border-right: 1px solid #f05b26;
    padding: 0 10px;
    font-size: 14px;
    background-color: #f3f3f3;
    appearance: none;
  }

  .amazon-search-bar input[type="text"] {
    flex: 1;
    border: none;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
  }

  .amazon-search-bar button {
    width: 50px;
    border: none;
    background-color: #f05b26;
    color: #ffffff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
  }
  .amazon-search-bar button:hover {
    background-color: #f05b26;
  }


    .message-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .message-box {
    visibility: hidden;
    width: 220px;
    background-color: #333;
    color: #fff;
    text-align: left;
    padding: 10px 15px;
    border-radius: 8px;
    position: absolute;
    top: 120%;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 14px;
  }

  .message-container:hover .message-box {
    visibility: visible;
    opacity: 1;
  }

  .message-box::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 15px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #333 transparent;
  }


  


  

  .info-section {
  display: flex;
  justify-content: space-between;
  /* border: 1px solid #007bff; */
  padding: 8px 4px; /* reduced padding */
  background-color: #fff;
}

.info-box {
  flex: 1;
  text-align: center;
  padding: 8px; /* reduced padding */
  border-right: 1px solid #e0e0e0;
}

.info-box:last-child {
  border-right: none;
}

.info-box img {
  width: 26px; /* smaller icon */
  height: 26px;
  margin-bottom: 6px;
}

.info-box h4 {
  font-size: 13px; /* slightly smaller */
  font-weight: 600;
  color: #333;
  margin: 4px 0;
}

.info-box p {
  font-size: 11px;
  color: #777;
  margin: 0;
  line-height: 1.2; /* tight line spacing */
}


  .language-dropdown .goog-te-combo {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
    background-color: #f8f9fa;
  }

  .goog-te-banner-frame.skiptranslate,
  body > .skiptranslate {
    display: none !important;
  }

  body {
    top: 0px !important;
  }

@media (max-width: 768px) {
    .category-nav {
      display: none !important;
    }
  }


/* slider */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 0;
    /* background-color: #d5d5d5; */
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0 !important;
    padding: 0 !important;
    display: block;
}

.product-img-box {
    padding: 0 !important;
    width: 100%;
    height: 200px;
    display: block;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
}

.product-card .product-img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0 !important;
    padding: 0 !important;
    display: block;
}
.product-title {
    font-weight: 600;
    padding-top: 50px;
    margin-top: -30px;

}
.bottom-border
{
  border-radius: 10px;
}
.product-price {
    font-size: 1rem;
}
.old-price {
    text-decoration: line-through;
    color: gray;
    font-size: 0.9rem;
}
.new-price {
    color: #d32f2f;
    font-weight: bold;
    font-size: 1.1rem;
}
.under-price {
    font-weight: bold;
}

/* Custom dotted carousel indicators */
.custom-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: transparent;
    margin: 0 4px;
    transition: all 0.3s ease;
}
.custom-indicators button.active {
    background-color: #050505;
    /* border-color: #eb0b0b; */
}


.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px !important;
    height: 10px !important;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #767676 !important;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -66px !important;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
/* for product Details Side Images */
.modal-full-image {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.modal-full-image img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Top Offers - 5 products per row */
.top-offers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; /* Same as Bootstrap g-4 */
}

.top-offers-row > .top-offers-col {
  flex: 0 0 calc((100% - (4 * 1.5rem)) / 5);
  max-width: calc((100% - (4 * 1.5rem)) / 5);
  padding: 0;
}

@media (max-width: 991.98px) {
  .top-offers-row > .top-offers-col {
    flex: 0 0 calc((100% - (2 * 1.5rem)) / 3);
    max-width: calc((100% - (2 * 1.5rem)) / 3);
  }
}

@media (max-width: 575.98px) {
  .top-offers-row > .top-offers-col {
    flex: 0 0 calc((100% - (1 * 1.5rem)) / 2);
    max-width: calc((100% - (1 * 1.5rem)) / 2);
  }
}

/* Discount badge for Top Offers */
.discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Reduce left padding for product names in all sections */
.card .card-body {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

/* Ensure view icon has 5px right padding */
.card-footer .btn-primary[aria-label*="View"] {
  padding-right: 5px !important;
}

/* Filter buttons styling */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background: #ffffff;
  color: #495057;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  user-select: none;
  margin: 0;
}

.filter-button:hover {
  border-color: #007bff;
  background: #f8f9fa;
  color: #007bff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.1);
}

.filter-button input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.filter-button.active {
  background: #007bff;
  border-color: #007bff;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.filter-button.active:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.4);
}

.filter-button span {
  display: block;
  pointer-events: none;
}

/* Attribute buttons for product details page */
.attribute-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.attribute-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  background: #ffffff;
  color: #495057;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  user-select: none;
  margin: 0;
  pointer-events: auto;
  z-index: 1;
}

.attribute-button:hover {
  border-color: #007bff;
  background: #f8f9fa;
  color: #007bff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.1);
}

.attribute-button.active {
  background: #007bff;
  border-color: #007bff;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

.attribute-button.active:hover {
  background: #0056b3;
  border-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.4);
}

/* Category page title - 20% smaller and left aligned */
.category-page-title {
  font-size: 1.4rem !important;
  text-align: left !important;
}

/* Footer top margin */
footer.bg-dark {
  margin-top: 20px !important;
}

/* Product details page - white background */
section.container-fluid.mt-2 {
  background-color: #ffffff !important;
  margin-top: 0.5rem !important;
}

section.bg-white {
  background-color: #ffffff !important;
}

/* Product details page - smaller font sizes */
.product-title-small {
  font-size: 1.4rem !important; /* 20% smaller than default h3 (1.75rem) */
}

.product-details-text {
  font-size: 0.8rem !important; /* 20% smaller than default p (1rem) */
}/* Force refresh - Sat Nov 29 09:13:28 AM UTC 2025 */
/* CACHE BUST: 1764407729 */
/* FORCE REFRESH 20251129091553 */
/* Design Changes Reapplied - 2025-11-29 09:25:25 */
