.category-section .product-wrapper .wrapper-img img{
    width: 100%;
    height: 150px;
    object-fit: contain;
    padding: 10px;
}
.product-wrapper .product-img img{
    height: auto;
}
.pb-8{
    padding-bottom: 8rem;
}
.banner-slider .slider-item .product-wrapper .product-img img

.hero-section .banner-slider .owl-dots{
    bottom: -27px;
}

.banner-slider .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 2px;
    padding: 5px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    text-align: center;
    flex: 0 0 auto;
    width: 200px;
}
.bulk-order {
    flex: 1;
    text-align: center;
}

.bulk-order a {
    background: #9812b6;
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.bulk-order a:hover {
    background: #9812b6;
}
.modern-toggle {
    background: linear-gradient(135deg, #ff8a00, #ff5e00);
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 3 lines container */
.toggle-lines {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 16px;
}

/* Each line */
.toggle-lines span {
    display: block;
    height: 2.5px;
    width: 22px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Middle line smaller (stylish look) */
.toggle-lines span:nth-child(2) {
    width: 16px;
}

/* Hover effect */
.modern-toggle:hover span:nth-child(2) {
    width: 22px;
}

/* Slight animation */
.modern-toggle:hover span {
    background: #fff;
    transform: translateX(2px);
}

/* Circle Image */
.category-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    padding: 3px;
    background: #eee;
    overflow: hidden;
    margin: auto;
    transition: 0.3s;
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Hover effect */
.category-item:hover .category-circle {
    border: 2px solid #ff4d4d;
    transform: scale(1.05);
}

/* Title */
.category-title {
    font-size: 13px;
    margin-top: 6px;
    color: #333;
    font-weight: 500;
}
.pdinp-cl-sz label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* Qty */
.qty-box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-wrapper {
    margin: 40px auto;
    line-height: 1.7;
    color: #333;
}

.policy-box h2 {
    color: #ff6a00;
    font-size: 26px;
    margin-top: 30px;
}

.policy-box h2:first-child {
    margin-top: 0;
}

.policy-box p {
    margin: 10px 0;
    font-size: 16px;
}

.policy-box ul {
    margin: 10px 0 10px 20px;
}

.policy-box li {
    margin-bottom: 6px;
}
.qty-box input {
  width: 70px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: #f1f1f1;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.qty-btn:hover {
  background: #7802a2;
  color: #fff;
}

/* Colors */
.color-options {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}
.product-colors {
    margin-top: 15px;
}
.color-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 2px solid #ddd;
  transition: 0.3s;
}

/* ACTIVE STATE FIX */
.color-circle.active {
  border: 2px solid #7802a2;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #7802a2;
  transform: scale(1.1);
}

/* Optional hover effect */
.color-circle:hover {
  transform: scale(1.08);
}

/* Size */
.size-options {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.size-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.size-btn:hover {
  border-color: #7802a2;
}

.size-btn.active {
  background: #7802a2;
  color: #fff;
  border-color: #7802a2;
}
.banner-slider .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 10;
}

.banner-slider .content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-slider .content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #bbb;
}

.banner-slider .content .btn {
    padding: 10px 20px;
    background: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.banner-slider .content .btn:hover {
    background: #e64a19;
}

 /* Owl Carousel navigation arrows */
 .banner-slider .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none; /* Allows clicks on arrows but not on the area */
    z-index: 20;
}
.banner-slider .owl-nav i{
    font-size: 2.4rem;
}

/* Left navigation arrow */
.banner-slider .owl-nav .owl-prev {
    position: absolute;
    left: 10px; /* Adjust as needed */
    pointer-events: all; /* Enable pointer events */
    background: rgba(0, 0, 0, 0.5); /* Optional background */
    color: #fff !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.banner-slider .owl-nav .owl-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Right navigation arrow */
.banner-slider .owl-nav .owl-next {
    position: absolute;
    right: 10px; /* Adjust as needed */
    pointer-events: all;
    background: rgba(0, 0, 0, 0.5); /* Optional background */
    color: #fff !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.banner-slider .owl-nav .owl-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Dots positioning (optional customization) */
.banner-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.banner-slider .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
    background: #ccc !important;
    border-radius: 50%;
    transition: background 0.3s;
}
.banner-slider .owl-dots .owl-dot.active {
    background: #333333 !important;
}
.owl-theme .owl-dots .owl-dot span{
    display: none !important;
    background: transparent !important;
}
.product-cat-card{
      border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ded1e7;
    margin-bottom: 15px;
}
 .product-cat-card img {
    width: 100%;
    height: auto;
}
.product-cat-card-body{
    margin: 10px 10px 5px;
}
.product-cat-card-body h5{
    font-family: "League Spartan", sans-serif;
    font-size: 2rem;
}
.product-cat-card-footer {
    background-color: #5d049b;
    text-align: center;
    font-weight: bold;
    color: white;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}
.product-cat-card-footer:hover {
    background-color: #008B9A;
}
.cat-bg-image{
    padding: 60px 20px;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}
.product-category-mid{
    -webkit-transition: .6s cubic-bezier(.25,1,.5,1);
    transition: .6s cubic-bezier(.25,1,.5,1);
}

.cat-bg-image::before{
    content: "";
    background: #00000080;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.product-category-title{
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: #FFDC1B;
    margin: 0px 0px 0px 0px;
}
.product-cat-count{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    margin: 0px 0px 18px 0px;
}
.product-cat-icon{
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color: #858585;
    background-color: #FFFFFF;
    border-radius: 100% 100% 100% 100%;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.product-cat-icon:hover{
    color: #FFFFFF;
    background-color: #34a853;
    -webkit-transition: .6s cubic-bezier(.25,1,.5,1);
    transition: .6s cubic-bezier(.25,1,.5,1);
}
.product-category-title:hover{
    color: #FFFFFF;
}

.product-size .Weight-label {
    display: inline-block;
    padding: 5px 10px;
    margin: 1px;
    border-radius: 5px;
    cursor: pointer;
    background: #ccc;
    color: #fff;
    transition: background 0.3s, color 0.3s;
    font-size: 12px;
}

.product-size input[type="radio"] {
    display: none;
}

.product-size input[type="radio"]:checked + .Weight-label {
    background: #600389;
    color: #fff;
}
/*-------------- Address Css Style Start --------------*/
.default-address-check input[type="radio"]{
    appearance: none; /* Remove default browser styles */
    -webkit-appearance: none; /* For Safari */
    width: 17px;
    height: 17px;
    margin-right: 3px;
    cursor: pointer;
    border: 2px solid #4caf50;
    border-radius: 50%;
    outline: none;
    transition: all 0.3s ease; 
}
/* Style for the selected (checked) radio button */
.default-address-check input[type="radio"]:checked {
    background-color: #4caf50; /* Green color when selected */
    border-color: #ccc; /* Match border color */
}
.default-address-check label{
    position: relative;
    top: -3px;
}
.address-edit-delete i:first-child{
    margin-right: 5px;
}
.address-edit-delete i{
    cursor: pointer;
    font-size: 16px;
}
.address-edit-delete a:first-child:hover{
    color: #34a853;
}
.address-edit-delete a:last-child:hover{
    color: red;
}
.review-card {
    position: relative;
    height: 220px;
    border-radius: 25px;
    overflow: hidden;
}

.review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.review-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.review-overlay h5 {
    color: #fff;
    font-size: 14px;
}
.stars {
    color: gold;
    font-size: 13px;
}
/*-------------- Address Css Style End --------------*/
.privacy-section ul li{
    font-size:14px;
     line-height: 3rem;
}
.footer-top-section .wrapper{
    padding: 9rem 0px;
}
@media screen and (width: 1366px) and (height: 1024px) { 
    .banner-slider .slider-item {
        height: calc(100vh - 450px);
    }
 } 

@media only screen and (max-width:1180px){
    .banner-slider .slider-item {
        height: calc(100vh - 200px);
    }
}

@media only screen and (max-width:1024px){
    .banner-slider .slider-item {
        height: calc(100vh - 200px);
    }
}

@media screen and (width: 1024px) and (height: 1366px) { 
    .banner-slider .slider-item {
        height: calc(100vh - 200px);
    }
 }


@media only screen and (max-width: 991px) {
    .banner-slider .slider-item {
        height: auto;
    }
    .banner-slider .owl-nav .owl-prev{
        left: 0px;
    }
    .banner-slider .owl-nav .owl-next{
        right: 0px;
    }
    .banner-slider .content h1{
        font-size: 2rem;
    }
    .product-wrapper .product-img img{
        height:inherit;
    }
}


@media only screen and (max-width: 820px) {
    .banner-slider .slider-item {
        height: auto;
    }
}

@media only screen and (max-width: 768px) {
    .banner-slider .slider-item {
        height: auto;
    }
    .category-title {
    font-size: 11px;
    }
    .product-wrapper .product-details {
    font-size: 12px;
    line-height: 1.2;
    }
    .table-row .table-wrapper{
        padding: 1rem 0;
    }
    table .table-wrapper{
        min-width:10rem;
    }
    .swiper-wrapper{
        box-sizing: inherit;
    }
    /*.product-info-img .swiper{*/
    /*    overflow:scroll;*/
    /*}*/
    .product-info-content .product-quantity{
        align-items: inherit;
    }
    .banner-slider .owl-dots{
        bottom: 0px;
    }
    .product-info-img .product-top .slider-top-img img, .product-info-img .product-top, .product-info-img .product-top .slider-top-img{
        height:auto;
    }
    .category-item {
    width: 84px;
}

/* Circle Image */
.category-circle {
    width: 80px;
    height: 80px;
}
}

@media only screen and (max-width: 575px) {
    .banner-slider .slider-item {
        height: auto;
    }
   .product-bottom .slider-bottom-img{
        height: auto !important;
        width: 7rem !important;
        padding: 0px;
    }
    /*.product-info-img .product-top{*/
    /*    height: 30rem;*/
    /*}*/
}

