/* external: https://cdn-vexar.lon1.digitaloceanspaces.com/uploads/templates/sections/b335694b-9755-4a24-8f77-8e4f822e7b5d/style.css */
/* Critical CSS - Above the fold styles */
.vxr_product2_main_box {
background: #f8f9fa;
    line-height: 1.6;
    color: #333;
}

.vxr_product2_main_box .vxr_product2_content {
max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.vxr_product2_main_box .vxr_p2_breadcrumb {
margin-bottom: 30px;
    font-size: 14px;
}

.vxr_product2_main_box .vxr_p2_breadcrumb nav {
display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.vxr_product2_main_box .vxr_p2_breadcrumb a {
color: #4a90e2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vxr_product2_main_box .vxr_p2_breadcrumb a:hover {
color: #357abd;
}

.vxr_product2_main_box .vxr_p2_product_container {
display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Product Images */
.vxr_product2_main_box .vxr_p2_product_images {
position: relative;
}

.vxr_product2_main_box .vxr_p2_main_image_container {
position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.vxr_product2_main_box .vxr_p2_main_image {
width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vxr_product2_main_box .vxr_p2_main_image_container:hover .vxr_p2_main_image {
transform: scale(1.05);
}

.vxr_product2_main_box .vxr_p2_sale_badge {
position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vxr_product2_main_box .vxr_p2_zoom_link {
position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    color: #333;
}

.vxr_product2_main_box .vxr_p2_main_image_container:hover .vxr_p2_zoom_link {
opacity: 1;
}

.vxr_product2_main_box .vxr_p2_zoom_icon {
font-size: 16px;
}

/* Thumbnails Grid */
.vxr_product2_main_box .vxr_p2_thumbnails_container {
width: 100%;
}

.vxr_product2_main_box .vxr_p2_thumbnails_grid {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    width: 100%;
}

.vxr_product2_main_box .vxr_p2_thumbnail_item {
cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.vxr_product2_main_box .vxr_p2_thumbnail_item.active {
border-color: #4a90e2;
}

.vxr_product2_main_box .vxr_p2_thumbnail_item img {
width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vxr_product2_main_box .vxr_p2_thumbnail_item:hover img {
transform: scale(1.1);
}

/* Product Details */
.vxr_product2_main_box .vxr_p2_product_title {
font-size: 2.2em;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #2c3e50;
    line-height: 1.2;
}

.vxr_product2_main_box .vxr_p2_product_meta {
display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.vxr_product2_main_box .vxr_p2_availability {
display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #27ae60;
}

.vxr_product2_main_box .vxr_p2_stock_indicator {
width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #27ae60;
}

.vxr_product2_main_box .vxr_p2_brand {
font-size: 16px;
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 20px;
}

.vxr_product2_main_box .vxr_p2_price_section {
display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
}

.vxr_product2_main_box .vxr_p2_price_current {
font-size: 2.5em;
    font-weight: 700;
    color: #2c3e50;
}

.vxr_product2_main_box .vxr_p2_price_old {
font-size: 1.4em;
    color: #999;
    text-decoration: line-through;
}

/* Quick Info */
.vxr_product2_main_box .vxr_p2_quick_info {
background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.vxr_product2_main_box .vxr_p2_info_item {
display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.vxr_product2_main_box .vxr_p2_info_item:last-child {
border-bottom: none;
}

.vxr_product2_main_box .vxr_p2_info_label {
font-weight: 600;
    color: #666;
}

.vxr_product2_main_box .vxr_p2_info_value {
color: #2c3e50;
    font-weight: 500;
}

/* Color Selection */
.vxr_product2_main_box .vxr_p2_color_selection {
margin-bottom: 30px;
}

.vxr_product2_main_box .vxr_p2_option_label {
display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.vxr_product2_main_box .vxr_p2_color_options {
display: flex;
    gap: 12px;
}

.vxr_product2_main_box .vxr_p2_color_options input[type="radio"] {
display: none;
}

.vxr_product2_main_box .vxr_p2_color_option {
width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.vxr_product2_main_box .vxr_p2_color_option::after {
content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vxr_product2_main_box .vxr_p2_color_option.active::after {
opacity: 1;
}

.vxr_product2_main_box .vxr_p2_color_option.black {
background: #2c3e50;
}

.vxr_product2_main_box .vxr_p2_color_option.green {
background: #27ae60;
}

.vxr_product2_main_box .vxr_p2_color_option.brown {
background: #8b4513;
}

.vxr_product2_main_box .vxr_p2_color_option.purple {
background: #9b59b6;
}

.vxr_product2_main_box .vxr_p2_color_option.active {
border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Purchase Section */
.vxr_product2_main_box .vxr_p2_purchase_section {
display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.vxr_product2_main_box .vxr_p2_quantity_selector {
display: flex;
    align-items: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.vxr_product2_main_box .vxr_p2_qty_btn {
width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #666;
}

.vxr_product2_main_box .vxr_p2_qty_btn:hover {
background: #e9ecef;
    color: #2c3e50;
}

.vxr_product2_main_box .vxr_p2_quantity_input {
width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

.vxr_product2_main_box .vxr_p2_add_to_cart {
flex: 1;
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
    border: none;
    border-radius: 50px;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vxr_product2_main_box .vxr_p2_add_to_cart::before {
content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.vxr_product2_main_box .vxr_p2_add_to_cart:hover::before {
left: 100%;
}

.vxr_product2_main_box .vxr_p2_add_to_cart:hover {
transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

/* Features */
.vxr_product2_main_box .vxr_p2_features {
display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.vxr_product2_main_box .vxr_p2_feature_item {
display: flex;
    align-items: center;
    gap: 8px;
    color: #27ae60;
    font-weight: 600;
    font-size: 14px;
}

.vxr_product2_main_box .vxr_p2_feature_icon {
font-size: 16px;
}

/* Share Section */
.vxr_product2_main_box .vxr_p2_share_section {
border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.vxr_product2_main_box .vxr_p2_share_label {
font-weight: 600;
    margin-right: 15px;
    color: #666;
}

.vxr_product2_main_box .vxr_p2_share_buttons {
display: inline-flex;
    gap: 10px;
}

.vxr_product2_main_box .vxr_p2_share_btn {
width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.vxr_product2_main_box .vxr_p2_share_btn:hover {
transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.vxr_product2_main_box .vxr_p2_share_btn.facebook {
background: #3b5998;
    color: white;
}

.vxr_product2_main_box .vxr_p2_share_btn.twitter {
background: #1da1f2;
    color: white;
}

.vxr_product2_main_box .vxr_p2_share_btn.telegram {
background: #0088cc;
    color: white;
}

.vxr_product2_main_box .vxr_p2_share_btn.whatsapp {
background: #25d366;
    color: white;
}

/* Tabs */
.vxr_product2_main_box .vxr_p2_tabs_container {
background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.vxr_product2_main_box .vxr_p2_tabs_nav {
display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.vxr_product2_main_box .vxr_p2_tab_btn {
flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    position: relative;
}

.vxr_product2_main_box .vxr_p2_tab_btn::after {
content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #4a90e2;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vxr_product2_main_box .vxr_p2_tab_btn.active {
color: #4a90e2;
    background: white;
}

.vxr_product2_main_box .vxr_p2_tab_btn.active::after {
transform: scaleX(1);
}

.vxr_product2_main_box .vxr_p2_tabs_content {
padding: 40px;
}

.vxr_product2_main_box .vxr_p2_tab_pane {
display: none;
}

.vxr_product2_main_box .vxr_p2_tab_pane.active {
display: block;
}

/* Description Tab */
.vxr_product2_main_box .vxr_p2_description h3 {
color: #2c3e50;
    margin: 30px 0 15px 0;
    font-size: 1.4em;
}

.vxr_product2_main_box .vxr_p2_description ul {
padding-left: 20px;
    margin: 20px 0;
}

.vxr_product2_main_box .vxr_p2_description li {
margin-bottom: 8px;
    color: #555;
}

/* Specifications Tab */
.vxr_product2_main_box .vxr_p2_specs_table {
width: 100%;
    border-collapse: collapse;
}

.vxr_product2_main_box .vxr_p2_specs_table td {
padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.vxr_product2_main_box .vxr_p2_specs_table td:first-child {
font-weight: 600;
    color: #666;
    width: 40%;
}

.vxr_product2_main_box .vxr_p2_specs_table td:last-child {
color: #2c3e50;
}

/* Reviews Tab */
.vxr_product2_main_box .vxr_p2_rating_overview {
display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.vxr_product2_main_box .vxr_p2_rating_score {
font-size: 3em;
    font-weight: 700;
    color: #2c3e50;
}

.vxr_product2_main_box .vxr_p2_stars {
font-size: 24px;
    color: #f39c12;
}

.vxr_product2_main_box .vxr_p2_review_count {
color: #666;
}

.vxr_product2_main_box .vxr_p2_review_item {
padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.vxr_product2_main_box .vxr_p2_review_header {
display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.vxr_product2_main_box .vxr_p2_reviewer_name {
font-weight: 600;
    color: #2c3e50;
}

.vxr_product2_main_box .vxr_p2_review_stars {
font-size: 14px;
    color: #f39c12;
}

.vxr_product2_main_box .vxr_p2_review_text {
color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Delivery Tab */
.vxr_product2_main_box .vxr_p2_delivery_info h3 {
color: #2c3e50;
    margin-bottom: 30px;
}

.vxr_product2_main_box .vxr_p2_delivery_option {
margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #4a90e2;
}

.vxr_product2_main_box .vxr_p2_delivery_option h4 {
color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vxr_product2_main_box .vxr_p2_delivery_option p {
color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
.vxr_product2_main_box .vxr_p2_product_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vxr_product2_main_box .vxr_p2_main_image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .vxr_product2_main_box {
        padding: 20px 15px;
    }

    .vxr_product2_main_box .vxr_p2_product_container {
        display: block;
        padding: 20px;
        gap: 30px;
    }

    .vxr_product2_main_box .vxr_p2_product_title {
        font-size: 1.8em;
    }

    .vxr_product2_main_box .vxr_p2_price_current {
        font-size: 2em;
    }

    .vxr_product2_main_box .vxr_p2_tabs_nav {
        flex-direction: column;
    }

    .vxr_product2_main_box .vxr_p2_tabs_content {
        padding: 20px;
    }

    .vxr_product2_main_box .vxr_p2_purchase_section {
        flex-direction: column;
        gap: 15px;
    }

    .vxr_product2_main_box .vxr_p2_quantity_selector {
        align-self: flex-start;
    }

    .vxr_product2_main_box .vxr_p2_thumbnails_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .vxr_product2_main_box .vxr_p2_breadcrumb nav {
        font-size: 12px;
    }

    .vxr_product2_main_box .vxr_p2_features {
        flex-direction: column;
        gap: 10px;
    }

    .vxr_product2_main_box .vxr_p2_share_buttons {
        flex-wrap: wrap;
    }

    .vxr_product2_main_box .vxr_p2_rating_overview {
        flex-direction: column;
        text-align: center;
    }

    .vxr_product2_main_box .vxr_p2_thumbnails_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vxrC6FE7 {
display: none;
}