/* Home — Everyday life reels section */
.lifestyle-reels {
    background: transparent;
    padding: 70px 0;
    overflow: hidden;
}

.lifestyle-reels__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.lifestyle-reels__header {
    text-align: center;
    max-width: 720px;
    padding: 0 15px;
}

.lifestyle-reels__title {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}

.lifestyle-reels__title span {
    color: #d32f2f;
}

.lifestyle-reels__subtitle {
    margin: 0;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
}

.lifestyle-reels__track {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding: 4px 15px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lifestyle-reels__track::-webkit-scrollbar {
    display: none;
}

.lifestyle-reel {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 58vw;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a1a;
    scroll-snap-align: start;
}

.lifestyle-reel__media {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.lifestyle-reel__media img,
.lifestyle-reel__media video,
.lifestyle-reel__media iframe {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    transition: transform 0.55s ease;
}

.lifestyle-reel__media--instagram iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: unset;
    background: #000;
}

.lifestyle-reel__media--instagram {
    background: #000;
}

.lifestyle-reel:hover .lifestyle-reel__media img,
.lifestyle-reel:hover .lifestyle-reel__media video {
    transform: scale(1.04);
}

.lifestyle-reel:hover .lifestyle-reel__media--instagram iframe {
    transform: none;
}

.lifestyle-reel__caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 16px;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.lifestyle-reel__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    padding: 12px 16px;
    background: #d32f2f;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background 0.25s ease, color 0.25s ease;
}

.lifestyle-reel__cta svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.lifestyle-reel__cta:hover {
    background: #b71c1c;
    color: #fff !important;
}

.lifestyle-reel__cta:hover svg {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .lifestyle-reels {
        padding: 80px 0;
    }

    .lifestyle-reels__inner {
        gap: 44px;
    }

    .lifestyle-reels__track {
        gap: 24px;
        padding-left: 0;
        padding-right: 0;
        justify-content: center;
        overflow: visible;
    }

    .lifestyle-reel {
        width: 36vw;
    }

    .lifestyle-reel__cta {
        padding: 14px 18px;
        font-size: 17px;
    }
}

@media (min-width: 992px) {
    .lifestyle-reel {
        width: 22vw;
        max-width: 280px;
    }
}

@media (min-width: 1200px) {
    .lifestyle-reels {
        padding: 96px 0;
    }

    .lifestyle-reel {
        width: calc((100% - 72px) / 4);
        max-width: none;
    }
}

@media (max-width: 767px) {
    .lifestyle-reels {
        padding: 48px 0;
    }

    .lifestyle-reels__inner {
        gap: 28px;
    }

    .lifestyle-reel__cta {
        font-size: 15px;
        padding: 11px 14px;
    }
}
