/* ============================================
   HOME — Bestsellers, Quote, Social, Testimonials
   ============================================ */

/* ---- Bestsellers ---- */

.bestsellers {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.bestsellers-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 25px;
}

.bestsellers-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.bestsellers-nav {
    display: none;
}

.bestsellers-nav-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 125, 0.3);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bestsellers-carousel {
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bestsellers-carousel::after {
    content: '';
    flex: 0 0 5px;
}

.bestsellers-carousel::-webkit-scrollbar {
    display: none;
}

.bestsellers-carousel .product-link {
    flex: 0 0 80%;
    scroll-snap-align: start;
    display: flex;
}

.bestsellers-carousel .product-card {
    width: 100%;
}

.bestsellers-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 15px;
}

.bestsellers-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(212, 175, 125, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
}

.bestsellers-dot.active {
    background-color: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ---- Quote Section ---- */

.quote-section {
    padding: 50px 20px;
    border-top: 1px solid rgba(212, 175, 125, 0.1);
    border-bottom: 1px solid rgba(212, 175, 125, 0.1);
    background: linear-gradient(180deg, rgba(212, 175, 125, 0.03) 0%, transparent 50%, rgba(212, 175, 125, 0.03) 100%);
}

.quote-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.quote-decoration {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.7;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: white;
    line-height: 1.6;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
    transition: opacity 0.5s ease;
    min-height: 4.8em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

/* ---- Social / Instagram Section ---- */

.social-media-content {
    padding: 50px 20px 50px;
}

.social-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.social-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon-title {
    width: 28px;
    height: 28px;
    opacity: 0.9;
}

.social-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: white;
    letter-spacing: 1px;
}

.social-follow-btn {
    display: none;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 25px;
}

/* Mobile: Peek-Carousel, Video 2 mittig */
.social-reels {
    position: relative;
    overflow: hidden;
    /* Höhe: 70% der Breite × 16/9 Seitenverhältnis, max 520px */
    height: min(calc(70vw * 16 / 9), 900px);
}

.social-reel-item {
    position: absolute;
    left: 15%;
    width: 70%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

/* Pfeil-Buttons: standardmäßig versteckt (nur Desktop) */
.social-carousel-btn {
    display: none;
}

/* Seiten-Videos auf Mobile abdunkeln */
.social-reel-item.is-side .social-reel-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.social-reel-item.is-center .social-reel-overlay {
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
}

.social-reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 0.5s ease;
}

.social-reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 12px;
    transition: opacity 0.3s ease;
}

.social-reel-ig {
    width: 22px;
    height: 22px;
    opacity: 0.9;
}


.social-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-photo-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-photo-tablet {
    display: none;
}

.social-photo-desktop {
    display: none;
}

.social-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease;
}

.social-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-photo-item:active .social-photo-overlay {
    opacity: 1;
}

.social-photo-icon {
    width: 28px;
    height: 28px;
    opacity: 0.9;
}

/* ---- Testimonials Section ---- */

.testimonials-section {
    padding: 50px 0 50px;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 30px;
}

.testimonials-header-top {
    text-align: center;
    width: 100%;
}

.testimonials-nav {
    display: none;
}

.testimonials-nav-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 125, 0.3);
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.testimonials-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.testimonials-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.testimonials-stars .star {
    color: var(--gold);
    font-size: 20px;
}

.testimonials-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.testimonials-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 20px 20px;
}

.testimonials-carousel::after {
    content: '';
    flex: 0 0 5px;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(212, 175, 125, 0.15);
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating span {
    color: var(--gold);
    font-size: 16px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.testimonial-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-verified {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--gold);
    opacity: 0.8;
}

/* ---- Responsive: Home Sections ---- */

@media (min-width: 600px) {
    .bestsellers {
        padding: 50px 0 50px 5px;
    }

    .bestsellers-header {
        padding: 0 25px;
        margin-bottom: 30px;
    }

    .bestsellers-title {
        font-size: 30px;
    }

    .bestsellers-carousel {
        padding: 0 25px;
        gap: 20px;
    }

    .bestsellers-carousel .product-link {
        flex: 0 0 45%;
    }

    .quote-section {
        padding: 70px 40px;
    }

    .quote-text {
        font-size: 28px;
    }

    .quote-decoration {
        font-size: 32px;
    }

    .social-media-content {
        padding: 50px 30px;
    }

    .social-header {
        margin-bottom: 50px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .social-icon-title {
        width: 36px;
        height: 36px;
    }

    .social-title {
        font-size: 30px;
    }

    .social-follow-btn {
        display: block;
    }

    /* Tablet: Carousel läuft weiter — nur Border-Radius anpassen */
    .social-reel-item {
        border-radius: 16px;
    }

    .testimonials-section {
        padding: 50px 25px 50px;
    }

    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-carousel {
        padding: 10px 25px 20px;
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 48%;
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 18px;
    }
}

@media (min-width: 900px) {
    .bestsellers {
        padding: 0px 40px 90px 40px;
        max-width: 1440px;
        margin: 0 auto;
        overflow: visible;
        position: relative;
    }

    .bestsellers::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        height: 60%;
        background: linear-gradient(90deg, transparent 0%, var(--primary-color) 100%);
        pointer-events: none;
        opacity: 0.9;
    }

    .bestsellers-header {
        padding: 0 40px;
        margin-bottom: 40px;
    }

    .bestsellers-title {
        font-size: 36px;
        letter-spacing: 6px;
    }

    .bestsellers-nav {
        display: flex;
        gap: 10px;
    }

    .bestsellers-nav-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--gold);
        color: var(--gold);
    }

    .bestsellers-carousel {
        padding: 0 40px;
        gap: 25px;
        overflow: hidden;
        scroll-behavior: smooth;
    }

    .bestsellers-carousel .product-link {
        flex: 0 0 calc(22% - 19px);
    }

    .bestsellers-dots {
        display: none;
    }

    .quote-section {
        padding: 90px 60px;
    }

    .quote-container {
        max-width: 900px;
    }

    .quote-text {
        font-size: 34px;
    }

    .quote-decoration {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .quote-author {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .social-media-content {
        padding: 90px 40px;
        max-width: 1440px;
        margin: 0 auto;
        position: relative;
    }

    .social-media-content::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(212, 175, 125, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .social-header {
        margin-bottom: 60px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .social-title-group {
        gap: 15px;
    }

    .social-icon-title {
        width: 45px;
        height: 45px;
    }

    .social-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .social-follow-btn {
        padding: 16px 40px;
        font-size: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .social-follow-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s ease;
    }

    .social-follow-btn:hover::before {
        left: 100%;
    }

    .social-follow-btn:hover {
        background-color: var(--gold);
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(212, 175, 125, 0.3);
    }

    /* Desktop: Carousel mit Pfeil-Buttons */
    .social-reels {
        height: 1050px;
        /* kein max-width — volle Sectionbreite, Seitenvideos bis zum Rand */
    }

    .social-reel-item {
        width: 50%;
        left: 25%; /* zentriert: (100% - 50%) / 2 */
        z-index: 1;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        cursor: pointer;
    }

    /* Seiten-Videos auf Desktop: abgedunkelt */
    .social-reel-item.is-side .social-reel-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    /* Pfeil-Buttons */
    .social-carousel-btn {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(212, 175, 125, 0.5);
        border-radius: 50%;
        color: var(--gold);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s, border-color 0.2s;
    }

    .social-carousel-btn:hover {
        background-color: rgba(255, 255, 255, 0.18);
        border-color: var(--gold);
    }

    .social-carousel-prev { left: 24px; }
    .social-carousel-next { right: 24px; }

    .social-reel-ig {
        width: 28px;
        height: 28px;
    }

    .testimonials-section {
        padding: 90px 40px;
        max-width: 1440px;
        margin: 0 auto;
        position: relative;
    }

    .testimonials-section::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 80px;
        height: 60%;
        background: linear-gradient(90deg, transparent 0%, var(--primary-color) 100%);
        pointer-events: none;
        opacity: 0.9;
    }

    .testimonials-header {
        padding: 0 40px;
        margin-bottom: 40px;
    }

    .testimonials-nav {
        display: flex;
        gap: 10px;
    }

    .testimonials-nav-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: var(--gold);
    }

    .testimonials-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .testimonials-stars .star {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonials-carousel {
        padding: 15px 10px 25px;
        gap: 25px;
        overflow: hidden;
    }

    .testimonial-card {
        flex: 0 0 calc(30% - 17px);
        padding: 35px 30px;
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(212, 175, 125, 0.3);
    }

    .testimonial-text {
        font-size: 19px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-location {
        font-size: 12px;
    }

    .testimonial-verified {
        font-size: 12px;
    }
}
