/* VAKO Sidelifter Carousel Styles */

.vako-sidelifter-carousel {
    margin: 80px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: transparent !important;
}

/* Container for header alignment */
.vako-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background: transparent !important;
}

/* Header */
.vako-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    background: transparent !important;
    padding: 0;
}

.vako-title {
    font-size: 42px;
    font-weight: 700;
    color: #01447b;
    margin: 0;
    letter-spacing: -0.5px;
}

.vako-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #f15d22;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}

.vako-see-all:hover {
    color: #d94d15;
    gap: 12px;
}

.vako-see-all svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.vako-see-all:hover svg {
    transform: translateX(3px);
}

/* Carousel Wrapper - Full width from left edge */
.vako-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    width: 100vw;
    padding-left: max(calc((100vw - 1200px) / 2), 20px);
}

/* Carousel Track */
.vako-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
}

/* Slides */
.vako-slide {
    flex: 0 0 450px;
    background: #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.vako-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vako-slide-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Slide Image */
.vako-slide-image {
    height: 280px;
    margin: -24px -24px 24px -24px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.vako-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
}

/* Slide Title */
.vako-slide-title {
    font-size: 24px;
    font-weight: 500;
    color: #2d3748;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    border-bottom: 2px solid #e66500;
    padding-bottom: 12px;
}

/* Features */
.vako-features {
    flex: 1;
    margin-bottom: 30px;
}

.vako-features h4 {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin: 0 0 16px 0;
    text-transform: none;
    letter-spacing: 0;
}

.vako-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vako-features li {
    position: relative;
    padding-left: 28px;   /* zelfde als productpagina */
    margin-bottom: 12px;  /* zelfde spacing */
    font-size: 16px;      /* zelfde tekstgrootte */
    color: #4a5568;
}

.vako-features li::before {
    content: '✓';         /* exact hetzelfde symbool */
    position: absolute;
    left: 0;
    color: #e66500;
    font-weight: bold;
    font-size: 18px;
}


/* Explore Button */
.vako-explore-btn {
    display: inline-block;
    background-color: #f15d22;
    color: white;
    padding: 12px 40px 12px 24px;
    margin-right: 30px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    isolation: isolate;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vako-explore-btn::after {
    content: '';
    position: absolute;
    right: -29px;
    top: 0;
    bottom: 0;
    width: 30px;
    background-color: #f15d22;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    transition: all 0.3s ease;
}

.vako-explore-btn:hover {
    background-color: #d94d15;
    color: white;
    transform: translateX(-3px);
}

.vako-explore-btn:hover::after {
    background-color: #d94d15;
}

.vako-explore-btn svg {
    display: none;
}

/* Controls - Hidden by default, positioned relative to container */
.vako-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 10;
}

.vako-carousel-controls button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0;
}

.vako-sidelifter-carousel:hover .vako-carousel-controls button {
    opacity: 1;
}

.vako-carousel-controls button:hover {
    background: #f7fafc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
}

.vako-carousel-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vako-carousel-controls button:disabled:hover {
    transform: none;
}

.vako-carousel-controls button svg {
    width: 24px;
    height: 24px;
    color: #2d3748;
}

/* Dots - Aligned with content container */
.vako-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-bottom: 20px;
}

.vako-dot {
    width: 32px;
    height: 3px;
    background: #cbd5e0;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.vako-dot:hover {
    background: #a0aec0;
}

.vako-dot.active {
    background: #2d3748;
    width: 48px;
}

/* Responsive */
@media (max-width: 1440px) {
    .vako-slide {
        flex: 0 0 400px;
    }
}

@media (max-width: 1200px) {
    .vako-slide {
        flex: 0 0 350px;
    }
    
    .vako-title {
        font-size: 40px;
    }
    
    .vako-slide-image {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .vako-slide {
        flex: 0 0 300px;
    }
    
    .vako-title {
        font-size: 36px;
    }
    
    .vako-slide-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .vako-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .vako-slide {
        flex: 0 0 85vw;
    }
    
    .vako-carousel-track {
        gap: 16px;
    }
    
    .vako-slide-content {
        padding: 20px;
    }
    
    .vako-slide-image {
        margin: -20px -20px 20px -20px;
        height: 160px;
    }
    
    .vako-slide-title {
        font-size: 20px;
    }
    
    .vako-carousel-controls {
        display: none;
    }
    
    .vako-title {
        font-size: 32px;
    }
}

/* Loading state */
.vako-sidelifter-carousel.loading .vako-carousel-track {
    opacity: 0.6;
}

/* Smooth scroll behavior */
.vako-carousel-track.dragging {
    transition: none;
    cursor: grabbing;
}

/* Focus states */
.vako-explore-btn:focus,
.vako-see-all:focus,
.vako-carousel-controls button:focus,
.vako-dot:focus {
    outline: 2px solid #4299e1;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .vako-carousel-controls,
    .vako-carousel-dots {
        display: none;
    }
    
    .vako-carousel-wrapper {
        margin-left: 0;
        width: auto;
        padding-left: 0;
    }
    
    .vako-carousel-track {
        flex-wrap: wrap;
    }
    
    .vako-slide {
        flex: 0 0 48%;
        page-break-inside: avoid;
    }
}