 :root {
     --orange: #d95a24;
     --black: #464f54
 }
html, body {
    overflow-x: hidden !important;
}

 .no-scrollbar::-webkit-scrollbar {
     display: none
 }

 .no-scrollbar {
     -ms-overflow-style: none;
     scrollbar-width: none
 }

 a:hover {
     color: var(--orange)
 }

 .bg-theme-orange {
     background-color: var(--orange)
 }

 

 .menu-btn {
     padding: 8px 14px;
     background: transparent;
     border: none;
     font-size: 17px;
     cursor: pointer;
     white-space: nowrap;
     border-radius: 6px;
     transition: all .2s ease
 }

 .menu-btn:hover {
     background: #f9fafb;
     color: black
 }

 .menu-btn:focus {
     outline: none
 }

 .main-menu li {
     margin: 0 2px
 }

 .brands-mega {
     position: absolute;
     top: 100%;
     left: 0;
     width: 100%;
     z-index: 999;
     display: none
 }

 .brands-mega.show {
     display: block;
     animation: dropdownFade .12s ease
 }

 .brands-mega .mega-menu-content {
     width: 100%;
     max-width: 100%;
     background: #f9fafb;
     border-top: 1px solid #e5e7eb;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
 }

 @keyframes dropdownFade {
     from {
         opacity: 0;
         transform: translateY(-6px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }
 

 .bg-theme-black {
     background-color: var(--black)
 }

 .theme-button {
     padding: .75rem 1.5rem;
     font-weight: 600;
     color: white;
     border: none;
     border-radius: .375rem;
     cursor: pointer;
     transition: all .3s ease;
     display: inline-block;
     text-align: center
 }

 .theme-button-orange {
     background-color: var(--orange)
 }

 .theme-button-orange-20 {
     background-color: rgba(217, 90, 36, .5);
     color: black
 }

 .theme-button-orange:hover {
     background-color: var(--black)
 }

 h2 {
     font-weight: bold !important
 }

 .theme-button-black {
     background-color: var(--black)
 }

 .theme-button-black:hover {
     background-color: var(--orange)
 }

 .text-theme-orange {
     color: var(--orange)
 }

 .text-theme-black {
     color: var(--black)
 }

 .border-theme-orange {
     border-color: var(--orange)
 }

 .border-theme-black {
     border: 1px solid var(--black);
     border-radius: 10px;
     transition: border-color .3s ease
 }

 .border-theme-black:hover {
     border-color: var(--orange)
 }

 .topbar {
     position: relative;
     font-family: sans-serif
 }

 .topbar::after {
     content: "";
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, .3) 0 6px, transparent 6px 12px);
     opacity: .4
 }

 .main-menu li a {
     position: relative; font-size: 14px;
     display: inline-block;
     color: #111;
    
     transition: all .3s ease
 }

 .main-menu li a:hover {
      color: var(--orange);
     transform: translateY(-2px);
  }

 .top-menu a:hover {
     text-decoration: none
 }

 .corner-animate {
     position: relative;
     overflow: hidden
 }

 .card-hover-line {
     position: relative;
     overflow: hidden
 }

 .card-hover-line::before,
 .card-hover-line::after {
     content: "";
     position: absolute;
     top: 10px;
     bottom: 10px;
     width: 2px;
     background: #FF6A00;
     transform: scaleY(0);
     transition: transform .3s ease-in-out
 }

 .card-hover-line::before {
     left: 0;
     transform-origin: top
 }

 .card-hover-line::after {
     right: 0;
     transform-origin: bottom
 }

 .card-hover-line:hover::before,
 .card-hover-line:hover::after {
     transform: scaleY(1)
 }

 @keyframes popIn {
     0% {
         transform: scale(0.5);
         opacity: 0
     }

     100% {
         transform: scale(1);
         opacity: 1
     }
 }

 .icon-circle:hover {
     box-shadow: 0 0 20px rgba(255, 106, 0, .5);
     transform: scale(1.12)
 }

 .icon-circle:hover i {
     animation: rotateBounce .5s ease-in-out
 }

 @keyframes rotateBounce {
     0% {
         transform: rotate(0deg)
     }

     40% {
         transform: rotate(20deg)
     }

     70% {
         transform: rotate(-15deg)
     }

     100% {
         transform: rotate(0deg)
     }
 }

 @keyframes scroll {
     0% {
         transform: translateX(0)
     }

     100% {
         transform: translateX(-50%)
     }
 }

 .color-slider {
     overflow-x: auto;
     scroll-behavior: smooth;
     -ms-overflow-style: none;
     scrollbar-width: none
 }

 .color-slider::-webkit-scrollbar {
     display: none
 }

 .arrow {
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center
 }

 .product-card {
     position: relative;
     z-index: 1
 }

 .product-card:hover {
     z-index: 50
 }

 .product-card .hover-panel {
     pointer-events: none
 }

 .animate-scroll {
     animation: scroll 25s linear infinite
 }

 .cart-popup-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, .55);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999
 }

 .hidden {
     display: none
 }

 .cart-popup {
     background: white;
     width: 550px;
     padding: 24px;
     border-radius: 14px;
     box-shadow: 0 10px 35px rgba(0, 0, 0, .2);
     animation: popupSlide .3s ease;
     border-top: 4px solid var(--orange)
 }

 @keyframes popupSlide {
     from {
         opacity: 0;
         transform: translateY(-20px)
     }

     to {
         opacity: 1;
         transform: translateY(0)
     }
 }

 .slides-container .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     opacity: 0;
     transition: opacity .8s ease-in-out;
     z-index: 0
 }

 .slides-container .slide.active {
     opacity: 1;
     z-index: 1;
     position: relative
 }

 .bullet.active {
     background-color: black
 }

 .ribo-block::before {
     content: "";
     position: absolute;
     top: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 40px;
     height: 10px;
     background-color: #d95a24;
     border-top-left-radius: 20px;
     border-top-right-radius: 20px
 }

 .back-to-top {
     position: fixed;
     bottom: 16px;
     right: 16px;
     width: 30px;
     height: 30px;
     background: var(--orange);
     color: #fff;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     cursor: pointer;
     box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
     transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
     z-index: 40
 }

 .back-to-top:hover {
     background: var(--black);
     transform: scale(1.12);
     box-shadow: 0 6px 18px rgba(0, 0, 0, .25)
 }
 nav, .main-menu {
  overflow: visible !important;
}
 .brands-mega {
    position: absolute;
    top: 100%;            
    left: 0;
    width: 100%;
    z-index: 999;
    display: none;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.brands-mega.show {
    display: block;
    animation: dropdownFade .12s ease;
}

.brands-mega .mega-menu-content {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    background: #fff;
}
 @media (max-width: 767px) {

    .brands-mega {
        position: static !important;  
        width: 100% !important;
        display: none;
        border-top: 1px solid #ddd;
        background: #fff;
        box-shadow: none !important;  
    }

    .brands-mega.show,
    .brands-mega:not(.hidden) {
        display: block !important;
    }

    .brands-mega .mega-menu-content {
        padding: 14px;
        background: #fff;
    }
}

.mega-btn.active {
    background: #f9fafb; 
    color: black; border-radius: 0px; 
        
}

/* ZOOM LENS (magnifier) */
#zoomLens {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #ff6a00;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  transform: translate(-50%, -50%); /* center on cursor */
  z-index: 40;
  transition: opacity .12s;
  opacity: 0;
}
#zoomLens.show { opacity: 1; }
/* Optional smooth transition for zoomed image */
#zoomedImage {
  transition: transform 0.2s ease;
}

 
#zoomResult {
    position: absolute;
    left: 440px;  /* adjust based on your image width */
    top: 0;
    width: 450px;
    height: 450px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    z-index: 20;
}
/* Thumbnail container */
.image-wrapper + .flex {
    flex-wrap: wrap; /* wrap if too many thumbnails */
    justify-content: center;
    gap: 8px; /* spacing between thumbnails */
}

/* Thumbnail images */
.thumb {
    width: 80px;  /* fixed width */
    height: 80px; /* fixed height */
    object-fit: cover; /* maintain aspect ratio */
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.2s;
}
.thumb.active {
     transform: scale(1.05);  
}

.color-circle {
    transition: transform .2s ease, ring .2s ease;
     border-color: #ff6a00;
}
.color-circle:hover {
    transform: scale(1.08);
} 

/* Modern Filled Track Slider (STYLE A) */
.qty-slider {
    width: 100px;
    height: 6px;
    border-radius: 5px;
    appearance: none;
    outline: none;
    background: #e5e7eb;
    transition: background 0.2s;
}

.qty-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 2px solid #f97316;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.qty-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 2px solid #f97316;
    border-radius: 50%;
    cursor: pointer;
}

 #summaryTable {
    width: 100%;
    max-width: 420px;  
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

#summaryTable div {
    line-height: 1.2;
}

#summaryTable > div:hover:not(:first-child) {
    background: #fafafa;
}

