<style>
* {
    font-family: inherit;
}
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 15000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}
.notification {
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #28a745;
    transform: translateX(100%);
    opacity: 0;
    animation: slideInNotification 0.4s ease-out forwards;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: flex;
    align-items: center;
    direction: rtl;
}
.notification.success { border-left-color: #28a745; }
.notification.success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #28a745, #20c997);
}
.notification.remove { border-left-color: #dc3545; }
.notification.remove::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc3545, #e74c3c);
}
.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}
.notification.success .notification-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}
.notification.remove .notification-icon {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}
.notification-text { flex: 1; }
.notification-title {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.3;
}
.notification-message {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}
.notification-close {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    transition: all 0.2s ease;
    opacity: 0.7;
}
.notification-close:hover {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
}
@keyframes slideInNotification {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutNotification {
    0% { transform: translateX(0); opacity: 1; max-height: 200px; margin-bottom: 10px; }
    100% { transform: translateX(100%); opacity: 0; max-height: 0; margin-bottom: 0; padding-top: 0; padding-bottom: 0; }
}
.notification.slide-out {
    animation: slideOutNotification 0.3s ease-in forwards;
}
@media (max-width: 768px) {
    .products-grid,
    .product-list,
    .products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-item {
        width: 100% !important;
    }
    .product-item .product-rating {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 4px 0 !important;
        margin: 4px 0 !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    .product-item .product-rating .nq-star {
        width: 14px !important;
        height: 14px !important;
        margin: 0 0.5px !important;
    }
    .product-item .product-rating .reviews-count {
        margin-right: 6px !important;
        font-size: 11px !important;
        padding: 1px 4px !important;
        flex-shrink: 0 !important;
    }
    .product-item .product-actions {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding-top: 6px !important;
    }
    .product-item .product-actions .button {
        width: auto !important;
        min-width: unset !important;
        padding: 10px 30px !important;
        font-size: 15px !important;
        border-radius: 15px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
    }
    .product-item .product-actions .button i {
        font-size: 16px !important;
    }
}
.checkout {
    border: 2px dotted #0584ad;
    border-radius: 20px;
    margin: 0 0 10px;
    padding: 0 7.5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 20px 0px;
}
.single-product .checkout-section .checkout .main .checkout-form .checkout-select select,
.single-product .checkout-section .checkout .main .checkout-form input[type="text"],
.single-product .checkout-section .checkout .main .checkout-form input[type="email"],
.single-product .checkout-section .checkout .main .checkout-form input[type="url"],
.single-product .checkout-section .checkout .main .checkout-form input[type="number"],
.single-product .checkout-section .checkout .main .checkout-form input[type="tel"],
.single-product .checkout-section .checkout .main .checkout-form input[type="password"],
.single-product .checkout-section .checkout .main .checkout-form textarea {
    border-color: #F7F2F2;
    border-radius: 15px;
    font-family: inherit;
}
.checkout-heading {
    text-align: center;
    font-weight: bold !important;
}
[dir] .checkout-section .checkout .main .checkout-form .checkout-groups {
    margin: 0 -7.5px;
}
.checkout-form {
    padding: 30px;
    border-radius: 7px;
}
[dir] input[type=email],
[dir] input[type=number],
[dir] input[type=password],
[dir] input[type=search],
[dir] input[type=tel],
[dir] input[type=text],
[dir] input[type=url],
[dir] textarea {
    border-radius: 12px;
    border: 2px solid #1DB6EA;
    padding: 10px 15px;
    background-color: #ffffff;
    font-family: inherit;
}
.product-section.add-to-cart-section {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 15px 0 !important;
    box-sizing: border-box !important;
}
.product-section.add-to-cart-section .button.single-submit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    gap: 10px !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-weight: bold !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    min-height: 52px !important;
    max-width: 90% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    line-height: 1.3 !important;
    font-family: inherit !important;
}
.product-section.add-to-cart-section .button.single-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 86, 179, 0.4) !important;
}
@media (min-width: 769px) {
    .product-section.add-to-cart-section .button.single-submit {
        font-size: 17px !important;
        padding: 14px 30px !important;
    }
}
@media (max-width: 768px) {
    .product-section.add-to-cart-section .button.single-submit {
        font-size: 16px !important;
        padding: 12px 22px !important;
        gap: 8px !important;
    }
}
@keyframes shake {
    10%, 90% { transform: translateX(-1px); }
    20%, 80% { transform: translateX(2px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60% { transform: translateX(4px); }
}
.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    opacity: 1;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    transition: all 0.3s ease;
}
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.product-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.product-item:hover img {
    transform: scale(1.05);
}
.discount-badge-title {
    display: inline-block;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff3b30, #d91a17);
    border-radius: 20px;
    margin-right: 10px;
    vertical-align: middle;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    direction: ltr;
}
.discount-badge-product {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #DC661C, #DC661C);
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    padding: 8px 10px;
    font-size: 13px;
    min-width: 40px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    direction: ltr;
    display: none;
}
.product-item.has-old-price .discount-badge-product {
    display: block;
}
.product-info > div > span.currency-value.before {
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
    margin-left: 5px;
}
.product-item:not(.has-old-price) .currency-value.before {
    display: none !important;
}
.product-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0 5px 0;
    font-size: 16px;
    direction: rtl;
    padding: 5px 0;
}
.product-rating .nq-star {
    width: 16px;
    height: 16px;
    margin: 0 1px;
    transition: transform 0.3s ease;
    vertical-align: middle;
    flex-shrink: 0;
    display: inline-block;
}
.product-rating .nq-star:hover {
    transform: scale(1.1);
}
.rvw_stars .nq-star {
    width: 22px;
    height: 22px;
}
.product-rating .reviews-count {
    margin-right: 8px;
    font-size: 12px;
    color: #666;
    font-weight: 500;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}
.product-rating {
    padding: 6px 0;
    margin: 6px 0;
}
.product-item h3 {
    margin: 0 0 4px !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    font-size: 16px !important;
    text-align: center !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    max-height: calc(1.4em * 2) !important;
    direction: rtl;
}
@media (max-width: 768px) {
    .products-grid,
    .product-list,
    .products {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-item {
        width: 100% !important;
    }
    .product-item .product-actions {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        padding-top: 6px !important;
    }
    .product-item .product-actions .button {
        width: auto !important;
        min-width: unset !important;
        padding: 10px 22px !important;
        font-size: 14px !important;
        border-radius: 15px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
    }
    .product-item .product-actions .button i {
        font-size: 16px !important;
    }
}
@media (min-width: 769px) {
    .product-item .product-actions {
        display: flex !important;
        justify-content: center !important;
        margin-top: auto;
        width: 100% !important;
    }
    .product-item .product-actions .button {
        width: auto !important;
        padding: 06px 18px !important;
        font-size: 15px !important;
        border-radius: 8px !important;
        gap: 6px !important;
    }
    .product-item .product-actions .button i {
        font-size: 17px !important;
    }
}
.content-box-with-icon-section .content-box {
    background: #FCFCFC;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.content-box-with-icon-section .content-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.content-box-with-icon-section .content-box .icon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    font-size: 20px;
}
.categories-style-1-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.categories-style-1 {
    display: flex !important;
    overflow-x: auto !important;
    gap: 10px !important;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.categories-style-1::-webkit-scrollbar {
    display: none;
}
.categories-style-1 .category-item {
    flex: 0 0 150px;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.categories-style-1 .category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.categories-style-1 .category-thumbnail img {
    width: 100% !important;
    height: auto !important;
    display: block;
}
.categories-style-1 .category-details {
    padding: 8px;
}
.categories-style-1 .category-title {
    display: inline-block;
    font-size: 15px !important;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}
.categories-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.categories-slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}
.categories-slider-arrow.left { left: 5px; }
.categories-slider-arrow.right { right: 5px; }
.fixed-buttons-container {
    position: fixed;
    bottom: 115px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}
.fixed-buttons-container > * { pointer-events: auto; }
.fixed-btn {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transform: scale(1);
    transition: all 0.3s ease;
    border: none;
    outline: none;
}
#wishlistFloatingBtn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4) !important;
    order: 1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.5);
    pointer-events: none;
}
#wishlistFloatingBtn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}
#wishlistFloatingBtn:hover {
    transform: scale(1.1) rotate(10deg) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6) !important;
}
#wishlistFloatingBtn .count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
}
#whatsappBtn {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
    order: 2;
}
#whatsappBtn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}
#whatsappBtn::before {
    content: "\f232";
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", FontAwesome;
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    display: inline-block;
}
#whatsappBtn i { display: none; }
.whatsapp-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: whatsappRipple 0.8s ease-out;
    pointer-events: none;
}
@keyframes whatsappRipple {
    0% { transform: scale(0); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}
.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.wishlist-btn:hover {
    transform: scale(1.1);
    background: #fff;
}
.wishlist-btn i {
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s ease;
}
.wishlist-btn.active i { color: #e74c3c; }
#wishlistModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
#wishlistModal.show { display: flex; }
#wishlistContent {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.05);
    animation: modalSlideUp 0.4s ease-out;
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
#wishlistContent h2 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}
#wishlistContent h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
    border-radius: 2px;
}
.wishlist-item {
    display: flex;
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}
.wishlist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.15);
    border-color: #fee2e2;
}
.wishlist-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    margin-right: 20px;
    border: 2px solid #f8fafc;
    background: #f8fafc;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.wishlist-item:hover img {
    transform: scale(1.05);
    border-color: #fecaca;
}
.wishlist-item-details {
    flex: 1;
    padding-right: 20px;
}
.wishlist-item-title {
    font-weight: 700;
    font-size: 17px;
    margin: 0 0 8px;
    color: #1e293b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wishlist-item-price {
    font-size: 19px;
    font-weight: 800;
    color: #dc2626;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.wishlist-item-price .old-price {
    font-size: 15px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}
.wishlist-item-close {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #94a3b8;
    background: white;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.wishlist-item-close:hover {
    color: white;
    background: #ef4444;
    border-color: #ef4444;
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}
.close-wishlist {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    background: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    z-index: 1000;
}
.close-wishlist:hover {
    color: white;
    background: #dc3545;
    border-color: #dc3545;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}
#wishlistEmpty {
    text-align: center;
    padding: 40px 20px;
    color: #777;
    font-size: 18px;
}
@media (max-width: 480px) {
    .wishlist-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .wishlist-item img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100px;
        height: 100px;
    }
    .wishlist-item-details { padding-right: 0; }
    #wishlistContent {
        padding: 20px;
        margin: 10px;
    }
}
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(100, 200, 255, 0.3);
    opacity: 1 !important;
}
@keyframes float {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-20vh) translateX(100vw); opacity: 0; }
}
.p1 { width: 8px; height: 8px; left: 10%; animation: float 20s 0s infinite linear; }
.p2 { width: 4px; height: 4px; left: 30%; background: rgba(255, 100, 200, 0.3); animation: float 25s 1s infinite linear; }
.p3 { width: 6px; height: 6px; left: 50%; animation: float 22s 2s infinite linear; }
.p4 { width: 3px; height: 3px; left: 70%; background: rgba(255, 200, 100, 0.3); animation: float 28s 3s infinite linear; }
.p5 { width: 5px; height: 5px; left: 90%; animation: float 24s 4s infinite linear; }
.p6 { width: 7px; height: 7px; left: 20%; background: rgba(200, 255, 100, 0.3); animation: float 26s 5s infinite linear; }
.p7 { width: 4px; height: 4px; left: 40%; animation: float 23s 6s infinite linear; }
.p8 { width: 6px; height: 6px; left: 60%; animation: float 27s 7s infinite linear; }
.p9 { width: 5px; height: 5px; left: 80%; background: rgba(100, 255, 200, 0.3); animation: float 21s 8s infinite linear; }
.p10 { width: 3px; height: 3px; left: 5%; animation: float 29s 9s infinite linear; }
.p11 { width: 5px; height: 5px; left: 15%; background: rgba(255, 150, 100, 0.3); animation: float 25s 10s infinite linear; }
.p12 { width: 7px; height: 7px; left: 25%; animation: float 22s 11s infinite linear; }
.p13 { width: 4px; height: 4px; left: 35%; background: rgba(150, 255, 255, 0.3); animation: float 28s 12s infinite linear; }
.p14 { width: 6px; height: 6px; left: 45%; animation: float 24s 13s infinite linear; }
.p15 { width: 3px; height: 3px; left: 55%; background: rgba(255, 150, 255, 0.3); animation: float 26s 14s infinite linear; }
.p16 { width: 8px; height: 8px; left: 65%; animation: float 23s 15s infinite linear; }
.p17 { width: 5px; height: 5px; left: 75%; background: rgba(200, 200, 255, 0.3); animation: float 27s 16s infinite linear; }
.p18 { width: 4px; height: 4px; left: 85%; animation: float 21s 17s infinite linear; }
.p19 { width: 6px; height: 6px; left: 95%; background: rgba(255, 255, 150, 0.3); animation: float 29s 18s infinite linear; }
.p20 { width: 5px; height: 5px; left: 5%; animation: float 25s 19s infinite linear; }
.p21 { width: 4px; height: 4px; left: 8%; background: rgba(255, 180, 120, 0.3); animation: float 22s 20s infinite linear; }
.p22 { width: 6px; height: 6px; left: 18%; animation: float 28s 21s infinite linear; }
.p23 { width: 3px; height: 3px; left: 28%; background: rgba(180, 255, 200, 0.3); animation: float 24s 22s infinite linear; }
.p24 { width: 7px; height: 7px; left: 38%; animation: float 26s 23s infinite linear; }
.p25 { width: 5px; height: 5px; left: 48%; background: rgba(255, 180, 255, 0.3); animation: float 23s 24s infinite linear; }
.p26 { width: 4px; height: 4px; left: 58%; animation: float 27s 25s infinite linear; }
.p27 { width: 6px; height: 6px; left: 68%; background: rgba(220, 220, 255, 0.3); animation: float 21s 26s infinite linear; }
.p28 { width: 5px; height: 5px; left: 78%; animation: float 29s 27s infinite linear; }
.p29 { width: 3px; height: 3px; left: 88%; background: rgba(255, 255, 180, 0.3); animation: float 25s 28s infinite linear; }
.p30 { width: 7px; height: 7px; left: 3%; animation: float 22s 29s infinite linear; }
.p31 { width: 5px; height: 5px; left: 12%; background: rgba(200, 150, 255, 0.3); animation: float 28s 30s infinite linear; }
.p32 { width: 4px; height: 4px; left: 22%; animation: float 24s 31s infinite linear; }
.p33 { width: 6px; height: 6px; left: 32%; background: rgba(150, 255, 200, 0.3); animation: float 26s 32s infinite linear; }
.p34 { width: 3px; height: 3px; left: 42%; animation: float 23s 33s infinite linear; }
.p35 { width: 7px; height: 7px; left: 52%; background: rgba(255, 200, 150, 0.3); animation: float 27s 34s infinite linear; }
.p36 { width: 5px; height: 5px; left: 62%; animation: float 21s 35s infinite linear; }
.p37 { width: 4px; height: 4px; left: 72%; background: rgba(255, 170, 255, 0.3); animation: float 29s 36s infinite linear; }
.p38 { width: 6px; height: 6px; left: 82%; animation: float 25s 37s infinite linear; }
.p39 { width: 5px; height: 5px; left: 92%; background: rgba(200, 255, 150, 0.3); animation: float 22s 38s infinite linear; }
.p40 { width: 3px; height: 3px; left: 7%; animation: float 28s 39s infinite linear; }
.p41 { width: 6px; height: 6px; left: 17%; background: rgba(255, 170, 170, 0.3); animation: float 24s 40s infinite linear; }
.p42 { width: 5px; height: 5px; left: 27%; animation: float 26s 41s infinite linear; }
.p43 { width: 4px; height: 4px; left: 37%; background: rgba(170, 255, 255, 0.3); animation: float 23s 42s infinite linear; }
.p44 { width: 7px; height: 7px; left: 47%; animation: float 27s 43s infinite linear; }
.p45 { width: 3px; height: 3px; left: 57%; background: rgba(255, 170, 255, 0.3); animation: float 21s 44s infinite linear; }
.p46 { width: 5px; height: 5px; left: 67%; animation: float 29s 45s infinite linear; }
.p47 { width: 6px; height: 6px; left: 77%; background: rgba(230, 230, 255, 0.3); animation: float 25s 46s infinite linear; }
.p48 { width: 4px; height: 4px; left: 87%; animation: float 22s 47s infinite linear; }
.p49 { width: 5px; height: 5px; left: 97%; background: rgba(255, 255, 170, 0.3); animation: float 28s 48s infinite linear; }
.p50 { width: 6px; height: 6px; left: 2%; animation: float 24s 49s infinite linear; }
@media (max-width: 2425px) {
    [dir] input[type="text"] {
        border: 2px solid #F5F5F5;
        background-color: #F5F5F5;
        padding: 14px 15px;
        border-radius: 5px;
        font-family: inherit;
    }
    .single-title {
        border: 2px solid #FFF;
        padding: 10px;
        box-shadow: 0 0px 0px 0px black;
        background-color: #FFF;
        text-align: center;
        border-radius: 14px;
    }
    .single-price {
        border: 2px dotted #1E8DA8;
        padding: 10px;
        box-shadow: 0 0px 0px 0px black;
        background-color: #FFFFFF;
        border-radius: 14px;
    }
}
.single-variants {
    border: 3px solid #F5F5F5;
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin-bottom: -5px;
    padding: 8px;
    background-color: #F5F5F5;
    font-weight: bold;
    position: relative;
    top: -5px;
}
[dir] .single-variants .single-variant .option-name {
    display: flex;
    justify-content: center;
    font-weight: bold;
    margin: 0 0 10px;
}
.single-variants .single-variant .color-based-buttons-container,
.single-variants .single-variant .image-based-buttons-container,
.single-variants .single-variant .textual-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
/* removed: body:not(.license-verified){display:none!important} — was render-blocking until JS runs (LCP killer) */
@media (min-width: 769px) {
    .categories-style-1-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
        position: relative;
    }
    .categories-style-1 {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 20px !important;
        overflow-x: auto !important;
        scroll-behavior: smooth;
        padding: 0 20px 15px 20px;
        width: 100%;
        box-sizing: border-box;
        scrollbar-width: thin;
        -ms-overflow-style: scrollbar;
    }
    .categories-style-1::-webkit-scrollbar { height: 8px; display: block; }
    .categories-style-1::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; margin: 0 20px; }
    .categories-style-1::-webkit-scrollbar-thumb { background: #888; border-radius: 4px; }
    .categories-style-1::-webkit-scrollbar-thumb:hover { background: #555; }
    .categories-style-1 .category-item { flex: 0 0 180px !important; min-width: 180px !important; }
    .categories-style-1 .category-item:last-child { margin-right: 20px; }
    .categories-style-1 .category-thumbnail img { width: 100% !important; height: auto !important; border-radius: 10px; }
    .categories-style-1 .category-details { padding: 12px; }
    .categories-style-1 .category-title { font-size: 16px !important; font-weight: 700; }
}
.single-product .preview img:not(.zoomImg) {
    border-radius: 10% !important;
    object-fit: cover !important;
    aspect-ratio: 1 / 1;
    width: 100% !important;
    height: auto !important;
}
.products-slider .slick-slide { outline: none; }
.products-slider .slick-list { padding: 0 4px; }
.products-slider .slick-prev,
.products-slider .slick-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 10;
    transition: all 0.3s ease;
}
.products-slider .slick-prev:hover,
.products-slider .slick-next:hover {
    background: rgba(0, 0, 0, 0.8) !important;
    transform: scale(1.1);
}
.products-slider .slick-prev:before { content: '\f053'; }
.products-slider .slick-next:before { content: '\f054'; }
.products-slider .product-rating {
    display: flex !important;
    justify-content: center !important;
    margin: 6px 0 !important;
    padding: 0 !important;
}
.products-slider .product-rating .nq-star {
    width: 14px !important;
    height: 14px !important;
}
@media (max-width: 768px) {
    .products-slider .product-item { margin: 0 4px !important; }
    .products-slider .slick-track { display: flex !important; }
    .products-slider .slick-arrow { display: none !important; }
}
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@800&display=swap');
.app-heading { text-align: center; margin: 2.5rem 0 2rem; }
.footer-body {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
}
.footer-body h3,
.footer-body ul,
.footer-body li,
.footer-body a {
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
}
.order-summary-final {
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    margin: 10px 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    direction: rtl;
    width: 100%;
}
.order-summary-final:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border-color: #0584ad;
}
.summary-final-header {
    padding: 18px 22px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid #e2e8f0;
    min-height: 60px;
    display: flex;
    align-items: center;
}
.summary-final-header:hover { background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%); }
.summary-final-header:active { transform: scale(0.99); }
.summary-final-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.summary-final-left { display: flex; align-items: center; gap: 12px; }
.summary-final-left i { color: #0584ad; font-size: 22px; }
.summary-final-title { font-size: 18px; font-weight: 700; color: #1e293b; letter-spacing: -0.3px; }
.summary-final-right { display: flex; align-items: center; gap: 14px; }
.summary-final-price {
    font-size: 18px;
    font-weight: 700;
    color: #0584ad;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(5, 132, 173, 0.25);
}
.summary-final-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 4px;
}
.summary-final-arrow.rotated { transform: rotate(225deg); margin-bottom: -4px; }
.summary-final-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.summary-final-body.expanded { max-height: 700px; }
.summary-final-content { padding: 20px 24px; background: #ffffff; }
.summary-final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-height: 50px;
}
.summary-final-row:hover { background: #f8fafc; transform: translateX(-3px); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); }
.summary-final-label { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #475569; font-size: 16px; }
.summary-final-label i { color: #0584ad; font-size: 20px; width: 24px; text-align: center; }
.summary-final-value { font-weight: 600; color: #1e293b; font-size: 16px; text-align: left; max-width: 55%; word-wrap: break-word; line-height: 1.5; }
.summary-final-divider { height: 2px; background: linear-gradient(90deg, transparent, #cbd5e1, transparent); margin: 14px 0; }
.summary-final-total {
    padding: 16px 14px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(5, 132, 173, 0.2);
    min-height: 55px;
}
.summary-final-total:hover { background: linear-gradient(135deg, #bfdbfe, #93c5fd); transform: translateX(0); }
.summary-final-total .summary-final-label { color: #0c4a6e; font-weight: 700; font-size: 18px; }
.summary-final-total .summary-final-label i { color: #0c4a6e; font-size: 22px; }
.summary-final-total .summary-final-value { color: #0c4a6e !important; font-weight: 700 !important; font-size: 18px !important; }
@media (max-width: 768px) {
    .order-summary-final { margin: 10px 0; }
    .summary-final-header { padding: 16px 18px; min-height: 55px; }
    .summary-final-title { font-size: 16px; }
    .summary-final-price { font-size: 16px; padding: 7px 14px; }
    .summary-final-content { padding: 16px 18px; }
    .summary-final-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 12px 10px;
        min-height: auto;
        margin-bottom: 0;
        border-radius: 0;
        border-bottom: 0px solid #e5e7eb;
    }
    .summary-final-total { border-bottom: none; }
    .summary-final-row:hover { background: transparent; transform: none; box-shadow: none; }
    .summary-final-label { font-size: 15px; flex-shrink: 0; width: auto; max-width: 50%; }
    .summary-final-value { font-size: 15px; width: auto; max-width: 50%; text-align: right; }
    .summary-final-total { padding: 14px 12px; min-height: auto; margin-top: 12px; border-radius: 10px; }
    .summary-final-total .summary-final-label,
    .summary-final-total .summary-final-value { font-size: 16px !important; }
    .summary-final-divider { margin: 12px 0; }
}
@keyframes slideInFinal {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.order-summary-final { animation: slideInFinal 0.6s ease-out; }
.summary-final-row.updated { /* لا توجد تأثيرات */ }
.copyright-bar {
    text-align: center;
    padding: 12px 0;
    background-color: #ffffff;
    color: #000000;
    font-size: 14px;
    direction: rtl;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    border-top: 1px solid #eeeeee;
}
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #DC661C;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    z-index: 1 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    direction: ltr;
    text-align: center;
    width: auto;
}
@media (max-width: 425px) {
    [dir=rtl] .single-price .before { float: none; }
}
@media (max-width: 768px) {
    .single-title { padding: 8px; font-size: 18px; }
}
.single-title { font-size: 25px; font-weight: 600; line-height: 1.3; }
/* ===================== Trust Bar ===================== */
.nq-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: #fff8f3;
    border: 1.5px solid #fcd5b0;
    border-radius: 14px;
    padding: 10px 8px;
    margin: 12px 0 4px;
    direction: rtl;
    flex-wrap: nowrap;
}
.nq-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
    font-size: 11px;
    font-weight: 600;
    color: #DC661C;
    text-align: center;
    padding: 0 4px;
}
.nq-trust-item span:first-child { font-size: 18px; line-height: 1; }
.nq-trust-sep { width: 1px; height: 32px; background: #fcd5b0; flex-shrink: 0; }
/* ===================== Enhanced Variants (Rich Card) ===================== */
.enhanced-variants-wrapper {
    padding: 16px 12px;
    background: transparent;
    border-radius: 20px;
    margin: 16px 0;
    direction: rtl;
}
.ev-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 6px;
    direction: rtl;
    justify-content: center;
}
.ev-heading-icon { font-size: 22px; }
.ev-heading div strong { font-size: 16px; font-weight: 800; color: #1e293b; text-align: center; }
.ev-heading div p { margin: 2px 0 0; font-size: 13px; color: #888; text-align: center; }
.enhanced-variants-wrapper .option-name,
.product-section.single-variants .option-name {
    display: none !important;
}
.enhanced-variants-wrapper .radio-buttons-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    max-width: 100% !important;
}
.enhanced-variants-wrapper .radio-button-variant {
    position: relative;
    width: 100%;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    background: #fff;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    cursor: pointer;
}
.enhanced-variants-wrapper .radio-button-variant:hover {
    border-color: #f0a06a;
    box-shadow: 0 4px 16px rgba(220,102,28,0.12);
}
.enhanced-variants-wrapper .radio-button-variant.ev-checked {
    border-color: #DC661C !important;
    background: #fff8f3 !important;
    box-shadow: 0 4px 18px rgba(220,102,28,0.18) !important;
}
.enhanced-variants-wrapper .radio-button-variant:nth-child(2) {
    border: 2.5px solid #f59e0b !important;
    background: linear-gradient(135deg, #fffbeb, #fff) !important;
    box-shadow: 0 4px 20px rgba(245,158,11,0.25) !important;
    animation: popularCardGlow 2.5s ease-in-out infinite;
}
@keyframes popularCardGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(245,158,11,0.25); }
    50% { box-shadow: 0 6px 28px rgba(245,158,11,0.5); }
}
.enhanced-variants-wrapper .radio-button-variant input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 3;
    cursor: pointer;
    margin: 0;
}
.enhanced-variants-wrapper .radio-button-variant label {
    display: block !important;
    padding: 14px 16px !important;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
.enhanced-variants-wrapper .radio-button-variant label::before,
.enhanced-variants-wrapper .radio-button-variant label::after {
    display: none !important;
    content: none !important;
}
.enhanced-variants-wrapper .radio-buttons-container [type="radio"]:checked + label,
.enhanced-variants-wrapper .radio-buttons-container [type="radio"]:not(:checked) + label {
    padding: 14px 16px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    background: transparent;
    color: inherit;
}
.ev-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    direction: rtl;
}
.ev-card-top-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
}
.ev-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}
.ev-subtitle {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}
.ev-radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s;
}
.ev-radio-circle::after {
    content: '';
    display: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DC661C;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.enhanced-variants-wrapper .radio-button-variant.ev-checked .ev-radio-circle {
    border-color: #DC661C !important;
}
.enhanced-variants-wrapper .radio-button-variant.ev-checked .ev-radio-circle::after {
    display: block !important;
}
.ev-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
    direction: rtl;
}
.ev-prices { display: flex; align-items: center; gap: 8px; }
.ev-price-current { font-size: 17px; font-weight: 800; color: #DC661C; }
.ev-price-old { font-size: 13px; color: #94a3b8; text-decoration: line-through; font-weight: 500; }
.ev-save-badge {
    background: #fff0e6;
    color: #DC661C;
    border: 1px solid #fcd5b0;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.ev-disc-badge {
    background: linear-gradient(135deg, #DC661C, #e8782f);
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.ev-badge {
    position: absolute;
    top: -12px;
    left: 14px;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    z-index: 4;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ev-badge.ev-limited {
    background: linear-gradient(135deg, #DC661C, #e8782f);
    box-shadow: 0 3px 10px rgba(220,102,28,0.4);
}
.ev-badge.ev-popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 3px 14px rgba(245,158,11,0.6);
    animation: evBadgePulse 1.6s ease-in-out infinite;
    font-size: 13px;
    padding: 5px 14px;
}
.ev-badge.ev-best-value {
    background: linear-gradient(135deg, #DC661C, #e8782f);
    box-shadow: 0 3px 10px rgba(220,102,28,0.4);
}
.ev-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(16,185,129,0.4);
    animation: freeBadgePulse 2s ease-in-out infinite;
}
@keyframes freeBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(16,185,129,0.4); }
    50% { transform: scale(1.05); box-shadow: 0 4px 14px rgba(16,185,129,0.6); }
}
.enhanced-variants-wrapper .radio-button-variant.ev-free-offer {
    border-color: #10b981 !important;
    background: linear-gradient(135deg, #f0fdf4, #fff) !important;
    box-shadow: 0 4px 20px rgba(16,185,129,0.2) !important;
}
.enhanced-variants-wrapper .radio-button-variant.ev-free-offer.ev-checked {
    border-color: #059669 !important;
    background: #f0fdf4 !important;
    box-shadow: 0 6px 24px rgba(16,185,129,0.35) !important;
}
@keyframes evBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}
.ev-label-text { display: none; }
.sticky-cart-bar {
    transition: opacity 0.3s ease, transform 0.3s ease !important;
}
.single-variants,
.product-section.single-variants,
.enhanced-variants-wrapper,
.ev-heading {
    isolation: isolate;
    z-index: auto !important;
}
@media (max-width: 768px) {
    .enhanced-variants-wrapper { padding: 12px 8px; margin: 12px 0; }
    .ev-title { font-size: 15px; }
    .ev-price-current { font-size: 16px; }
    .ev-badge { font-size: 10px; padding: 3px 10px; top: -10px; }
}
/* ===================== UGC Reviews ===================== */
#testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    font-family: sans-serif;
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 600px) {
    #testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px; }
    .ugc-card-info { padding: 8px !important; }
    .ugc-card-info .ugc-stars { font-size: 14px !important; }
    .ugc-card-info .ugc-name { font-size: 13px !important; }
    .ugc-card-info .ugc-text { font-size: 12px !important; }
    .ugc-play-btn { width: 40px !important; height: 40px !important; }
    .ugc-play-arrow { border-top: 8px solid transparent !important; border-bottom: 8px solid transparent !important; border-left: 12px solid #000 !important; }
}
</style>
