
/* =========================
   ROOT VARIABLES
========================= */
:root {
  --theme_color1: #111111;
  --theme_color2: #6f7378;
  --radius: 8px;
  --transition: all 0.3s ease;
}
/* ==========================================
Product detail 
=========================================== */

/* ===========================
SECTION SPACING
============================ */

.paddingT_5{padding-top:5px;}
.paddingT_10{padding-top:10px;}
.paddingT_15{padding-top:15px;}
.paddingT_20{padding-top:20px;}
.paddingT_25{padding-top:25px;}
.paddingT_30{padding-top:30px;}
.paddingT_35{padding-top:35px;}
.paddingT_40{padding-top:40px;}
.paddingT_45{padding-top:45px;}
.paddingT_50{padding-top:50px;}
.paddingB_5{padding-bottom:5px;}
.paddingB_10{padding-bottom:10px;}
.paddingB_15{padding-bottom:15px;}
.paddingB_20{padding-bottom:20px;}
.paddingB_25{padding-bottom:25px;}
.paddingB_30{padding-bottom:30px;}
.paddingB_35{padding-bottom:35px;}
.paddingB_40{padding-bottom:40px;}
.paddingB_45{padding-bottom:45px;}
.paddingB_50{padding-bottom:50px;}
.marginT_5{margin-top:5px;}
.marginT_10{margin-top:10px;}
.marginT_15{margin-top:15px;}
.marginT_20{margin-top:20px;}
.marginT_25{margin-top:25px;}
.marginT_30{margin-top:30px;}
.marginT_35{margin-top:35px;}
.marginT_40{margin-top:40px;}
.marginT_45{margin-top:45px;}
.marginT_50{margin-top:50px;}

.marginB_5{margin-bottom:5px;}
.marginB_10{margin-bottom:10px;}
.marginB_15{margin-bottom:15px;}
.marginB_20{margin-bottom:20px;}
.marginB_25{margin-bottom:25px;}
.marginB_30{margin-bottom:30px;}
.marginB_35{margin-bottom:35px;}
.marginB_40{margin-bottom:40px;}
.marginB_45{margin-bottom:45px;}
.marginB_50{margin-bottom:50px;}
/* ===========================
SECTION SPACING
============================ */

.product_image .product_thumb {
    width: 80px;
}

.product_image .product_image {
    width: calc(100%);
}

.product_image {
    display: flex;
    gap: 20px;
    position: sticky;
    top: 0;
}
.product_thumb_slider {
    width:100%;
    height:540px;
}
.product_thumb_slider .thumb_slide {
    height: 100%;
    width: 100%;
}
.product_thumb_slider .thumb_slide img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.product_thumb_slider .swiper-slide {
    opacity: 0.6;
    border:1px solid transparent;
}
.product_thumb_slider .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
    border:1px solid var(--theme_color1);
}
.productSlide_image {
    height: 540px;
    background: #faf9f7;
}
.productSlide_image img{
    width:100%;
    height:100%;
    object-fit: contain;
}
.other_information p {
    margin-bottom: 0px;
}
.product_thumb_slider .swiper_button_next,
.product_thumb_slider .swiper_button_prev{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    width:40px;
    height:20px;
    background:#fff;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 1px 2px 6px rgba(0 0 0 / 15%);
}
.product_thumb_slider .swiper_button_next{
    top:0;
}
.product_thumb_slider .swiper_button_prev{
    bottom:0;
}
.product_thumb_slider .swiper_button_next i, .product_thumb_slider .swiper_button_prev i {
    font-size: 20px;
}

/* quantity */

.label_heading {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
}
.similar_section{
    background:linear-gradient(90deg, #e1e1e1 0%, #f4f4f4 42%, #ffffff 100%)
}

/* Group Layout */
.group-action {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

/* Quantity Box */
.wg-quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 13px 10px;
    width: 140px;
    justify-content: space-between;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 16px;
}

/* Buttons +/- */
.btn-quantity {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 30px;
}

/* Add to Cart */
.btn-cart {
    flex: 1;
    background: var(--theme_color2);
    color: var(--theme_white);
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-cart span {
    font-weight: 500;
}

.btn-cart:hover {
    background: var(--theme_color1);
    color:var(--theme_white);
}
.group-action .purchase_btn {
    flex: 1;
    border: 1px solid transparent;
}

.group-action .purchase_btn.buy-add-to-cart {
    background: no-repeat;
    color: var(--theme_color1);
    border-color: var(--gold-2);
}
.group-action .purchase_btn.order_now{
    background:var(--theme_color1);
    color:var(--theme_white);
}
.group-action .order_now.purchase_btn:hover{
    background:var(--theme_color2);
    color:var(--theme_white);
}

.group-action .purchase_btn.buy-add-to-cart:hover {
    background: var(--theme_color1);
    color: var(--theme_white);
    border-color:var(--theme_color1);
}

/* Buy Now */
.btn-buy {
    display: block;
    width: 100%;
    background: var(--theme_color1);
    color: var(--theme_white);
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-buy:hover {
    background: var(--theme_color2);
    color:var(--theme_color1)
}
/* quantity */


.type-vertical {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.type-vertical .mrp_price {
    margin: 0 10px;
    text-decoration: line-through;
}

.type-vertical .price-on-sale {
    font-weight: bold;
    color: var(--theme_color2);
    margin-bottom: 0;
}

.product_category {
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid var(--theme_color1);
    display: inline-block;
    padding: 5px 10px;
    color: var(--theme_color1);
}

.type-vertical .badge-sale {
    display: inline-block;
    padding: 6px 8px;
    background: var(--theme_color1);
    color: #fff;
    line-height: 1;
    font-size: 12px;
    border-radius: 20px;
}
.product_title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
}

.star_wrap {
    display: flex;
    color: #57e32c;
}

 .variant_picker_item {
        padding: 10px;
    }

    .variant_label {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .variant_label strong {
        font-weight: bold;
    }

    .variant_picker_value {
        display: flex;
        gap: 10px;
    }

    .size_btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        color: #333;
    }

    .size_btn:hover {
        border-color: var(--theme_color1);
    }

    .size_btn.active {
        background: var(--theme_color1);
        color: #fff;
        border-color: var(--theme_color1);
    }

    .size_btn.disabled {
        color: #aaa;
        border-color: #eee;
        cursor: not-allowed;
        pointer-events: none;
    }

    .additional_tabs li button.active {
    border-color: var(--theme_color1) !important;
}
.additional_tabs li button {
    border-radius:0px !important;
    border:none !important;
    border-bottom: 3px solid transparent !important;
    color:var(--theme_color1);
    padding:14px 0px;
}
.additional_tabs li button:hover{
    color:var(--theme_color1)
}
.additional_tabs li:not(:last-child){
    margin-right:30px;
}
/* ==========================================
Product detail End
=========================================== */