/* ============================================
   4. HOMEPAGE
   ============================================ */

/* --- 4.1 Hero Banner --- */
.mt-home {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.mt-hero {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--mt-bg);
}

.mt-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
}

.mt-hero-content {
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.mt-hero-title {
    margin: 0;
}

.mt-hero-sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--mt-text-soft);
    margin: 0;
    max-width: 420px;
}

.mt-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--mt-btn-wc);
    color: var(--mt-btn-wc-text);
    border-radius: var(--mt-btn-wc-radius);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: var(--mt-btn-wc-spacing);
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    width: fit-content;
}

.mt-hero-btn:hover {
    background: var(--mt-btn-wc-hover);
    color: var(--mt-btn-wc-text);
}

.mt-hero-btn:active {
    transform: scale(0.98);
}

.mt-hero-img {
    position: relative;
    overflow: hidden;
}

.mt-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- 4.2 Snel Shoppen --- */
.mt-snel {
    padding: 32px 0 24px;
}

.mt-snel-inner {
    position: relative;
}

.mt-snel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}

.mt-snel-track::-webkit-scrollbar {
    display: none;
}

.mt-snel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    scroll-snap-align: start;
    width: calc((100% - 100px) / 6);
}

.mt-snel-img {
    width: calc(100% - 8px);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
    transition: transform 0.25s ease, box-shadow 0.3s;
}

.mt-snel-item:hover .mt-snel-img {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.mt-snel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mt-snel-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-text);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.mt-snel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e8e3de;
    background: rgba(255,255,255,0.85);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    z-index: 3;
    color: var(--mt-text);
}

.mt-snel-arrow--left {
    left: 20px;
}

.mt-snel-arrow--right {
    right: 20px;
}

.mt-snel-arrow,
.mt-snel-arrow:hover,
.mt-snel-arrow:focus {
    background: rgba(255,255,255,0.85);
    color: var(--mt-text);
}

/* --- 4.2b Spotlight Banners --- */
.mt-spotlight {
    padding: 0 0 32px;
}

.mt-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mt-spotlight-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    height: 280px;
}

.mt-spotlight-card img {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    object-fit: cover;
}

.mt-spotlight-text {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 210px;
    z-index: 2;
}

.mt-spotlight-text strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--mt-text);
    display: block;
    margin-bottom: 12px;
    line-height: 1.25;
}

.mt-spotlight-text span {
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-text);
}

@media (max-width: 575px) {
    .mt-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .mt-spotlight-card {
        height: 220px;
    }
}

/* --- 4.3 Seizoensbanner --- */
.mt-seizoen-banner {
    border-radius: 16px;
    overflow: hidden;
    background: var(--mt-bg);
    margin-bottom: 32px;
}

.mt-seizoen-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
}

.mt-seizoen-banner-left {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
}

.mt-seizoen-banner-blob {
    flex-shrink: 0;
}

.mt-seizoen-banner-blob img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.mt-seizoen-banner-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mt-seizoen-banner-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--mt-accent);
}

.mt-seizoen-banner-title {
    margin: 0;
}

.mt-seizoen-banner-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--mt-text-soft);
    margin: 0;
}

.mt-seizoen-banner-btns {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.mt-seizoen-banner-right {
    padding: 20px;
}

.mt-seizoen-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.mt-seizoen-banner-photo {
    border-radius: 12px;
    overflow: hidden;
}

.mt-seizoen-banner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- 4.4 Feestkleding + Pills --- */
.mt-feest {
    padding: 8px 0 24px;
}

.mt-feest-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mt-feest-title {
    margin: 0;
}

.mt-feest-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mt-feest-pill {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--mt-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mt-text);
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
}

.mt-feest-pill:hover {
    border-color: var(--mt-text);
    background: var(--mt-bg);
    color: var(--mt-text);
}

/* --- 4.5 Shop op Maat --- */
.mt-maat {
    padding: 16px 0 32px;
}

.mt-maat-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mt-maat-heading {
    margin: 0;
}

.mt-maat-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mt-maat-card {
    background: var(--mt-bg);
    border-radius: 16px;
    padding: 28px;
}

.mt-maat-card-title {
    margin: 0 0 4px;
}

.mt-maat-card-sub {
    font-size: 14px;
    color: var(--mt-text-soft);
    margin: 0 0 16px;
}

.mt-maat-btns {
    display: flex;
    gap: 10px;
}

.mt-maat-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 14px 12px;
    background: #fff;
    border: 1px solid var(--mt-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.15s;
}

.mt-maat-btn:hover {
    border-color: var(--mt-text);
}

.mt-maat-btn strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--mt-text);
}

.mt-maat-btn span {
    font-size: 12px;
    color: var(--mt-text-soft);
}

/* --- 4.6 Seizoen Banner Overlay --- */
.mt-overlay {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.mt-overlay-inner {
    position: relative;
}

.mt-overlay-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.mt-overlay-photo {
    display: block;
    overflow: hidden;
}

.mt-overlay-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.mt-overlay-photo:hover img {
    transform: scale(1.03);
}

.mt-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mt-overlay-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.8);
}

.mt-overlay-title {
    color: #fff;
    margin: 0;
}

.mt-overlay-btns {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

/* --- 4.7 Knoppen (homepage) --- */
.mt-btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--mt-btn-wc);
    color: var(--mt-btn-wc-text);
    border-radius: var(--mt-btn-wc-radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}

.mt-btn-primary:hover {
    background: var(--mt-btn-wc-hover);
    color: var(--mt-btn-wc-text);
}

.mt-btn-outline {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--mt-text);
    border: 1.5px solid var(--mt-text);
    border-radius: var(--mt-btn-wc-radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.mt-btn-outline:hover {
    background: var(--mt-text);
    color: #fff;
}

.mt-btn-white {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: var(--mt-text);
    border-radius: var(--mt-btn-wc-radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.mt-btn-white:hover {
    background: #f5f1ed;
    color: var(--mt-text);
}

.mt-btn-white-outline {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: var(--mt-btn-wc-radius);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.mt-btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* --- 4.8 Productslider Secties --- */
.mt-product-section {
    padding: 32px 0;
}

.mt-product-section-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mt-product-section-title {
    margin: 0;
}

.mt-product-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mt-product-pill {
    padding: 8px 18px;
    border: 1px solid var(--mt-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mt-text-soft);
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    white-space: nowrap;
}

.mt-product-pill:hover {
    border-color: var(--mt-text);
    color: var(--mt-text);
}

.mt-product-pill.is-active {
    background: var(--mt-text);
    border-color: var(--mt-text);
    color: #fff;
}

.mt-product-slider-wrap {
    position: relative;
    overflow: hidden;
}

.mt-product-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}

.mt-product-track::-webkit-scrollbar {
    display: none;
}

.mt-product-track:not(.is-active) {
    display: none;
}

.mt-product-card {
    flex-shrink: 0;
    width: calc((100% - 42px) / 4);
    text-decoration: none;
    scroll-snap-align: start;
}

.mt-product-card-img {
    border-radius: 12px;
    overflow: hidden;
    background: #f5f1ed;
}

.mt-product-card-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.mt-product-card:hover .mt-product-card-img img {
    transform: scale(1.03);
}

.mt-product-card-info {
    padding: 8px 4px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mt-product-card-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--mt-text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mt-product-card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--mt-text);
}

.mt-product-card-price del {
    font-size: 12px;
    font-weight: 400;
    color: var(--mt-text-soft);
    opacity: 0.6;
}

.mt-product-card-price ins {
    text-decoration: none;
    color: var(--mt-sale);
}

.mt-product-empty {
    font-size: 14px;
    color: var(--mt-text-soft);
    padding: 20px 0;
}

.mt-product-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--mt-text);
    text-decoration: none;
    transition: gap 0.2s;
}

.mt-product-section-link:hover {
    gap: 10px;
    color: var(--mt-text);
}

/* --- 4.9 Homepage Responsive --- */
@media (max-width: 991px) {
    .mt-home {
        padding: 0 20px;
    }

    .mt-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mt-hero-content {
        padding: 32px 28px;
    }

    .mt-hero-img {
        height: 260px;
    }

    .mt-seizoen-banner-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mt-seizoen-banner-left {
        flex-direction: column;
        padding: 28px;
    }

    .mt-seizoen-banner-blob img {
        width: 150px;
        height: 150px;
    }

    .mt-maat-cards {
        grid-template-columns: 1fr;
    }

    .mt-overlay-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .mt-overlay-photo img {
        height: 200px;
    }

    .mt-product-card {
        width: calc((100% - 28px) / 3);
    }
}

@media (max-width: 575px) {
    .mt-home {
        padding: 0 16px;
    }

    .mt-hero {
        margin-top: 12px;
        border-radius: 12px;
    }

    .mt-hero-content {
        padding: 24px 20px;
    }

    .mt-hero-img {
        height: 200px;
    }

    .mt-snel-item {
        width: calc((100% - 42px) / 3.5);
    }

    .mt-snel-label {
        font-size: 12px;
    }

    .mt-snel-track {
        gap: 14px;
    }

    .mt-snel-arrow {
        display: none;
    }

    .mt-seizoen-banner {
        border-radius: 12px;
    }

    .mt-seizoen-banner-left {
        padding: 24px 20px;
    }

    .mt-feest-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 4px;
    }

    .mt-feest-pills::-webkit-scrollbar {
        display: none;
    }

    .mt-maat-card {
        padding: 20px;
        border-radius: 12px;
    }

    .mt-maat-btns {
        gap: 8px;
    }

    .mt-maat-btn {
        padding: 12px 8px;
        border-radius: 10px;
    }

    .mt-overlay {
        border-radius: 12px;
    }

    .mt-overlay-content {
        padding: 20px;
    }

    .mt-product-card {
        width: calc((100% - 14px) / 2);
    }

    .mt-product-pill {
        padding: 7px 14px;
        font-size: 12px;
    }
}
