/* external: https://cdn-vexar.lon1.digitaloceanspaces.com/uploads/templates/sections/2bd8f4a0-1e27-4f12-97b4-18e6f8cf577a/style.css */
.vxr_p2_main_box {
padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.vxr_p2_container {
max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vxr_p2_header {
text-align: center;
    margin-bottom: 60px;
}

.vxr_p2_title {
font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.vxr_p2_title::after {
content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.vxr_p2_subtitle {
font-size: 1.1rem;
    color: #7f8c8d;
    margin-top: 20px;
}

.vxr_p2_products_grid {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vxr_p2_product_card {
background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    transform: translateY(0);
}

.vxr_p2_product_card:hover {
transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vxr_p2_product_badges {
position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vxr_p2_badge {
padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vxr_p2_badge_new {
background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.vxr_p2_badge_sale {
background: linear-gradient(45deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.vxr_p2_badge_action {
background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.vxr_p2_product_image {
position: relative;
    height: 250px;
    overflow: hidden;
}

.vxr_p2_product_image img {
width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vxr_p2_product_card:hover .vxr_p2_product_image img {
transform: scale(1.1);
}

.vxr_p2_product_overlay {
position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vxr_p2_product_card:hover .vxr_p2_product_overlay {
opacity: 1;
}

.vxr_p2_quick_view {
padding: 12px 24px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.vxr_p2_quick_view:hover {
transform: scale(1.05);
}

.vxr_p2_product_info {
padding: 25px;
}

.vxr_p2_product_name {
font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.vxr_p2_product_description {
font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 15px;
    display: grid;
    gap: 12px;
}

.vxr_p2_attributes {
font-size: 0.9rem;
    color: #2c3e50;
    margin-bottom: 15px;
    display: grid;
    gap: 15px;
}

.vxr_p2_attributes div {
display: inline-block;
}

.vxr_p2_attributes b {
font-weight: 500;
}

.vxr_p2_attributes span {
background: #e2e2eb;
    font-size: 0.9rem;
    padding: 2px 4px;
    border-radius: 4px;
    margin-right: 5px;
}

.vxr_p2_product_rating {
display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.vxr_p2_star {
font-size: 1rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.vxr_p2_star.active {
color: #f39c12;
}

.vxr_p2_rating_count {
font-size: 0.8rem;
    color: #95a5a6;
}

.vxr_p2_product_price {
margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vxr_p2_price_current {
font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.vxr_p2_price_old {
font-size: 1rem;
    color: #95a5a6;
    text-decoration: line-through;
}

.vxr_p2_product_actions {
display: flex;
    gap: 15px;
    align-items: center;
}

.vxr_p2_quantity_selector {
display: flex;
    align-items: center;
    border: 2px solid #ecf0f1;
    border-radius: 25px;
    overflow: hidden;
}

.vxr_p2_qty_btn {
width: 35px;
    height: 35px;
    border: none;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.vxr_p2_qty_btn:hover {
background: #667eea;
    color: white;
}

.vxr_p2_qty_input {
width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-weight: 600;
    outline: none;
}

.vxr_p2_add_to_cart {
flex: 1;
    padding: 10px 20px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vxr_p2_add_to_cart:hover {
transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.vxr_p2_add_to_cart:active {
transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
.vxr_p2_main_box {
        padding: 50px 0;
    }

    .vxr_p2_container {
        padding: 0 15px;
    }

    .vxr_p2_title {
        font-size: 2rem;
    }

    .vxr_p2_products_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vxr_p2_product_actions {
        flex-direction: column;
        gap: 10px;
    }

    .vxr_p2_quantity_selector {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .vxr_p2_product_info {
        padding: 20px;
    }

    .vxr_p2_product_name {
        font-size: 1.1rem;
    }

    .vxr_p2_product_description {
        font-size: 0.85rem;
    }
}

.vxrF3F2E {
color: rgb(50, 146, 255);
}

.vxr_p2_add_to_cart.vxr_add-cart.vxr60AC6 {
background: linear-gradient(45deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
}