/* Top Banner */
.top-banner {
    width: 100%;
    height: 300px; /* Je kunt deze hoogte aanpassen */
    overflow: hidden;
    position: relative;
    background: #000;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top Banner */
.top-banner {
    width: 100%;
    height: 300px; /* Standaard hoogte voor mobiel */
    overflow: hidden;
    position: relative;
    background: #000;
}

/* Grotere hoogte op desktop */
@media (min-width: 1024px) {
    .top-banner {
        height: 600px;
    }
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2); /* Lichtere overlay */
}

.banner-logo {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    font-family: 'Evolu-Cards', sans-serif;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.banner-logo:hover {
    transform: scale(1.05);
}

/* ===== INDEX PAGE STYLES ===== */

/* Import header variables */
@import url('header.css');



/* ===== SECTIONS BASE ===== */

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.section-link:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

/* ===== FEATURED PRODUCTS ===== */

.featured-products {
    background: var(--light-gray);
}

.no-products-message {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    grid-column: 1 / -1;
}

.no-products-message p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin: 0;
}

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

/* Mobile: 2 products per row - Improved Design */
@media (max-width: 768px) {
         .products-grid {
         grid-template-columns: repeat(2, 1fr) !important;
         gap: 18px;
         padding: 0 8px;
         margin: 0 auto;
         max-width: 100%;
     }
    
    .product-card {
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        background: var(--white);
    }
    
    .product-card:hover {
        transform: translateY(-2px);
        border-color: #cbd5e1;
    }
    
    .product-image {
        aspect-ratio: 3/4;
        position: relative;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .product-card:hover .product-image img {
        transform: scale(1.02);
    }
    
    .product-info {
        padding: 18px;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .product-meta {
        margin-bottom: 6px;
    }
    
    .product-set {
        font-size: 11px;
        font-weight: 600;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .product-name {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
        font-weight: 600;
        color: var(--dark-blue);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.6rem;
    }
    
    .product-price {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .price-current {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .price-sale {
        font-size: 1.1rem;
        font-weight: 700;
        color: #16a34a;
    }
    
    .price-original {
        font-size: 0.9rem;
        color: var(--medium-gray);
        text-decoration: line-through;
    }
    
    .price-discount {
        font-size: 10px;
        padding: 2px 6px;
        background: var(--accent-color);
        color: white;
        border-radius: 4px;
        font-weight: 600;
    }
    
         .btn-add-to-cart {
         padding: 8px 14px;
         font-size: 14px;
         gap: 8px;
         border-radius: 8px;
         font-weight: 600;
         transition: all 0.2s ease;
         width: 100%;
         justify-content: center;
         min-height: 36px;
     }
    
    .btn-add-to-cart:hover {
        transform: translateY(-1px);
        background: #b91c1c;
    }
    
    .btn-add-to-cart svg {
        width: 16px;
        height: 16px;
    }
    
    .stock-indicator {
        bottom: 8px;
        left: 8px;
        padding: 4px 8px;
        border-radius: 12px;
        background: rgba(16, 185, 129, 0.1);
        backdrop-filter: blur(10px);
    }
    
    .stock-text {
        font-size: 11px;
        font-weight: 600;
        color: #10b981;
    }
    
    .stock-icon {
        width: 14px;
        height: 14px;
    }
    
    .product-badges {
        top: 10px;
        left: 10px;
        gap: 6px;
    }
    
    .badge {
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 8px;
        font-weight: 600;
        backdrop-filter: blur(10px);
    }
    
    .product-overlay {
        top: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .btn-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.2s ease;
    }
    
    .btn-icon:hover {
        background: white;
        transform: scale(1.05);
        border-color: rgba(0, 0, 0, 0.2);
    }
    
    .btn-icon svg {
        width: 18px;
        height: 18px;
    }
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: white;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rarity-badge {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d97706 100%);
    color: var(--white);
}

.sale-badge {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b91c1c 100%);
    color: var(--white);
}



.product-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateX(0);
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.btn-icon:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-meta {
    margin-bottom: 8px;
}

.product-set {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-sale {
    font-size: 1.25rem;
    font-weight: 700;
    color: #16a34a;
}

.price-original {
    font-size: 1rem;
    color: var(--medium-gray);
    text-decoration: line-through;
}

.price-discount {
    background: var(--accent-color);
    color: var(--white);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.btn-add-to-cart {
    width: 100%;
    background: #dc2626;
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
}

.btn-add-to-cart:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* ===== CATEGORIES SECTION ===== */

.categories {
    background: var(--white);
}

/* New Category Blocks Design - Force override */
.categories .category-blocks-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.category-block {
    position: relative;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.category-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.category-overlay-red {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.95) 0%, 
        rgba(185, 28, 28, 1) 100%);
}

.category-block-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
}

.category-block-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-categories-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--light-gray);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.no-categories-message p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.category-card.large {
    grid-row: 1 / -1;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(37, 99, 235, 0.3) 100%
    );
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btn-white {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-blue);
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.btn-white:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* ===== NEW ARRIVALS ===== */

.new-arrivals {
    background: var(--light-gray);
}

.arrivals-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.arrival-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.arrival-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.arrival-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--light-gray);
}

.arrival-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    background: white;
}

.new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arrival-info {
    padding: 20px;
    text-align: left;
}

.arrival-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.arrival-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: left;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== NEWSLETTER ===== */

.newsletter {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.newsletter-description {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 400px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.newsletter-disclaimer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.newsletter-disclaimer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .showcase-cards {
        width: 350px;
        height: 450px;
    }
    
    .showcase-card {
        width: 220px;
        height: 300px;
    }
}

/* Desktop */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-showcase {
        height: 400px;
    }
    
    .category-blocks-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .category-block {
        height: 180px;
    }
    
    .category-block-title {
        font-size: 1.3rem;
        letter-spacing: 1.5px;
        margin: 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        height: auto;
    }
    
    .category-card.large {
        grid-row: 1 / 3;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-showcase {
        height: 300px;
    }
    
    .showcase-cards {
        width: 250px;
        height: 300px;
    }
    
    .showcase-card {
        width: 160px;
        height: 220px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .category-blocks-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 16px;
    }
    
    .category-block {
        height: 160px;
    }
    
    .category-block-title {
        font-size: 1.2rem;
        letter-spacing: 1px;
        margin: 0;
    }
    
    .category-block-content {
        padding: 16px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }
    
    .category-card.large {
        grid-row: auto;
    }
    
    .arrivals-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    section {
        padding: 40px 0;
    }
    
    .arrivals-slider {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-showcase {
        height: 250px;
    }
    
    .showcase-cards {
        width: 200px;
        height: 250px;
    }
    
    .showcase-card {
        width: 120px;
        height: 160px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
         .products-grid {
         grid-template-columns: repeat(2, 1fr) !important;
         gap: 16px;
         padding: 0 6px;
         max-width: 100%;
         margin: 0 auto;
     }
    
    .category-blocks-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-block {
        height: 140px;
    }
    
    .category-block-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin: 0;
    }
    
    .category-block-content {
        padding: 12px;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        max-width: none;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        margin-bottom: 12px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-content {
        gap: 30px;
    }
    
    .hero-showcase {
        display: none;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
         .products-grid {
         grid-template-columns: repeat(2, 1fr) !important;
         gap: 14px;
         padding: 0 4px;
         max-width: 100%;
         margin: 0 auto;
     }
    
    .product-card {
        border-radius: 14px;
        border: 1px solid #e2e8f0;
    }
    
    .product-card:hover {
        transform: translateY(-2px);
        border-color: #cbd5e1;
    }
    
    .product-info {
        padding: 12px;
        min-height: 120px;
    }
    
    .product-name {
        font-size: 0.9rem;
        margin-bottom: 6px;
        font-weight: 600;
        min-height: 2.4rem;
    }
    
    .product-price {
        margin-bottom: 10px;
    }
    
    .price-current {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .price-sale {
        font-size: 1rem;
        font-weight: 700;
        color: #16a34a;
    }
    
    .btn-add-to-cart {
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 6px;
        font-weight: 600;
    }
    
    .btn-add-to-cart:hover {
        transform: translateY(-1px);
        background: #b91c1c;
    }
    
    .arrivals-slider {
        gap: 16px;
    }
    
    .arrival-info {
        padding: 16px;
    }
}
