
/* Customer View card */
.customer-view-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background: #f5f5f5;
    transition: box-shadow 0.3s;
  }

  .customer-view-card:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  }

  .product-image img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
  }

  .filter-sidebar {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }

  @media (min-width: 992px) {
    .filter-sidebar{
      height: calc(100vh - 275px);
      overflow: scroll;
      scrollbar-width: none;
    }
  }
  .filter-category {
    margin-bottom: 1rem;
  }

  .rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .rating span {
    color: #28a745;
  }



.stock-card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 0px solid rgba(0, 0, 0, 0.125) !important;
}

.clear-icon {
    font-size: 30px;
    margin-bottom: 5px;
    margin-left: 10px;
    cursor: pointer;
    color: #52acff;
}


/* 5. Trending Deals */

.special-products-div {
  border: 1px solid #ebebeb;
  background: #fff;
  border-radius: 10px;
  padding: 0;
  transition: box-shadow .5s;
  position: relative;
  overflow: hidden;
}

.special-products-div .sold-out {
    position: absolute;
    top: 35%;
    left: 35%;
    width: 65px;
    background: #a60811;
    color: white;
    padding: 10px 10px;
    font-weight: bold;
    border-radius: 50px;
}

.special-products-div .sold-out label {
    position: relative;
    left: 5px;
    margin: 0;
}

.special-products-div:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.special-products-div img {
    border-radius: 0px;
    /* width: 100%; */
    /* height: 100%; */
    object-fit: contain;
}

.image-column {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .5s;
}

.special-products-div .overlay .icon-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
    width: 95px;
}

.special-products-div .overlay .icon-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px !important;
}

.special-products-div .overlay .icon-container i {
  color: #fff;
  font-size: 18px;
  padding: 10px;
  /* background: #0002ff; */
  cursor: pointer;
}

.special-products-div .overlay .icon-container .tooltip-text {
    visibility: hidden;
    width: 100px;
    background-color: #fff;
    color: #000;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    font-size: 12px;
}

.special-products-div .overlay .icon-container .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.special-products-div .overlay .icon-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.special-products-div:hover .overlay {
    opacity: 1;
}

.trending-item-view-more {
    font-size: 24px;
    color: #000;
    background: #fff;
    padding: 12px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all .5s;
}

.special-products-div:hover .trending-item-view-more {
    color: #fff;
    background: #0002ff;
}

.trending-item-i {
    position: relative;
    top: -13px;
    left: 1px;
    cursor: pointer;
}

.trending-product-name {
  font-weight: 500;
  font-size: 26px;
  transition: color .5s;
  margin-bottom: 3px;
  /* line-height: 16px; */
  text-align: center;
}

.trending-product-price {
    font-size: 21px;
    font-weight: bold;
}

.trending-product-group {
    font-size: 16px;
    color: #b1b1b1;
    text-align: center;
}

.special-products-div:hover .trending-product-name {
    color: #ff0c13;
}

/* .slider-container {
    position: relative;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
 */


.slider-container {
  position: relative;
  overflow: hidden;
  height: 350px;
  /* margin-top: 5px; */
}

/* @media (min-width: 768px) {
  .slider-container{
    height: 100% !important;
  }
} */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100% !important;
  align-items: center;
  /* padding: 10px; */
  margin-top: 10px;
}

.slider-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    height: 100%;
}

.slider-image {
    width: 100%;
    transition: opacity 0.5s ease;
    border-radius: 5px !important;
}

/* Header */
.sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    /* border-bottom: 1px solid #646464; */
    box-shadow: -5px -12px 20px 0px #000000c9;
}

.sticky-nav {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.old-price {
    font-size: 14px;
    color: #b1b1b1;
    text-decoration: line-through;
}
.old-percntage {
  font-size: 14px;
  color: #b1b1b1;
}


/* Quantity Button */

.quantity-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .quantity-btn-1 {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 25px 0px 0px 25px;
    transition: all .5s;
  }
  
  .quantity-btn-2 {
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 0px 25px 25px 0px;
    transition: all .5s;
  }
  
  .quantity-btn-1:hover, .quantity-btn-2:hover{
    background: #000;
    color: #fff;
  }
  
  .quantity-input {
    width: 55px;
    height: 30px;
    text-align: center;
    border-top: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    font-size: 16px;
    border-left: none;
    border-right: none;
    text-align: left;
    padding-left: 5px;
  }
  
  .btn-w{
    width: 70px;
    outline: none;
    box-shadow: none;
    border: none;
  }

  .btn-w:active , .btn-w:focus, .btn-w:focus-visible{
    outline: none !important;
    box-shadow: none !important;
    border: none;
  }


  .cust-title-head{
    color: #0000ff !important;
  }


  /* 20. Cart Page */
.cart-div{
    margin-top: 15px;
  }
  
  .cart-div-bg{
    background: #f3f3f3;
    height: 250px;
  }

  .cart-div-bg img{
    height: 100%;
    object-fit: cover;
  }
  
  .cart-price{
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #fff;
    padding: 10px 15px;
    margin: 0px;
    font-weight: bold;
    font-size: 18px;
  }
  
  .cart-div .cart-remove{
    font-size: 18px;
    color: #ff0000;
    letter-spacing: .5px;
  }
  
  .all-quantity{
    width: 55px;
    height: 30px;
    text-align: center;
    border-top: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    font-size: 16px;
    border-left: none;
    border-right: none;
    text-align: left;
    padding-left: 5px;
  }
  
  .cart-product-name{
    font-size: 23px;
    font-weight: 600;
    color: #000;
    transition: all .5s;
  }
  
  .cart-product-name:hover{
    font-size: 23px;
    font-weight: 600;
    color: #0000ff;
  }
  
  .cart-prooduct-text{
    font-size: 18px;
    font-weight: 400;
    color: #000;
  }
  
  .cart-remove {
    cursor: pointer;
    color: #f00;
  }
  .no-data {
    display: none;
    text-align: center;
    padding: 20px;
  }
  .no-data-head{
    color: #a9a9a9;
    font-size: 26px;
    font-weight: 400;
  }
  .no-data img {
    width: 100px; /* Adjust as needed */
    height: auto;
  }
  
  .cart-instructions{
    padding-top: 15px;
    font-size: 18px;
    letter-spacing: .2px;
  }
  
  .special-instructions {
    display: none;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .special-instructions.show {
    display: block;
  }
  
  .redeem-code{
    height: 50px;
    background: #f3f3f3;
    font-size: 18px;
    transition: all .5s;
    border-radius: 10px 0px 0px 10px;
  }
  
  .redeem-code-btn{
    width: 110px;
    border-radius: 0px 10px 10px 0px;
  }
  
  .redeem-code:active,
  .redeem-code:focus,
  .redeem-code:checked {
    border: 1px solid #0000ff;
    outline: none;
    box-shadow: none;
  }

  @media (min-width: 1500px) {
    .container {
        max-width: 1650px !important;
    }
}

@media (min-width: 992px) {
    .sticky-col {
        position: sticky; 
        top: 75px; 
        align-self: flex-start;
    }
}

.no-data-head{
    color: #fff;
    font-size: 26px;
    font-weight: 400;
}

.cart-btn {
    background: #060606;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    transition: all 1s;
}

.cart-btn:hover {
    background: #fff;
    color: #060606;
    font-weight: bold;
    padding: 10px;
}


/* Profile Dropdown */
.custom-dropdown {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none; /* Ensure dropdown starts hidden */
    top: 60px;
    width: 170px;
    left: -20px;
    border-radius: 10px;
  }
  
  .custom-dropdown img {
    width: 15px;
    margin-right: 5px;
  }
  
  .custom-dropdown a {
    display: block;
    padding: 5px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all .5s;
  }
  
  .custom-dropdown a:hover {
    color: #252525;
    margin-left: 5px;
  }
  
  .header-shopping-icons {
    padding: 15px;
    font-size: 22px;
    color: #0000ff !important;
  }


/* 15. Wishlist */
.product-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    border: 1px solid #f4f4f4;
  }
  .product-table th, .product-table td {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #f4f4f4;
    border-right: 1px solid #f4f4f4;
  }
  .product-table th {
      background-color: #f4f4f4;
      font-weight: bold;
      font-size: 16px;
      text-transform: uppercase;
  }
  .product-table img {
    max-width: 100px;
  }
  .btn-select-options-lg {
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
  }
  .btn-select-options-lg:hover {
    background-color: #0056b3;
    color: #fff;
  }
  .remove-icon-lg {
    cursor: pointer;
    color: #dc3545;
    font-size: 20px;
  }
  
  /* 15.1 For Mobile */
  .product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
  }
  .product-card img {
    max-width: 250px;
    margin-bottom: 15px;
  }
  .btn-select-options-sm {
    background-color: #007bff;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    margin-top: 10px;
  }
  .btn-select-options-sm:hover {
    background-color: #0056b3;
    color: #fff;
  }
  .remove-icon-sm {
    cursor: pointer;
    color: #dc3545;
    font-size: 20px;
    display: block;
    margin-top: 10px;
  }
  
  .no-data-found img {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .no-data-found p {
    font-size: 30px;
    color: #333;
    font-weight: 400;
  }
  
  .shopping-btn{
    background: #2189ff;
    color: #fff;
    font-weight: 500;
    padding: 5px 20px;
    font-size: 18px;
    transition: all .5s;
    letter-spacing: .5px;
  }
  
  .shopping-btn:hover{
    background: #000;
    color: #fff;
    font-weight: 500;
    padding: 5px 20px;
    font-size: 18px;
    letter-spacing: .5px;
  }
  
  .shopping-btn:active,
  .shopping-btn:focus,
  .shopping-btn:checked {
    outline: none;
    box-shadow: none;
  }

  @media (min-width: 768px) {

    /* Wishlist */
    .wishlist-sm-only{
        display: none;
    }
}

@media (max-width: 767px) {

    /* Wishlist */
    .wishlist-lg-only{
        display: none;
    }
}


/* 14. Image Zoom */
.product-img {
    position: relative;
    overflow: hidden;
    width: 600px;
    border-radius: 25px;
    border: 2px solid #ddd;
  }

  /* @media (min-width: 1200px) {
    .product-img{
      height: 600px !important;
    }
  } */
  
  .product-img img {
    width: 100%;
    /* height: 350px; */
    object-fit: contain;
    transition: transform 0.5s ease-out;
    border-radius: 25px;
  }
  
  .product-img:hover {
    cursor: move; /* This sets the cursor to a '+' symbol */
  }
  
  .thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .thumbnails img {
    width: 150px;
    height: 150px;
    /* object-fit: cover; */
    cursor: pointer;
    border-radius: 10px;
    transition: opacity 0.3s ease;
  }
  
  .thumbnails img:hover {
  opacity: 0.7;
  }
  
  
  /* 14.1 Prooducts Details */
  .product-info {
    flex: 1;
  }
  
  .product-info h1 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 10px;
  }
  
  .product-info h2 {
    font-size: 26px;
    color: #2189ff;
    margin-bottom: 20px;
  }
  
  .product-info .color {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .product-info .color-item {
    margin-bottom: 10px;
    margin-right: 10px;
    font-size: 14px;
    padding: 5px 15px;
    color: #121414;
    border: 1px solid #141415;
    position: relative;
    cursor: pointer;
  }
  
  .color-item .fa {
    color: silver;
    margin-right: 3px;
  }
  
  .color-item:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 42px; /* Adjust to make room for the triangle */
    left: 50%;
    transform: translateX(-50%);
    background-color: #d0cece;
    color: #000;
    padding: 5px 10px;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 12px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
  }
  
  .green-color{
    color: #029698 !important;
  }
  
  .text-primary-custom{
    color: #029698 !important;
  }
  
  .green-border{
    border: 1px solid #029698 !important;
  }
  
  .silver-color{
    color: silver !important;
  }
  
  .silver-border{
    border: 1px solid silver !important;
  }
  
  .color-item:hover::before {
    content: "";
    position: absolute;
    bottom: 32px; /* Position the triangle at the bottom of the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #d0cece transparent transparent transparent;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
  }
  
  .color-item:hover::after,
  .color-item:hover::before {
    opacity: 1;
    visibility: visible;
  }
  
  .product-info .product-details {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .product-info .product-details-label {
    border: 1px solid #0000ff;
    padding: 4px 8px;
    border-radius: 8px;
    color: #0000ff;
    font-weight: 500;
    margin-right: 5px;
  }
  
  .product-info .product-total {
    padding: 4px 8px;
    color: #000;
    font-weight: 500;
  }
  
  .product-info .product-available {
    padding: 4px 8px;
    color: #0ea500;
    font-weight: 500;
  }
  
  .product-info .product-sold-out {
    padding: 4px 8px;
    color: #a10e08;
    font-weight: 500;
  }
  
  .quantity-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
  }
  
  .quantity-btn-3 {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 25px 0px 0px 25px;
    transition: all .5s;
  }
  
  .quantity-btn-4 {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 0px 25px 25px 0px;
    transition: all .5s;
  }
  
  .quantity-btn-1:hover, .quantity-btn-2:hover{
    background: #000;
    color: #fff;
  }
  
  #quantity-input {
    width: 55px;
    height: 40px;
    text-align: center;
    border-top: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    font-size: 16px;
    border-left: none;
    border-right: none;
    text-align: left;
    padding-left: 5px;
  }
  
  .cart-btn-custom{
    background: #fff;
    color: #000;
    font-weight: bold;
    padding: 10px;
    transition: all .5s;
  }
  
  .cart-btn-custom:hover{
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px;
  }
  
  .cart-btn-custom:active,
  .cart-btn-custom:focus,
  .cart-btn-custom:checked {
    outline: none;
    box-shadow: none;
  }
  
  .cart-btn{
    background: #2189ff;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    transition: all .5s;
  }
  
  .cart-btn:hover{
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px;
  }
  
  .cart-btn:active,
  .cart-btn:focus,
  .cart-btn:checked {
    outline: none;
    box-shadow: none;
  }
  
  .buy-it-btn-custom{
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    transition: all .5s;
  }
  
  .buy-it-btn-custom:hover{
    background: #0000ff;
    color: #fff;
    font-weight: bold;
    padding: 10px;
  }
  
  .buy-it-btn-custom:active,
  .buy-it-btn-custom:focus,
  .buy-it-btn-custom:checked {
    outline: none;
    box-shadow: none;
  }
  
  .buy-it-btn{
    background: #000;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    transition: all .5s;
  }
  
  .buy-it-btn:hover{
    background: #2189ff;
    color: #fff;
    font-weight: bold;
    padding: 10px;
  }
  
  .buy-it-btn:active,
  .buy-it-btn:focus,
  .buy-it-btn:checked {
    outline: none;
    box-shadow: none;
  }
  
  .delivery-details{
    font-size: 18px;
  }
  
  .secure-payment-div{
    position: relative;
  }
  
  .secure-payment{
    border: 1px solid #000;
  }
  
  .secure-payment label{
    margin: 0px;
    position: absolute;
    top: -14px;
    background: #fff;
    padding: 0 10px;
    left: 15px;
    font-size: 18px;
  }
  
  .secure-payment img{
    padding: 15px 15px;
  }
  
  .product-social-label{
    font-size: 18px;
  }
  
  .product-social-icons {
    display: flex;
    gap: 10px;
  }
  
  .product-social-icons a:hover {
    display: flex;
    text-decoration: none;
  }
  
  .product-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0000ff;
    color: #fff;
    border: 2px solid #fff;
    transition: all 0.3s, color 0.3s;
  }
  
  .product-social-icon:hover {
    background-color: #000;
    color: white;
    box-shadow: 0px 0px 12px 1px #fff;
  }
  
  
  /* 14.2 Product Details Accordion */
  .accordion {
    border-bottom: 1px solid transparent;
  }
  
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid #bcbcbc;
    cursor: pointer;
    border-radius: 0px;
    transition: background-color 0.3s ease;
  }
  
  .accordion-header:hover {
    background-color: #6a6a6a3b;
  }
  
  .accordion-header span {
    font-size: 20px;
    font-weight: 600;
  }
  
  .accordion-toggle {
    font-size: 22px;
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
    background-color: #ccc;
    margin-top: 1px;
    border-radius: 0px;
  }
  
  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
  }
  
  .category, .other-info {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .return-policy p {
    font-size: 17px;
  }
  
  .shipping-info p {
    font-size: 17px;
  }
  
  .customer-reviews p{
    font-size: 18px;
  }
  
  .customer-reviews .write-review{
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
  }
  
  .customer-reviews a{
    color: #000;
    transition: all .5s;
  }
  
  .customer-reviews a:hover{
    color: #007bff;
  }
  
  .category-info {
    display: flex;
    flex-wrap: wrap;
  }
  
  .category-info div {
    width: 50%;
    padding: 10px 0;
  }
  
  .category-info strong {
    display: block;
    font-weight: bold;
    /* margin-bottom: 5px; */
    margin-bottom: 0px;
  }
  
  .enquiry-div img{
    width: 30px;
  }
  
  .enquiry-div .enquiry-text{
    font-size: 22px;
    color: #000;
    position: relative;
    top: 3px;
    margin-left: 5px;
    text-decoration: underline;
    transition: all .5s;
  }
  
  .enquiry-div .enquiry-text:hover{
    color: #2189ff;
    position: relative;
    top: 3px;
    margin-left: 5px;
  }
  
  /* 22. Login Page */
.login-section{
    margin-top: 30px;
  }
  
  .login-section img{
    width: 100%;
  }
  
  .login-form-input{
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #2189ff;
    font-weight: 400;
    margin-bottom: 10px;
    transition: all .5s;
  }
  
  .login-form-input:active, .login-form-input:focus, .login-form-input:focus-visible{
    border: 1px solid #0ea300;
    outline: none;
    box-shadow: none;
  }
  
  .login-head{
    color: #000;
    font-weight: bold;
    width: max-content;
    transition: all .5s;
  }
  
  .login-head:hover{
    color: #2189ff;
  }
  
  .for-register-text{
    font-size: 17px;
    color: #747474;
  }
  
  .for-create-account{
    color: #2189ff;
    transition: all .5s;
  }
  
  .for-create-account:hover{
    color: #0056b3;
  }
  
  .for-forgot-password{
    font-size: 15px;
    color: #2189ff;
    transition: all .5s;
  }
  
  .for-forgot-password:hover{
    font-size: 15px;
    color: #0056b3;
  }
  
  .login-page-btn{
    padding: 10px 35px;
    background: #2189ff;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: all .5s;
    border-radius: 10px;
    margin-top: 20px;
  }
  
  .login-page-btn:hover{
    background: #000;
    color: #fff;
  }
  
  .border-b-only{
    border-bottom: 1px solid #dee2e6;
  }

  .total-price span {
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .payment-method .form-label {
    font-weight: bold;
  }
  
  .payment-method input {
    padding: 10px;
  }

  @media (min-width: 991px) {
    .login-img-w{
        width: 550px !important;
    }
  }

  
.checkout-img-div{
    position: relative;
    width: 100px;
    height: 100px;
  }
  .checkout-product-count{
    position: absolute;
    background: #414141;
    border-radius: 50px;
    width: 25px;
    text-align: center;
    right: -10px;
    top: -10px;
    font-weight: 600;
    color: #fff;
  }
  
  .checkout-product-info .checkout-name{
    font-size: 14px;
    font-weight: 600;
  }
  
  .checkout-product-info .checkout-properties{
    font-size: 14px;
  }
  
  .checkout-total-t{
    font-size: 22px;
  }
  
  .checkout-total-price{
    font-size: 24px;
  }

  .text-end{
    text-align: end;
  }


  
/* 23. My Profile */
/* Sidebar Menu */
.profile-sidebar {
    color: white;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .profile-sidebar button {
    padding: 15px;
    background-color: #333;
    color: white;
    border: none;
    text-align: left;
    width: 160px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
    margin-right: 5px;

  }
  .profile-sidebar button:hover, .profile-sidebar button.active, .profile-sidebar button.focus, .profile-sidebar button.focus-visible {
    background-color: #0000ff;
    color: #fff;
    outline: none;
    box-shadow: none;
  }
  /* Content Area */
  .content {
    flex-grow: 1;
    padding: 0;
  }
  .profile-tab-content {
    display: none;
  }
  .profile-tab-content.active {
    display: block;
  }
  
  .order-card-bg{
    background: #f3f3f3;
  }
  
  
  .profile-status{
    color: #000;
  }

  .user-image-circle{
    width: 150px;
    border-radius: 77px;
    height: 150px;
    margin-top: 10px;
  }


  .my-address-card{
    background: #e2e2e2 !important;
  }

  @media (max-width: 991px) {
    .sm-p-0{
      padding: 0px !important;
    }
  }

  .bill-btns-color{
    color: #adadad !important;
  }


  .cart-quantity-label{
    left: 62px;
    position: absolute;
    font-size: 14px;
    font-weight: 600;
  }

  .cart-quantity-label2{
    left: 70px;
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    top: 10px;
  }


.checkbox-wrapper:hover .check {
  stroke-dashoffset: 0;
}

.checkbox-wrapper {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
}

.checkbox-wrapper .background {
  fill: #34d103;
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper .stroke {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  stroke-dashoffset: 100;
  stroke-dasharray: 100;
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper .check {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  stroke-dashoffset: 22;
  stroke-dasharray: 22;
  transition: ease all 0.6s;
  -webkit-transition: ease all 0.6s;
}

.checkbox-wrapper input[type=checkbox] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  opacity: 0;
  -appearance: none;
  -webkit-appearance: none;
}

.checkbox-wrapper input[type=checkbox]:hover {
  cursor: pointer;
}

.checkbox-wrapper input[type=checkbox]:checked + svg .background {
  fill: #34d103;
}

.checkbox-wrapper input[type=checkbox]:checked + svg .stroke {
  stroke-dashoffset: 0;
}

.checkbox-wrapper input[type=checkbox]:checked + svg .check {
  stroke-dashoffset: 0;
}


.square-wrapper {
  position: relative;
  display: inline-block;
  width: 23px;
  height: 23px;
}

.square-wrapper input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.square-wrapper svg {
  width: 100%;
  height: 100%;
  display: block;
}

.square-bg {
  fill: #0c0cff;
  transition: fill 0.4s ease;
}

.square-stroke {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 128;
  stroke-dashoffset: 128;
  transition: stroke-dashoffset 0.4s ease;
}

.square-check {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.4s ease;
}

/* ✔️ Show tick and stroke on hover */
.square-wrapper:hover .square-stroke {
  stroke-dashoffset: 0;
}

.square-wrapper:hover .square-check {
  stroke-dashoffset: 0;
}

/* ✔️ Show on checked as well */
.square-wrapper input[type="checkbox"]:checked + svg .square-bg {
  fill: #0c0cff;
}

.square-wrapper input[type="checkbox"]:checked + svg .square-stroke {
  stroke-dashoffset: 0;
}

.square-wrapper input[type="checkbox"]:checked + svg .square-check {
  stroke-dashoffset: 0;
}

.quantity-count{
  position: absolute;
  left: 63px;
  top: -10px;
  color: #fff;
  background: #5b5b5b;
  padding: 0px 8px !important;
  border-radius: 100%;
  font-weight: bold;
  margin: 0;
}


@media (max-width: 991px) {
  .checkout-mob-order-1{
    order: 1;
  }
  .checkout-mob-order-2{
    order: 2;
  }
}


@media (min-width: 768px) {
  .slider-item {
    min-width: 100%;
    display: flex;
    justify-content: center;
    max-height: 320px;
    object-fit: cover;
  }
  
  .special-products-div {
    border: 1px solid #ebebeb;
    background: #fff;
    border-radius: 20px;
    padding: 0;
    transition: box-shadow .5s;
    position: relative;
    /* overflow: hidden; */
    /* max-height: 320px !important; */
    /* max-height: 200px !important; */
    /* height: 100%; */
  }
}

@media (max-width: 767px) {
  .product-info h1 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 10px;
  }
}

.thumbnails img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  cursor: pointer;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  border: 2px solid #ddd;
}


.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}


/* New styles */

body {
  display: flex;
  flex-wrap: wrap !important;
  flex-direction: column !important;
  /* min-height: 100vh; */
  background: #fff;
  overflow-x: hidden !important;
}

@media (992px <= width <= 1400px) {
  .col-xl-4{
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

.slider {
    width: 100% !important;
}

  .form-control-search {
    display: block;
    width: 100%;
    height: calc(15px + 20px + 2px);
    padding: 3px 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: #ffffff00;
    background-clip: padding-box;
    border: 1px solid #f3f3f3;
    border-radius: 0.42rem;
    -webkit-box-shadow: none;
    box-shadow: 0px -1px 4px 0px #00000040;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  }

  .form-control-search:focus{
    border: 1px solid #f3f3f3;
  }

    .form-control-search::placeholder{
        color: #424242 !important;
    }

    .sticky-wrapper {
        border: none !important;
    }

    .phone-label{
      font-size: 17px;
    }

    .envelope-label{
      font-size: 17px;
    }

    .map-label{
      font-size: 17px;
    }

    input[type="checkbox"] {
        box-sizing: border-box;
        padding: 0;
        width: 18px;
        height: 18px;
    }

    /* Applies to screen ≥ 768px (md) */
    @media (700px <= width <= 1200px) {
        .col-md-6 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }
    }

    /* Applies to screen ≥ 992px (lg) */
    @media (1201px <= width <= 1599px) {
        .col-lg-4 {
            flex: 0 0 33.3333% !important;
            max-width: 33.3333% !important;
        }
    }

    /* Applies to screen ≥ 1200px (xl) */
    @media (min-width: 1600px) {
        .col-xl-3 {
            flex: 0 0 25% !important;
            max-width: 25% !important;
        }
    }

    @media (min-width: 768px) {
        .logo-mr-5{
            margin-right: 3rem !important;
        }
    }

    input[type="checkbox"] {
        accent-color: #ffd908 !important; /* Your desired color */
    }

    .contact-info i {
        transform: rotate(90deg);
    }

    .contact-info, .info-block {
        color: #000000 !important;
        transition: all .5s;
    }

    @media (max-width: 991px) {
        .hide-in-sm{
            display: none !important;
        }
    }

    @media (min-width: 992px) {
        .show-only-in-sm{
            display: none !important;
        }
    }

    @media (max-width: 576px) {
        .contact-info, .info-block {
            width: 100%;
            justify-content: center;
            margin-bottom: 0px;
            display: flex;
        }
    }

    @media (min-width: 576px) {
        .contact-info, .info-block {
            margin-right: 5px;
        }
    }

    @media (min-width: 991px) {
        .contact-info {
            margin-right: 1.5rem;
        }
    }

    .footer-text, .footer-company-text {
        font-size: 12px;
        color: #333;
    }
    .footer-company-text a {
        text-decoration: none;
        color: #007bff;
    }
    .footer-company-text a:hover {
        text-decoration: underline;
    }
    .social-icons img {
        transition: transform 0.3s ease;
    }
    .social-icons img:hover {
        transform: scale(1.1);
    }
    .footer-company-outer {
        flex-wrap: wrap;
        gap: 1px;
        background: #fff;
        border-radius: 5px;
        width: max-content !important;
        padding: 0 12px;
    }

    /* Show the panel */
    .side-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background: #ffffff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 99999;
    }
    .side-panel.active {
      transform: translateX(0);
    }

    /* Panel content */
    .panel-content {
      padding: 20px;
    }



    /* Footer Styles */
    .footer-wrapper {
      background-color: #2c2c2c !important;
      background-image: url('../img/banner/bg-distort.png');
      color: #fff;
      padding: 35px 30px 20px;
    }

    .footer-main {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
    }

    .brand-logo {
      width: 150px;
      margin-bottom: 20px;
    }

    .brand-description,
    .office-address,
    .office-contact {
      font-size: 14px;
      line-height: 1.6;
    }

    .footer-title {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: bold;
    }

    .newsletter-form {
      display: flex;
      border-bottom: 1px solid #ccc;
      padding-bottom: 6px;
    }

    .newsletter-input {
      flex: 1;
      padding: 8px;
      border: none;
      background: transparent;
      color: #fff;
      outline: none;
    }

    .newsletter-button {
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      font-size: 18px;
    }

    .footer-social {
      text-align: center;
      margin-top: 40px;
    }

    .social-links-div a {
      color: #ccc;
      margin: 0 10px;
      font-size: 16px;
      transition: color 0.3s;
    }

    .social-links-div a:hover {
      color: #fff;
    }

    .footer-bottom {
      text-align: center;
      font-size: 13px;
      color: #ccc;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .footer-main {
        flex-direction: column;
      }
    }



    @media (min-width: 768px) {
      .custom-col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        max-width: 50%;
      }

    }

    @media (min-width: 992px) {
      .customer-web-logo{
        width: 250px !important;
      }
    }
    @media (min-width: 1200px) {
      .custom-col-xl-4 {
        flex: 0 0 auto;
        width: 33.3333%;
        max-width: 33.3333%;
      }
    }


    @media (min-width: 700px) {
      .show-in-mobile-only{
        display: none !important;
      }
    }

    @media (max-width: 699px) {
      .hide-only-in-mobile{
        display: none !important;
      }

      .slider-container {
        height: 150px !important;
      }

      .no-pb-sm{
        padding-bottom: 0px !important;
      }

      .trending-product-name {
        font-weight: 500;
        font-size: 20px;
        transition: color .5s;
        margin-bottom: 3px;
        text-align: center;
        white-space: nowrap;
        width: 100% !important;
        text-overflow: ellipsis;
        overflow: hidden;
      }

      .trending-product-group {
        font-size: 14px;
        color: #b1b1b1;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .product-img img {
        width: 100%;
        height: 350px !important;
        object-fit: contain;
        transition: transform 0.5s ease-out;
        border-radius: 25px;
      }

      .no-mr-in-sm{
        margin-right: 0px !important;
      }

      .mr-only-in-sm{
        margin-right: 10px !important;
      }
    }

    @media (700px <= width <= 991px) {
      .product-img img {
        width: 100%;
        height: 500px !important;
        object-fit: contain;
        transition: transform 0.5s ease-out;
        border-radius: 25px;
      }
    }
    
    @media (min-width: 992px) {
      .product-img img {
        width: 100%;
        max-height: 800px !important;
        object-fit: contain;
        transition: transform 0.5s ease-out;
        border-radius: 25px;
        
      }
    }


    @media (max-width: 991px) {
      .call-fixed-a{
        position: fixed;
        left: 10px;
        bottom: 84px;
        z-index: 9999;
        backdrop-filter: blur(25px);
        width: 65px;
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px 20px 0px 0px;
        overflow: hidden;
      }

      .whatsapp-fixed-a{
        position: fixed;
        left: 10px;
        bottom: 10px;
        z-index: 9999;
        backdrop-filter: blur(25px);
        width: 65px;
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0px 0px 20px 20px;
        overflow: hidden;
      }
    }

    @media (min-width: 992px) {
      .call-fixed-a{
        position: fixed; 
        right: 20px; 
        bottom: 95px; 
        cursor: pointer; 
        z-index: 9999;
      }

      .whatsapp-fixed-a{
        position: fixed; 
        right: 10px; 
        bottom: 10px; 
        cursor: pointer; 
        z-index: 9999;
      }
    }