﻿$button-bgcolor: #b39ddb;
$button-color: #fff;
$dictance: -12px;
$tooltip-bgcolor: #eee;
$tooltip-color: #333;
.button {
    padding: 3rem 5rem;
    text-align: center;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

button {
    background-color: $button-bgcolor;
    border-radius: 0px;
    border: 0;
    color: $button-color;
    text-transform: capitalize;
    cursor: pointer;
    position: relative;
    min-width: 36px;
    font-weight: bold;
    &:hover

{
    background-color: $button-color;
    color: $button-bgcolor;
}

&:before,
&:after {
    position: absolute;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

&:before {
    content: attr(data-tooltip);
    background-color: $tooltip-bgcolor;
    width: max-content;
    padding: 5px;
    border-radius: 5px;
    color: $tooltip-color;
}

&:after {
    content: "";
    position: absolute;
    border-width: 10px;
    border-style: solid;
}

// default and bottom
&:before,
&[data-position="botttom"]:before,
&:after,
&[data-position="botttom"]:before {
    left: 50%;
    bottom: $dictance;
}

&:before,
&[data-position="botttom"]:before {
    transform: translate(-50%, 100%);
}

&:after,
&[data-position="botttom"]:before {
    border-color: transparent transparent $tooltip-bgcolor transparent;
    transform: translate(-50%);
}

// top
&[data-position="top"]:before,
&[data-position="top"]:after {
    top: $dictance;
    bottom: initial;
}

&[data-position="top"]:before {
    transform: translate(-50%, -100%);
}

&[data-position="top"]:after {
    border-color: $tooltip-bgcolor transparent transparent transparent;
}

// left
&[data-position="left"]:before,
&[data-position="left"]:after {
    top: 50%;
    bottom: initial;
    right: $dictance;
    left: initial;
}

&[data-position="left"]:before {
    transform: translate(100%, -50%);
}

&[data-position="left"]:after {
    border-color: transparent $tooltip-bgcolor transparent transparent;
    transform: translate(0, -50%);
}

//right
&[data-position="right"]:before,
&[data-position="right"]:after {
    top: 50%;
    bottom: initial;
    left: $dictance;
    right: initial;
}

&[data-position="right"]:before {
    transform: translate(-100%, -50%);
}

&[data-position="right"]:after {
    border-color: transparent transparent transparent $tooltip-bgcolor;
    transform: translate(0, -50%);
}

//hover
&:hover:before,
&:hover:after {
    opacity: 1;
}

}

#easy_zoom {
    width: 450px;
    height: 300px;
    border: 5px solid #eee;
    background: #fff;
    color: #333;
    position: absolute;
    top: 30%;
    left: 50%;
    overflow: hidden;
    -moz-box-shadow: 0 0 10px #777;
    -webkit-box-shadow: 0 0 10px #777;
    box-shadow: 0 0 10px #777;
    /* vertical and horizontal alignment used for preloader text */
    line-height: 400px;
    text-align: center;
}

article {
    margin-bottom: 3rem;
    position: relative;
}

.btnrating i {
    color: #f27123;
}

article:before, article:after {
    content: "";
    display: table;
}

article:after {
    clear: both;
}

article section:first-of-type {
    float: right;
    width: 100%;
}

article section:last-of-type {
    display: none;
    visibility: hidden;
}

input[type=checkbox] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

[for="read_more"] {
    position: absolute;
    bottom: -3rem;
    left: 0;
    width: 100%;
    text-align: center;
    padding: .65rem;
    box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1), inset -1px -1px rgba(0, 0, 0, 0.1);
}

    [for="read_more"]:hover {
        background: rgba(0,0,0,.5);
        color: rgb(255,255,255);
    }

    [for="read_more"] span:last-of-type {
        display: none;
        visibility: hidden;
    }

input[type=checkbox]:checked ~ section {
    display: block;
    visibility: visible;
    width: 100%;
}

input[type=checkbox]:checked ~ figure {
    width: 100%;
}

input[type=checkbox]:checked ~ [for="read_more"] span:first-of-type {
    display: none;
    visibility: hidden;
}

input[type=checkbox]:checked ~ [for="read_more"] span:last-of-type {
    display: block;
    visibility: visible;
}

h3 {
    font-weight: normal;
}

p {
    font-size: 13px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        bottom: 100%;
        left: 50%;
        margin-left: -60px;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

.rating {
    display: inline-block;
    position: relative;
    height: 50px;
    line-height: 50px;
    font-size: 50px;
}

    .rating label {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        cursor: pointer;
    }

        .rating label:last-child {
            position: static;
        }

        .rating label:nth-child(1) {
            z-index: 5;
        }

        .rating label:nth-child(2) {
            z-index: 4;
        }

        .rating label:nth-child(3) {
            z-index: 3;
        }

        .rating label:nth-child(4) {
            z-index: 2;
        }

        .rating label:nth-child(5) {
            z-index: 1;
        }

        .rating label input {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
        }

        .rating label .icon {
            float: left;
            color: transparent;
            width: 27px;
            font-size: 30px;
        }

        .rating label:last-child .icon {
            color: #000;
        }

    .rating:not(:hover) label input:checked ~ .icon,
    .rating:hover label:hover input ~ .icon {
        color: #ea580c;
        margin-top: -5px;
    }

    .rating label input:focus:not(:checked) ~ .icon:last-child {
        color: #000;
        text-shadow: 0 0 5px #09f;
    }

.product-image-slider-thumbnails .slick-next {
    right: 0px;
    display: none !important;
}

.product-image-slider-thumbnails .slick-prev {
    right: 0px;
    display: none !important;
}

.product-image-slider-thumbnails {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.slick-prev slick-arrow {
    display: none !important
}

.slick-next slick-arrow {
    display: none !important
}

.slick-track {
    transform: none !important;
}
/*.draggable {
    overflow-y:scroll !important;
}*/
/*.product-image-slider-thumbnails {
    overflow-y: scroll !important;
    overscroll-behavior: initial !important;
    max-height: 450px !important;

}*/
.product-image-slider-thumbnails .draggable {
    height: 445px !important;
    overflow-y: auto;
}

::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #A7A7A7;
    border-radius: 10px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #A7A7A7;
    }

/* COLOR SWATCHES ARE HERE */
.features .clrsbox, .sizebox {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clrsbox li {
    margin: 0;
    display: inline-block;
}

.clrsbox label {
    cursor: pointer;
}

.clrsbox input {
    display: none;
}

    .clrsbox input[type="radio"]:checked + .swatch {
        box-shadow: inset 0 0 0 4px white;
        border: 2px solid #000;
    }

.clrsbox.sizes input[type="radio"]:checked + .swatch {
    border: 2px solid #000;
    color: #000;
}

.clrsbox.sizes input[type="radio"]:disabled + .swatch,
.clrsbox.sizes input[type="checkbox"]:disabled + .swatch {
    border: 1px solid #dcdcdc;
    color: #dcdcdc;
    color: #ccc;
    box-shadow: inset 0 0 0 4px #f7f7f7;
    background: #f7f7f7;
}

.swatch {
    display: inline-block;
    text-indent: -9999px;
    vertical-align: middle;
    height: 42px;
    width: 42px;
    margin: 0 5px 0 0;
    box-shadow: inset 0 0 0 4px white;
    border: 1px solid #dcdcdc;
    border-radius: 50%;
}

    .swatch.visible {
        width: auto !important;
        padding: 10px !important;
        text-indent: inherit;
        border-radius: 5px;
        width: 45px;
        height: auto;
        padding: 0.8rem 0;
        line-height: 1;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #000;
    }
.prod-desc {
    line-height: 20px;
    color: #1C1C1E;
    font-size: 16px;
}
.selector-row {
    display: flex;
    align-items: center; /* ensures HOT, Free Shipping, and stars align vertically */
    gap: 10px; /* spacing between them */
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.meta-row {
    display: flex;
    align-items: center; /* ensures HOT, Free Shipping, and stars align vertically */
    gap: 30px; /* spacing between them */
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* HOT badge */
.badge-hot {
    background: #ff8a00;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 12px; /* match vertical padding with pill */
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Free Shipping pill */
.pill {
    background: #2f8f2f;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 12px; /* match vertical padding with pill */
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Rating */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.stars {
padding-bottom:15px;
}
.stars svg {
    width: 18px;
    height: 18px;
    fill: gold;
}

.rating-value {
    font-size: 14px;
    color: #444;
    padding-left:5px;
    padding-bottom:0px;
}
.option-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start; /* headings align */
    padding: 20px 18px;
    border-radius: 12px;
}

.section h3 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
}

/* hide real radios, keep accessible */
.sr-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0
}

/* COLOR swatches */
.swatches {
    display: flex;
    gap: 22px
}

.swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

    .swatch label {
        width: 58px;
        height: 58px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #e6e6e6;
        transition: box-shadow .15s,border-color .15s,transform .05s;
        cursor: pointer;
    }

        .swatch label::before {
            content: "";
            display: block;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #eee;
        }

    .swatch .name {
        font-size: 13px;
        color: #4b5563;
        text-align: center;
        line-height: 1.1
    }
/* Selected (orange outline) */
.sr-radio:checked + label {
    border: 2px solid #ff8a00;
    box-shadow: 0 0 0 3px rgba(255,138,0,.15)
}

.swatch label:hover {
    box-shadow: 0 0 0 4px rgba(255,136,0,.12) inset
}

/* Individual color fills */
#color-bw + label::before {
    background: linear-gradient(135deg,#111 0 50%,#fff 50% 100%)
}

#color-black + label::before {
    background: #121212
}

#color-gw + label::before {
    background: linear-gradient(135deg,#fff 0 50%,#a3afbf 50% 100%)
}

/* SIZE grid */
.sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.size label {
    min-width: 48px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s,box-shadow .15s,transform .05s;
}

.size .sr-radio:checked + label {
    border: 2px solid #111;
    box-shadow: 0 0 0 3px rgba(0,0,0,.06)
}

.size label:hover {
    border-color: #d4d4d4
}

/* Responsive: stack on small screens */
@media (max-width:700px) {
    .option-sections {
        grid-template-columns: 1fr
    }
}
.price-row {
    display: flex;
 
    gap: 16px;
    font-family: -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Currency + current price */
.currency {
   
    font-size: 24px;
    letter-spacing: .08em;
    color: #1f2937;
}

.price-now {
   
    font-size: 28px; /* adjust to fit your UI */
    line-height: 1;
    color: #111;
}

/* Previous price (struck through) */
.price-was {
    font-size: 20px;
    color: #98a2b3; /* cool gray */
    text-decoration: line-through;
    text-decoration-thickness: 3px;
    text-decoration-color: #c0c7d2;
    margin-left: 6px;
}

/* Discount outline badge */
.badge-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border: 2px solid #ff8a00;
    color: #ff8a00;
    font-weight: 800;
    font-size: 20px;
    border-radius: 10px;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(255,138,0,.08);
}

/* Stock pill */
.badge-stock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border-radius: 10px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* Tighten spacing between price cluster and badges */
.price-cluster {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.cart-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Quantity controls */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .quantity-control button {
        width: 40px;
        height: 40px;
        border: 1.5px solid #ff8a00;
        border-radius: 8px;
        background: #fff;
        color: #ff8a00;
        font-size: 20px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .15s, color .15s;
    }

        .quantity-control button:hover {
            background: #ff8a00;
            color: #fff;
        }

    .quantity-control input {
        width: 50px;
        height: 40px;
        border: 1.5px solid #cbd5e1;
        border-radius: 8px;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #111;
    }

/* Add to Cart button */
.add-cart {
    flex: 1; /* make it expand nicely */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f97316;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    color:#fff !important;
}

    .add-cart:hover {
        background: #ea580c;
    }

    .add-cart svg {
        width: 20px;
        height: 20px;
        fill: #fff;
    }
.likePro {
    color: #f97316 !important;
}
    .likePro svg {
        color: #f97316 !important;
    }
.verifyimage {
width:20px;
}