.header-content {
    padding: 2px 0px;
    justify-content: space-between;
}
.navbar-list {
    margin: 0px;
}

.header-logo img {
    width: 100px;
    height: auto;
}
.header-part.active .header-content {
  padding: 5px 0px;
}
.filter-show {
  width: 210px;
}
#product_container {
    position: relative;
}

#overlay {
    background: #ffffff;
    color: #666666;
    position: fixed;   /* changed from fixed */
    height: 100%;         /* now relative to container */
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    text-align: center;
    padding-top: 15%;
    opacity: .60;
    display: none;       
}

.spinner {
    margin: 0 auto;
    height: 64px;
    width: 64px;
    animation: rotate 0.8s infinite linear;
    border: 5px solid firebrick;
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* start product card  */
.pr-card-container {
     position: relative;
 }

 .pr-card-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #dfa10c;
     border-radius: 20px;
     z-index: -1;
     transition: transform 0.4s ease;
 }

 .pr-product-card {
     background: white;
     border-radius: 20px;
     padding: 20px;
     width: 100%;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     position: relative;
 }

 .pr-card-container:hover .pr-card-background {
     transform: rotate(3deg);
 }

 .badge {
     position: absolute;
     top: 15px;
     left: 15px;
     background: #84d814;
     color: white;
     padding: 5px 10px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 600;
     z-index: 10;
 }

 .wishlist-btn {
     position: absolute;
     top: 30px;
     right: 15px;
     background: #fff;
     border: none;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 10;
 }

 /* .wishlist-btn:hover {
     background: #e0e0e0;
 } */

 .wishlist-btn svg {
     width: 18px;
     height: 18px;
     fill: #d0d0d0;
     transition: fill 0.3s ease;
 }

 .wishlist-btn.active svg {
     fill: #ff6b6b;
 }

 .product-image {
     width: 100%;
     height: 300px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 10px;
     position: relative;
 }

 .product-image img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     position: absolute;
     transition: opacity 0.3s ease-in-out;
 }

 .product-image .main-image {
     opacity: 1;
     transition: all 0.3s ease;
 }

 .product-image .hover-image {
     opacity: 0;
     transition: all 0.3s ease;
 }

 .pr-product-card:hover .main-image {
     opacity: 0;
     transform: scale(1.1);
 }

 .pr-product-card:hover .hover-image {
     opacity: 1;
     transform: scale(1.1);
 }

 .rating {
     display: flex;
     align-items: center;
     gap: 4px;
     margin-bottom: 6px;
 }

 .stars {
     display: flex;
     gap: 2px;
 }

 .star {
     width: 16px;
     height: 16px;
 }

 .star svg {
     width: 100%;
     height: 100%;
     fill: #e0e0e0;
 }

 .rating-count {
     font-size: 13px;
     color: #999;
     margin-left: 4px;
 }

 .pr-product-name {
     font-size: 15px;
     font-weight: 500;
     color: #2d2d2d;
     line-height: 20px;
     /* margin-bottom: 16px; */
 }

 .product-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: relative;
 }

 .price-footer {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .price {
     font-size: 15px;
     font-weight: 700;
     color: #e54f4f;
 }

 .discount {
     font-size: 15px;
     font-weight: 700;
     color: #999;
     text-decoration: line-through;
 }

 .add-to-cart-btn {
     background: #edb01e;
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
 }

 .add-to-cart-btn:hover {
     background: #edb01e;
     transform: scale(1.05);
 }

 .add-to-cart-btn svg {
     width: 20px;
     height: 20px;
     fill: white;
 }

 .button-badge {
     position: absolute;
     right: 100%;
     top: 50%;
     transform: translateY(-50%);
     background: #dfa10c;
     color: white;
     padding: 3px 12px;
     border-radius: 5px;
     font-size: 10px;
     font-weight: 500;
     white-space: nowrap;
     margin-right: 8px;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 100;
 }

 .add-to-cart-btn:hover .button-badge,
 .hover-btn:hover .button-badge {
     opacity: 1;
     visibility: visible;
 }

 .hover-buttons {
     position: absolute;
     right: 0;
     top: 0;
     display: flex;
     flex-direction: column;
     gap: 8px;
     transform: translateY(-100%);
     opacity: 0;
     transition: all 0.3s ease;
     pointer-events: none;
 }

 .pr-product-card:hover .hover-buttons {
     transform: translateY(-110%);
     opacity: 1;
     pointer-events: all;
 }

 .hover-btn {
     background: #e81e24;
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
 }

 .hover-btn:hover {
     background: #e81e24;
     transform: scale(1.05);
 }

 .hover-btn svg {
     width: 18px;
     height: 18px;
     fill: white;
 }

 .view-btn {
     background: #e81e24;
 }

 .view-btn:hover {
     background: #e81e24;
 }

 .compare-btn {
     background: #e81e24;
 }

 .compare-btn:hover {
     background: #e81e24;
 }

 /* Mobile Responsive Design */
 @media (min-width: 768px) {
  .pr-card-container {
         width: calc(100% - 0px);
         min-width: 150px;
     }
}
 @media (max-width: 768px) {
     body {
         padding: 15px;
         gap: 15px;
     }
     
     .pr-card-container {
         width: calc(100% - 0px);
         min-width: 150px;
     }
     
     .pr-product-card {
         width: 100%;
         padding: 15px;
     }
     
     .pr-card-background {
         width: 100%;
     }
     
     .product-image {
         height: 180px;
         margin-bottom: 12px;
     }
     
     .pr-product-name {
         font-size: 14px;
         margin-bottom: 10px;
     }
     
     .price, .discount {
         font-size: 12px;
     }
     
     .add-to-cart-btn, .hover-btn {
         width: 32px;
         height: 32px;
     }
     
     .add-to-cart-btn svg {
         width: 16px;
         height: 16px;
     }
     
     .hover-btn svg {
         width: 14px;
         height: 14px;
     }
     
     .button-badge {
         font-size: 9px;
         padding: 3px 6px;
     }
     
     .badge {
         font-size: 10px;
         padding: 3px 6px;
     }
 }
 
 /* Very small screens */
 @media (max-width: 400px) {
     .pr-card-container {
         width: calc(100% - 0px);
         min-width: 120px;
     }
     
     body {
         gap: 10px;
         padding: 10px;
     }
 }

 .an-radio .radio-group {
    display: flex;
    gap: 10px;
}

 .an-radio .radio-group input[type="radio"] {
    display: none;
}

 .an-radio .radio-group label {
  padding: 1px 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

 .an-radio .radio-group input[type="radio"]:checked + label {
    background-color: #dfa10c;
    color: white;
    border-color: #dfa10c;
}
.no-product-container {
    background-color: #f8fffa;
    text-align: center;
    padding: 80px 20px;
}

.no-product-container img {
    width: 250px;
    margin-bottom: 20px;
}

.no-product-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.no-product-container p {
    color: #777;
    margin-bottom: 25px;
}

.actions button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}
.an-p{
    line-height: 20px;
  letter-spacing: 0.20px;
  font-size: 13px;
}
.details-share-list li {
  margin-right: 16px;
}
.backtop {
    background-color: #febd21;
}
.header-top {  
  background: #dfa10c;
}
.details-share-list li a {
  color: #fff;
  background: #dfa10c;
}
 .an-btn {
  padding: 1px 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  color: #39404a;
}
.an-btn:hover {
   background-color: #dfa10c;
  color: white;
  border-color: #dfa10c;
}
.an-btn-active{
background-color: #dfa10c;
  color: white;
  border-color: #dfa10c;
  padding: 0rem .5rem;
}
.an-btn-active :hover {
  background-color: #dfa10c;
  color: white;
  border-color: #dfa10c;
}
.border-radius-10 {
    border-radius: 10px;
}
.btn-view-all{
color: #fff;
  background: #dfa10c;
  border-color: #dfa10c;
}
.footer-part{
    background-color: #242323;
  color: #fff;
}
.footer-title{
     color: #fff;
}
.footer-contact{
     color: #fff;
}
.footer-part a,.footer-links ul li a {
   
  color: #fff;
}
.footer-logo img {
  width: 150px;
}