.store-overview .left img {
    width: 150px !important;

    height: 120px !important;

    object-fit: contain;
}

/* Premium Offer Card Styling for Homepage Product Carousels & Listings */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
    }

    50% {
        box-shadow: 0 4px 20px rgba(225, 29, 72, 0.6);
    }
}

@keyframes glow-pulse-blue {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(3, 29, 146, 0.2);
    }

    50% {
        box-shadow: 0 6px 20px rgba(3, 29, 146, 0.45);
    }
}

@keyframes shimmer-sheen {
    0% {
        left: -150%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.category-products-section {
    background: #ffffff;
    padding: 40px 0;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.category-products-section .section-heading {
    margin-bottom: 30px;
}

.product-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.02), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex !important;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 32px -8px rgba(3, 29, 146, 0.12), 0 4px 16px -4px rgba(3, 29, 146, 0.04);
    border-color: rgba(3, 29, 146, 0.18);
}

/* Shine effect on hover */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.25) 30%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.25) 70%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 5;
}

.product-card:hover::after {
    animation: shimmer-sheen 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Card Visual Frame */
.product-card .card-media-wrap {
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    overflow: hidden;
    padding: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.product-card .card-media-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.product-card:hover .card-media-wrap img {
    transform: scale(1.06) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(3, 29, 146, 0.08));
}

/* Discount Badge */
.product-card .card-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

/* Floating Rating Badge */
.product-card .card-rating-float {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #d97706;
    border: 1px solid rgba(217, 119, 6, 0.2);
    font-size: 9.5px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.product-card .card-rating-float i {
    color: #f59e0b;
    font-size: 9.5px;
}

/* Card Body */
.product-card .product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    border: none !important;
}

.product-card .product-card-brand {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #4f46e5;
    font-weight: 700;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border: none !important;
}

.product-card .product-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0 !important;
    line-height: 1.4;
    height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
    border: none !important;
}

.product-card:hover .product-card-title {
    color: #031d92;
}

.product-card .product-card-desc {
    font-size: 11px;
    color: #64748b;
    margin: 0 0 12px 0 !important;
    line-height: 1.5;
    height: 33px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    border: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

/* Price Section - Borderless and clean */
.product-card .product-card-price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 8px;
    margin-bottom: 12px;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.product-card .product-card-sale-price {
    font-size: 16px;
    font-weight: 800;
    color: #031d92;
    letter-spacing: -0.3px;
}

.product-card .product-card-original-price {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

/* Action Buttons */
.product-card .product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: none !important;
}

.product-card .product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    box-sizing: border-box;
    gap: 4px;
    border: none !important;
}

.product-card .btn-details {
    background: #f1f5f9;
    color: #475569 !important;
}

.product-card .btn-details:hover {
    background: #e2e8f0;
    color: #0f172a !important;
    transform: translateY(-1px);
}

.product-card .btn-buy {
    background: linear-gradient(135deg, #031d92 0%, #1e40af 100%) !important;
    background-size: 150% auto !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(3, 29, 146, 0.15);
}

.product-card .btn-buy:hover {
    background-position: right center !important;
    box-shadow: 0 6px 16px rgba(3, 29, 146, 0.25);
    transform: translateY(-1px);
}

/* --- Premium Navigation Arrows for Owl Carousel --- */
.category-products-section {
    padding: 40px 0;
}

.category-products-section .owl-carousel {
    position: relative;
}

.category-products-section .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.category-products-section .owl-carousel .owl-nav button.owl-prev,
.category-products-section .owl-carousel .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.03) !important;
    color: #475569 !important;
    font-size: 20px !important;
    line-height: 48px !important;
    text-align: center !important;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 0;
    transform: scale(0.9) translateY(0);
}

.category-products-section:hover .owl-carousel .owl-nav button.owl-prev,
.category-products-section:hover .owl-carousel .owl-nav button.owl-next {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.category-products-section .owl-carousel .owl-nav button.owl-prev {
    margin-left: -24px !important;
}

.category-products-section .owl-carousel .owl-nav button.owl-next {
    margin-right: -24px !important;
}

.category-products-section .owl-carousel .owl-nav button.owl-prev:hover,
.category-products-section .owl-carousel .owl-nav button.owl-next:hover {
    background: linear-gradient(135deg, #031d92, #3b82f6) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 25px rgba(3, 29, 146, 0.4) !important;
    transform: scale(1.1) translateY(-2px);
}

.category-products-section .owl-nav button.disabled {
    opacity: 0.3 !important;
    pointer-events: none;
}

/* --- Plain View All Link --- */
.vvip-view-all {
    color: #031d92 !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.vvip-view-all i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.vvip-view-all:hover {
    color: #e11d48 !important;
    text-decoration: none;
}

.vvip-view-all:hover i {
    transform: translateX(4px);
}

/* Staggered animation entry for grid items on listing pages */
.products-grid-section .col-6:nth-child(1) .product-card {
    animation-delay: 0.05s;
}

.products-grid-section .col-6:nth-child(2) .product-card {
    animation-delay: 0.1s;
}

.products-grid-section .col-6:nth-child(3) .product-card {
    animation-delay: 0.15s;
}

.products-grid-section .col-6:nth-child(4) .product-card {
    animation-delay: 0.2s;
}

.products-grid-section .col-6:nth-child(5) .product-card {
    animation-delay: 0.25s;
}

.products-grid-section .col-6:nth-child(6) .product-card {
    animation-delay: 0.3s;
}

.products-grid-section .col-6:nth-child(n+7) .product-card {
    animation-delay: 0.35s;
}

/* --- Conversion Rate Optimization (CRO) & Premium UX Animations --- */

/* Premium Voucher Card Hover & Transitions */
.voucher-card {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid rgba(15, 23, 42, 0.04) !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.015) !important;
    position: relative;
    overflow: hidden;
}

.voucher-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px -6px rgba(3, 29, 146, 0.08) !important;
    border-color: rgba(3, 29, 146, 0.15) !important;
}

/* Shiny Attention Grabber for Show Code/Deal Buttons */
.coupon-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease !important;
}

.coupon-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shimmer-sheen 3.5s infinite linear;
    z-index: 2;
}

.coupon-button:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(3, 29, 146, 0.3) !important;
}

/* Category Grid & Brand Logos Animation */
.brand-logos li {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.brand-logos li:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
}

/* Global Input Focus Styling */
.search-form input:focus {
    border-color: #031d92 !important;
    box-shadow: 0 0 0 4px rgba(3, 29, 146, 0.15) !important;
    outline: none;
}