/* Vesa Home Page — pairs with templates/home-template.php */

.page-template-templates-home-template,
body.home {
    color: #1a1a1a;
}

.page-template-templates-home-template .container-lg,
body.home .container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ── Hero ────────────────────────────────────────────── */
.home-hero {
    margin-top: 16px;
    margin-bottom: 80px;
}

.home-hero__inner {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f3efe9;
}

.home-hero__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 7;
}

.home-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 clamp(24px, 6vw, 80px);
    color: #fff;
    background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 60%, rgba(0,0,0,0) 100%);
    max-width: 600px;
}

.home-hero__title {
    margin: 0 0 16px;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -.01em;
}

.home-hero__lead {
    margin: 0 0 24px;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.5;
    max-width: 480px;
}

.home-hero__btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}

.home-hero__btn:hover {
    background: #2563eb;
    color: #fff;
}

/* ── New products ────────────────────────────────────── */
.home-newproducts {
    margin-bottom: 96px;
}

.home-newproducts__layout {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 3fr;
    gap: 32px;
    align-items: center;
}

.home-newproducts__intro {
    padding-right: 16px;
}

.home-newproducts__title {
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.15;
}

.home-newproducts__body {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.home-newproducts__btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .18s ease;
}

.home-newproducts__btn:hover {
    background: #2563eb;
}

.home-newproducts__slider {
    overflow: hidden;
}

.home-newproducts__slide {
    display: block;
}

.home-newproducts__slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 2px;
    transition: transform .35s ease;
}

.home-newproducts__slide:hover img {
    transform: scale(1.02);
}

/* ── Explore Women / Men ─────────────────────────────── */
.home-explore {
    margin-bottom: 96px;
}

.home-explore__title {
    margin: 0 0 36px;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.home-explore__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.home-explore__item {
    display: flex;
    flex-direction: column;
    background: #f7f5f2;
    border-radius: 4px;
    overflow: hidden;
}

.home-explore__image {
    aspect-ratio: 3 / 2;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.home-explore__copy {
    padding: 28px 28px 32px;
}

.home-explore__heading {
    margin: 0 0 12px;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    line-height: 1.3;
}

.home-explore__body {
    margin: 0 0 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.home-explore__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: gap .15s ease, color .15s ease;
}

.home-explore__cta:hover {
    color: #2563eb;
    gap: 12px;
}

/* ── Categories grid ────────────────────────────────── */
.home-categories {
    margin-bottom: 96px;
}

.home-categories__title {
    margin: 0 0 28px;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.home-categories__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-categories__item {
    border-bottom: 1px solid #ececec;
}

.home-categories__link {
    display: block;
    padding: 12px 4px;
    color: #1a1a1a;
    font-size: 14px;
    text-decoration: none;
    transition: color .15s ease, padding .15s ease;
}

.home-categories__link:hover {
    color: #2563eb;
    padding-left: 8px;
}

/* ── Why Buy — value props ──────────────────────────── */
.home-values {
    background: #fafafa;
    padding: 80px 0;
    margin-bottom: 0;
}

.home-values__title {
    margin: 0 auto 48px;
    max-width: 900px;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.home-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}

.home-values__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.home-values__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.home-values__icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.home-values__heading {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.home-values__body {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #555;
}

/* ── FAQ ─────────────────────────────────────────────── */
.home-faq {
    padding: 80px 0;
    background: #fff;
}

.home-faq__title {
    margin: 0 0 36px;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.home-faq__layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    align-items: start;
}

.home-faq__col {
    border-top: 1px solid #e5e5e5;
}

.home-faq__item {
    border-bottom: 1px solid #e5e5e5;
}

.home-faq__q {
    list-style: none;
    cursor: pointer;
    padding: 20px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    transition: color .15s ease;
}

.home-faq__q::-webkit-details-marker {
    display: none;
}

.home-faq__q:hover {
    color: #2563eb;
}

.home-faq__icon {
    display: inline-flex;
    align-items: center;
    color: #555;
    transition: transform .25s ease, color .15s ease;
    flex-shrink: 0;
}

.home-faq__item[open] > .home-faq__q .home-faq__icon {
    transform: rotate(180deg);
    color: #2563eb;
}

.home-faq__a {
    padding: 0 4px 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #292929;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 990px) {
    .home-hero {
        margin-bottom: 56px;
    }

    .home-hero__image {
        aspect-ratio: 4 / 5;
        object-position: 81% top;
    }

    .home-hero__content {
        background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 100%);
        max-width: none;
        justify-content: flex-end;
        padding-bottom: 32px;
    }

    .home-newproducts__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-explore__grid {
        grid-template-columns: 1fr;
    }

    .home-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .home-newproducts,
    .home-explore,
    .home-categories {
        margin-bottom: 64px;
    }

    .home-values,
    .home-faq {
        padding: 56px 0;
    }

    .home-faq__layout {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .home-faq__col + .home-faq__col {
        border-top: none;
    }
}

@media (max-width: 600px) {
    .home-categories__list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .home-values__grid {
        grid-template-columns: 1fr;
    }

    .home-faq__q {
        font-size: 15px;
        padding: 16px 4px;
    }
}
