/* Core Layout */
.hero-banner {
    position: relative;
    width: 100%;
    height: 818px; 
    overflow: hidden;
}

.banner-item {
    height: 818px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center; 
    background-color: #000;
}

.video-background-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10; 
}

.yt-player-slot iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 100vw; height: 56.25vw; 
    min-height: 100vh; min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}
.standard-overlay { background: rgba(0, 0, 0, 0.4); z-index: 1; } 
.active-video { background: rgba(0, 0, 0, 0.1); z-index: 11; pointer-events: none;} 


.content-container { position: relative; z-index: 5; }

.banner-content { text-align: left; }

.badge-design-match {
    display: flex; align-items: center; gap: 8px;
    color: yellow; 
    font-weight: 600; font-size: 14px; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}
.han-logo-match { width: 15px; height: 15px; filter: invert(0); } 

.main-title {
    color: #ffffff; font-weight: 600; line-height: 1.1; margin-bottom: 20px;
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
}

.desc-text {
    color: #ffffff; opacity: 0.9; font-size: 1.2rem;
    margin-bottom: 50px; line-height: 1.6;
}

.banner-actions-match { display: flex; align-items: center; gap: 20px; }

.btn-primary-match {
    background: #ffffff; color: #000000;
    padding: 18px 40px; border-radius: 50px;
    font-weight: 700; text-decoration: none;
    transition: 0.3s; display: flex; align-items: center; gap: 12px;
}
.btn-primary-match:hover { transform: translateY(-3px); }

.play-btn-match {
    width: 60px; height: 60px;
    background: #eaff00; /* Neon Yellow */
    border-radius: 50%; border: none;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; transition: transform 0.3s ease;
}
.play-btn-match i { color: #000; font-size: 20px; }
.play-btn-match:hover { transform: scale(1.1); }
.play-btn-match:hover,
.play-btn-match:hover i {
    background-color: #1a335f !important;
    color: white !important;
}


.pagination-container {
    position: absolute; bottom: 50px; left: 0; right: 0;
    z-index: 20; 
    pointer-events: none; 
}

.banner-pagination-match {
    position: relative !important; text-align: right;
    pointer-events: auto; 
}

.banner-pagination-match .swiper-pagination-bullet {
    background: #ffffff !important; opacity: 0.5;
    width: 10px; height: 10px; transition: 0.3s;
}

.banner-pagination-match .swiper-pagination-bullet-active {
    opacity: 1; border: 2px solid #eab308;
    background: transparent !important;
    outline: 2px solid #fff; outline-offset: 2px;
}

@media (max-width: 1024px) {
    .hero-banner, .banner-item { height: 600px; }
}

@media (max-width: 768px) {
    .hero-banner, .banner-item { height: 500px; }
    .banner-content { text-align: center; }
    .banner-actions-match { justify-content: center; }
    .badge-design-match { justify-content: center; }
    .main-title { font-size: 2.5rem; }
    .desc-text { font-size: 1rem; margin-bottom: 30px;}
    .pagination-container { text-align: center; }
    .badge-design-match { font-size: 12px; }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction { top: 25px !important; }
}

/*Start Smart Store Section */
:root {
            --primary-blue: #2b59d3;
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --bg-light-gray: #f2f4f7;
        }

       .smart-store {
           padding-top: 100px;
            padding-bottom: 100px;
       }
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Header Section --- */
        .store-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
            gap: 20px;
        }

        .header-content {
            flex: 1;
        }

        .sub-title {
            color: var(--primary-blue);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        /* SVG Icon styling */
        .store-icon {
            width: 16px;
            height: 16px;
            fill: var(--primary-blue);
        }

        .store-header h2 {
            font-size: 42px;
            color: var(--text-dark);
            line-height: 1.1;
            max-width: 550px;
        }

        .view-store-btn {
            background-color: var(--primary-blue);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            transition: opacity 0.2s;
        }

        .view-store-btn:hover {
            opacity: 0.9;
        }

        /* --- Product Grid --- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-card {
            display: flex;
            flex-direction: column;
        }

        .image-wrapper {
            background-color: var(--bg-light-gray);
            border-radius: 16px;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 20px;
        }

        .image-wrapper img {
            max-width: 90%;
            max-height: 80%;
            object-fit: contain;
        }

        .category {
            color: var(--text-gray);
            font-size: 14px;
            margin-bottom: 8px;
        }

        .product-card h3 {
            font-size: 24px;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-weight: 700;
        }

        .product-card p {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 16px;
            min-height: 45px; /* Keeps card alignment consistent */
        }

        .price {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 18px;
        }
        
                
                /* Ensure the link doesn't break the layout */
        .product-card-link {
            display: block;
            transition: transform 0.3s ease;
        }
        
        /* Image Wrapper Setup */
        .image-wrapper {
            background-color: var(--bg-light-gray);
            border-radius: 16px;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            padding: 20px;
            overflow: hidden; /* Vital for the zoom effect */
        }
        
        /* Initial Image State */
        .zoom-img {
            max-width: 90%;
            max-height: 80%;
            object-fit: contain;
            transition: transform 0.5s ease; /* Smooth zoom transition */
        }
        
        /* Zoom Effect on Hover */
        .product-card-link:hover .zoom-img {
            transform: scale(1.15); /* Adjust 1.15 for more or less zoom */
        }
        
        /* Optional: Slight lift effect on the whole card */
        .product-card-link:hover .product-card {
            cursor: pointer;
        }
        

        /* --- Responsiveness (Mobile & Tablet) --- */
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .store-header h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 600px) {
            .store-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .store-header h2 {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }

            .image-wrapper {
                aspect-ratio: 4 / 3;
            }
            
            .view-store-btn {
                width: fit-content;
            }
        }
/*End Smart Store Section */