/* =============================================================
   Nyaderm LP – Garance 30 dní
   ============================================================= */

:root {
    --lp-black:   #1a1a1a;
    --lp-cream:   #f7f4f0;
    --lp-warm:    #ede9e3;
    --lp-muted:   #6b6560;
    --lp-red:     #c0392b;
    --lp-border:  #e2ddd8;
    --lp-font:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --lp-max:     860px;
}


/* ── Reset ── */
.lp-garance,
.lp-garance * {
    box-sizing: border-box;
}

.lp-garance {
    font-family: var(--lp-font);
    color: var(--lp-black);
    background: #fff;
    line-height: 1.65;
}

.lp-garance img {
    display: block;
    max-width: 100%;
    height: auto;
}

.lp-garance a {
    color: inherit;
    text-decoration: none;
}

/* ── Container ── */
.lp-container {
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Shared section label ── */
.lp-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C58458;
    margin: 0 0 10px;
}

/* ── Section padding ── */
.lp-section {
    padding: 60px 0;
}

.lp-section--cream {
    background: var(--lp-cream);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.lp-section--dark {
    background: var(--lp-black);
    color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* ================================================================
   HERO – obrázek jako pozadí, text nahoře vlevo
   ================================================================ */
.lp-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

@media (max-width: 680px) {
    .lp-hero {
        min-height: 0;
        aspect-ratio: 388 / 581;
    }
}

.lp-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/pages/garance/garance-hero-banner.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
}

@media (max-width: 680px) {
    .lp-hero__bg {
        background-image: url('/images/pages/garance/garance-hero-banner-mobile.png');
    }
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.35) 50%,
        rgba(0,0,0,0.05) 100%
    );
    z-index: 1;
}

.lp-hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 32px;
    max-width: 520px;
}

@media (max-width: 680px) {
    .lp-hero__content {
        padding: 40px 20px;
    }
}

.lp-hero__title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
    color: #fff;
}

.lp-hero__sub {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.6;
}

/* Placeholder (bude nahrazeno fotkou) */
.lp-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--lp-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #bbb;
    font-size: 13px;
    font-family: var(--lp-font);
    min-height: 220px;
}

.lp-img-placeholder svg {
    opacity: 0.4;
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.lp-section-header {
    margin-bottom: 40px;
}

.lp-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.lp-icon-heart {
    color: var(--lp-red);
    flex-shrink: 0;
}

.lp-section-header--center {
    text-align: center;
}

.lp-section-header h2 {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.lp-section-header p:not(.lp-label) {
    font-size: 15px;
    color: var(--lp-muted);
    margin: 12px auto 0;
    max-width: 580px;
}

/* ================================================================
   SCIENTIST / ZA PRODUKTY STOJÍ ČESKÁ VĚDA
   ================================================================ */
.lp-scientist {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 640px) {
    .lp-scientist {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.lp-scientist__photo-wrap {
    position: relative;
}

.lp-scientist__photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
}

.lp-scientist__name {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 6px;
    color: var(--lp-black);
}

.lp-scientist__role {
    font-size: 14px;
    color: var(--lp-muted);
    margin: 0 0 24px;
}

.lp-scientist__quote {
    border-left: 3px solid var(--lp-black);
    padding: 0 0 0 20px;
    margin: 0 0 28px;
}

.lp-scientist__quote p {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.lp-scientist__credentials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-scientist__credentials li {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-scientist__credentials li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lp-scientist__icon {
    flex-shrink: 0;
    font-size: 16px;
}

/* ================================================================
   GARANČNÍ PROCES – TIMELINE
   ================================================================ */
.lp-section--dark .lp-section-header h2 {
    color: #fff;
}

.lp-section--dark .lp-section-header p:not([class]) {
    color: rgba(255,255,255,0.6);
}

.lp-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.lp-timeline__line {
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.2);
    z-index: 0;
}

.lp-timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-timeline__num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #C58458;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

.lp-timeline__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.lp-timeline__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.55;
}

/* ── Timeline FAQ / Accordion ── */
.lp-timeline-faq {
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.lp-timeline-faq__btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--lp-font);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-align: left;
    transition: color .2s;
}

.lp-timeline-faq__btn:hover {
    color: #fff;
}

.lp-timeline-faq__chevron {
    flex-shrink: 0;
    transition: transform .25s;
}

.lp-timeline-faq.is-open .lp-timeline-faq__chevron {
    transform: rotate(90deg);
}

.lp-timeline-faq__body {
    display: none;
    padding: 0 0 20px 20px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.lp-timeline-faq.is-open .lp-timeline-faq__body {
    display: block;
}

/* ── Timeline mobile ── */
@media (max-width: 680px) {
    .lp-timeline {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding: 20px 0 16px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .lp-timeline__line {
        top: 40px;
        left: 0;
        right: auto;
        width: 1000px;
        height: 3px;
        background: rgba(255,255,255,0.25);
    }

    .lp-timeline__step {
        flex: 0 0 200px;
        scroll-snap-align: start;
        padding-right: 20px;
    }

    .lp-timeline__num {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* ================================================================
   WHATSAPP CTA
   ================================================================ */
.lp-wa-section {
    text-align: center;
}

.lp-wa-section__pre {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 6px;
}

.lp-wa-section h2 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}

.lp-wa-section__sub {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin: 0 0 28px;
}

.lp-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff !important;
    color: var(--lp-black) !important;
    font-family: var(--lp-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: opacity .2s;
    text-decoration: none !important;
}

.lp-btn-wa:hover {
    opacity: 0.88;
}

.lp-wa-note {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 16px 0 0;
}

/* ================================================================
   TESTIMONIALS — Side by Side
   ================================================================ */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .lp-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ── Side-by-side photos ── */
.lp-sbs {
    display: grid;
    grid-template-columns: 1fr 3px 1fr;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.lp-sbs__photo {
    position: relative;
    overflow: hidden;
}

.lp-sbs__photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.lp-sbs__divider {
    background: #fff;
}

.lp-sbs__label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 20px;
}

.lp-sbs__label--after {
    left: auto;
    right: 10px;
}

/* ── Stars ── */
.lp-testimonial__stars {
    color: #F8B86D;
    font-size: 18px;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 10px;
}

.lp-testimonial__body {
    padding: 18px 20px 22px;
}

.lp-testimonial__text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 12px;
}

.lp-testimonial__text::before {
    content: '\201E';
}
.lp-testimonial__text::after {
    content: '\201C';
}

.lp-testimonial__name {
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-muted);
    letter-spacing: 0.06em;
}

/* ── Testimonials CTA ── */
.lp-testimonials__cta {
    text-align: center;
    margin-top: 40px;
}

.lp-btn-gold {
    display: inline-block;
    background: #C78459 !important;
    color: #fff !important;
    font-family: var(--lp-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none !important;
    transition: opacity .2s;
}

.lp-btn-gold:hover {
    opacity: 0.85;
}

.lp-testimonials__ig {
    font-size: 13px;
    color: var(--lp-muted);
    margin: 14px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lp-testimonials__ig a {
    font-weight: 600;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.lp-container--wide {
    max-width: 1060px;
}

.lp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 800px) {
    .lp-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .lp-products-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }
}

.lp-product-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lp-product-card__img-wrap {
    position: relative;
    background: var(--lp-warm);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-product-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: #C58458;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 2;
}

.lp-product-card__tag--popular {
    background: #C58458;
}

.lp-product-card__tag--luxus {
    background: #C58458;
}

.lp-product-card__tag--novinka {
    background: #C58458;
}

.lp-product-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lp-product-card__name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--lp-black);
}

.lp-product-card__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin: 0 0 10px;
}

.lp-product-card__list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.lp-product-card__list li {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    padding-left: 12px;
    position: relative;
}

.lp-product-card__list li::before {
    content: '·';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--lp-muted);
}

.lp-btn-gold--full {
    display: block;
    text-align: center;
    width: 100%;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.lp-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--lp-border);
}

.lp-faq-item {
    border-bottom: 1px solid var(--lp-border);
}

.lp-faq-item__btn {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: var(--lp-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--lp-black);
    text-align: left;
    transition: color .2s;
}

.lp-faq-item__btn:hover {
    color: var(--lp-muted);
}

.lp-faq-item__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform .25s;
}

.lp-faq-item__icon::before,
.lp-faq-item__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.lp-faq-item__icon::before {
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    transform: translateY(-50%);
}

.lp-faq-item__icon::after {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

.lp-faq-item.is-open .lp-faq-item__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.lp-faq-item__body {
    display: none;
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.75;
    color: #555;
}

.lp-faq-item.is-open .lp-faq-item__body {
    display: block;
}

/* ================================================================
   FINAL CTA
   ================================================================ */
.lp-final-cta {
    background: var(--lp-cream);
    padding: 72px 20px 80px;
    text-align: center;
}

.lp-final-cta__seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90px;
    height: 90px;
    background: var(--lp-black);
    border-radius: 50%;
    margin: 0 auto 28px;
    border: 3px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.lp-final-cta__days {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.lp-final-cta__seal-text {
    font-size: 8px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}

.lp-final-cta__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.2;
    color: var(--lp-black);
}

.lp-final-cta__sub {
    font-size: 16px;
    color: var(--lp-muted);
    margin: 0 0 36px;
}

.lp-final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.lp-final-cta__or {
    font-size: 13px;
    color: var(--lp-muted);
}

.lp-final-cta__wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-black) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.lp-final-cta__wa:hover {
    opacity: 0.7;
}

.lp-final-cta__note {
    font-size: 13px;
    color: var(--lp-muted);
    margin: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.lp-btn-primary {
    display: inline-block;
    background: var(--lp-black) !important;
    color: #fff !important;
    font-family: var(--lp-font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 40px;
    border-radius: 3px;
    text-decoration: none !important;
    transition: opacity .2s;
}

.lp-btn-primary:hover {
    opacity: 0.82;
}

/* ── Testimonial card ── */
.lp-testimonial {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.lp-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ================================================================
   PODMÍNKY GARANCE – accordion body styling
   ================================================================ */
.lp-timeline-faq__body--conditions h4 {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin: 20px 0 10px;
    letter-spacing: 0.04em;
}

.lp-timeline-faq__body--conditions h4:first-of-type {
    margin-top: 16px;
}

.lp-timeline-faq__body--conditions ul,
.lp-timeline-faq__body--conditions ol {
    margin: 0 0 12px;
    padding-left: 20px;
}

.lp-timeline-faq__body--conditions li {
    margin-bottom: 6px;
    line-height: 1.7;
}

.lp-timeline-faq__body--conditions .lp-timeline-faq__contact {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}

.lp-timeline-faq__body--conditions .lp-timeline-faq__contact a {
    color: #C58458;
    text-decoration: underline;
    text-underline-offset: 2px;
}
