/* ============================================
   PHOTOBOOK LANDING — PIXORY-STYLE LAYOUT
   Product page: image carousel + info panel
   Palette: #FFFFFF, #F4F4F5 (light gray), #000000, #D4B896 (gold)
   Fonts: Playfair Display + Inter
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FFFFFF;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea { font-family: 'Inter', sans-serif; }

:root {
    --white: #FFFFFF;
    --bg-light: #F4F4F5;
    --black: #000000;
    --black-soft: #111111;
    --gold: #D4B896;
    --gold-light: #F5EDE3;
    --rose: #F9E4E4;
    --rose-light: #FFF5F5;
    --gray: #666;
    --gray-text: #444;
    --gray-muted: #999;
    --gray-border: #E5E5E5;
    --red: #E53E3E;
    --green-whatsapp: #25D366;
    --peach: #FEF9EC;
    --transition: 0.3s ease;
}

/* ============================================
   1. ANNOUNCEMENT BAR — thin top strip
   ============================================ */
.announcement-bar {
    width: 100%;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    text-align: center;
    letter-spacing: 0.3px;
}

.announcement-bar__icon {
    font-size: 16px;
}

/* ============================================
   2. HEADER / NAV
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    height: 56px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__menu-btn {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px;
}

.header__menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
}

.header__logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header__logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.header__nav {
    display: none;
}

/* ============================================
   4. PRODUCT IMAGE CAROUSEL
   ============================================ */
.product-gallery {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.product-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-gallery__main img.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.gallery-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gallery-nav:hover {
    background: var(--bg-light);
}

.gallery-nav--prev { left: 12px; }
.gallery-nav--next { right: 12px; }

/* Product Gallery Overlays */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    text-align: center;
    background: rgba(0,0,0,0.1); 
    color: var(--white);
    transition: opacity 0.3s ease;
    pointer-events: none;
    opacity: 0; 
    z-index: 4;
}

.gallery-overlay.active {
    opacity: 1;
}

/* Slide 2 & 6: text style */
.overlay-text--light {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    max-width: 85%;
    line-height: 1.3;
}

/* Slide 3: Process layout overlay template */
.overlay-process {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: 100%;
    justify-content: center;
    background: rgba(255,255,255,0.92); 
    color: var(--black);
    padding: 24px;
    border-radius: 12px;
}

.overlay-process__title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    color: var(--black);
}

.overlay-process__steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    width: 100%;
}

.overlay-process__step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-text);
}

.overlay-process__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

/* Thumbnail strip */
.product-gallery__thumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.product-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.thumb-arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    background: var(--white);
}

.thumb-item {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    background: var(--bg-light);
}

.thumb-item.active {
    border-color: var(--black);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   5. PRODUCT INFO PANEL — light gray rounded
   ============================================ */
.product-info {
    background: var(--bg-light);
    border-radius: 20px 20px 0 0;
    padding: 28px 20px 32px;
    margin: 0 6px;
    position: relative;
}

.product-info__title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-text);
}

.product-info__stars {
    color: var(--black);
    font-size: 16px;
    letter-spacing: 1px;
}

/* Pricing line */
.product-info__pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pricing__pages {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
}

.pricing__current {
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
}

.pricing__original {
    font-size: 16px;
    color: var(--gray-muted);
    text-decoration: line-through;
}

.pricing__badge {
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
}

/* ============================================
   6. OFFER CARDS — inline 3-column
   ============================================ */
.offers-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.offers-divider::before,
.offers-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-border);
}

.offers-divider__text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    font-style: italic;
}

.offer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.offer-tile {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 20px 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    position: relative;
    text-align: center;
}

.offer-tile:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.offer-tile.selected {
    border-color: var(--black);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.offer-tile__free-tag {
    position: absolute;
    top: -10px;
    right: -4px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.offer-tile__image {
    height: 90px;
    object-fit: contain;
}

.offer-tile__save {
    background: var(--rose);
    color: #C0441E;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}

.offer-tile__label {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-muted);
}

.offer-tile.selected .offer-tile__label {
    color: var(--black);
}

.offers-note {
    font-size: 12px;
    color: var(--gray-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.offers-note span {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border: 1px solid var(--gray-border);
    border-radius: 999px;
    font-size: 11px;
}

/* ============================================
   7. PRODUCT DESCRIPTION TEXT
   ============================================ */
.product-desc {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ============================================
   8. DESTINATION PICKER — Pixory list dropdown
   ============================================ */
.dest-picker {
    margin-bottom: 16px;
    position: relative;
}

.dest-picker__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dest-picker__required {
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    background: #FEE2E2;
    padding: 2px 8px;
    border-radius: 999px;
}

.dest-picker__required.hidden {
    display: none;
}

/* Trigger button */
.dest-list-btn {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-border);
    border-radius: 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color var(--transition);
}

.dest-list-btn:hover,
.dest-list-btn.active {
    border-color: var(--black);
}

.dest-list-btn.has-value {
    border-color: var(--black);
}

.dest-list-btn__icon {
    width: 40px;
    height: 52px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.dest-list-btn__placeholder-icon {
    width: 40px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-radius: 6px;
}

.dest-list-btn__text {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    text-align: left;
}

.dest-list-btn__chevron {
    font-size: 16px;
    color: var(--gray);
    transition: transform var(--transition);
}

.dest-list-btn.active .dest-list-btn__chevron {
    transform: rotate(180deg);
}

/* Custom destination input */
.dest-custom-input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    margin-top: 8px;
    background: var(--gold-light);
    transition: border-color var(--transition);
    font-family: 'Inter', sans-serif;
}

.dest-custom-input::placeholder {
    color: var(--gray-muted);
}

.dest-custom-input:focus {
    border-color: var(--black);
}

/* Dropdown list */
.dest-list-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-radius: 14px;
    margin-top: 6px;
}

.dest-list-dropdown.open {
    max-height: 400px;
    border: 1px solid var(--gray-border);
    overflow-y: auto;
}

.dest-list-dropdown__search {
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-border);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
}

.dest-list-search {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    background: var(--bg-light);
    font-family: 'Inter', sans-serif;
}

.dest-list-search:focus {
    border-color: var(--black);
}

/* List items */
.dest-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid #F0F0F0;
    transition: background var(--transition);
}

.dest-list-item:last-child {
    border-bottom: none;
}

.dest-list-item:hover {
    background: var(--bg-light);
}

.dest-list-item.selected {
    background: var(--gold-light);
}

.dest-list-item__icon {
    width: 40px;
    height: 50px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

.dest-list-item__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.dest-list-item--autre {
    border-top: 2px dashed var(--gray-border);
}

.dest-list-item__autre-icon {
    width: 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-radius: 6px;
}

/* ============================================
   9. PRIMARY CTA BUTTONS
   ============================================ */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-primary {
    width: 100%;
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--black);
    transition: all var(--transition);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary--filled {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary--filled:hover {
    background: #C5A880;
    border-color: #C5A880;
}

.btn-primary--outline {
    background: var(--white);
    color: var(--black);
}

.btn-primary--outline:hover {
    background: var(--bg-light);
}

/* ============================================
   10. TRUST STRIP — below CTAs
   ============================================ */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 16px 0;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
}

.trust-strip__item span:first-child {
    font-size: 14px;
}

/* ============================================
   11. HOW IT WORKS — below product
   ============================================ */
.how-section {
    padding: 48px 20px;
    background: var(--white);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 36px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.how-step__icon {
    width: 48px;
    height: 48px;
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    margin: 0 auto 16px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.how-step__title {
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
}

.how-step__desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================
   12. REVIEWS — Swipeable Carousel
   ============================================ */
.reviews-section {
    padding: 48px 0 40px;
    background: var(--bg-light);
    overflow: hidden;
}

.reviews-section .section-title {
    margin-bottom: 4px;
}

.reviews-header {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 28px;
}

.reviews-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    background: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    margin-top: 8px;
}

/* Carousel container */
.reviews-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.reviews-carousel:active {
    cursor: grabbing;
}

.reviews-carousel__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
}

/* Individual slide */
.review-slide {
    min-width: 85%;
    max-width: 85%;
    margin: 0 8px;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-slide:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.review-slide__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-light);
}

.review-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-slide__content {
    padding: 16px 18px 18px;
}

.review-slide__stars {
    color: var(--black);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-slide__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 14px;
    font-style: italic;
}

.review-slide__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-slide__avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.review-slide__name {
    font-weight: 700;
    font-size: 13px;
    color: var(--black);
}

.review-slide__city {
    font-size: 11px;
    color: var(--gray-muted);
}

/* Arrow buttons */
.reviews-carousel__arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all var(--transition);
}

.reviews-carousel__arrow:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.reviews-carousel__arrow--prev { left: 10px; }
.reviews-carousel__arrow--next { right: 10px; }

/* Dot indicators */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px 0 0;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.reviews-dot.active {
    background: var(--black);
    width: 24px;
    border-radius: 999px;
}

/* ============================================
   12b. SEO CONTENT BLOCKS
   ============================================ */
.content-block {
    display: flex;
    flex-direction: column;
    padding: 48px 20px;
    background: var(--white);
    gap: 32px;
    border-bottom: 1px solid var(--gray-border);
}

.content-block--reverse {
    background: var(--bg-light);
}

.content-block__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.content-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-block__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-block__eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.content-block__title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.content-block__desc {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

.content-block__checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-block__checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black-soft);
}

.check-icon {
    color: var(--gold);
    font-weight: bold;
}

@media (min-width: 768px) {
    .content-block {
        flex-direction: row;
        align-items: center;
        padding: 80px 40px;
        gap: 60px;
        max-width: 1100px;
        margin: 0 auto;
        border-bottom: none;
    }

    .content-block--reverse {
        flex-direction: row-reverse;
    }

    .content-block__image {
        flex: 1;
        max-width: 500px;
    }

    .content-block__text {
        flex: 1;
    }

    .content-block__title {
        font-size: 36px;
    }
}

/* ============================================
   13. FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: 48px 20px;
    background: var(--white);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
}

.faq-item__icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    color: var(--gray);
}

.faq-item.active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding-bottom: 18px;
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 20px;
}

.footer__container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__logo {
    display: flex;
    align-items: center;
}

.footer__logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
    /* Invert colors so the dark logo shows up on the black footer background */
    filter: invert(1);
    mix-blend-mode: screen; /* Fixes white background blocks from the logo image */
}

.footer__links {
    display: flex;
    gap: 20px;
}

.footer__links a {
    font-size: 13px;
    color: var(--gray-muted);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__copy {
    width: 100%;
    text-align: center;
    font-size: 11px;
    color: #555;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* ============================================
   15. STICKY MOBILE CTA
   ============================================ */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-border);
    z-index: 500;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.sticky-mobile-cta.hidden {
    display: none !important;
}

.sticky-mobile-cta .btn-primary {
    padding: 14px;
    font-size: 15px;
}

/* ============================================
   MODAL / POPUP FORM
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 28px 20px 32px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.35s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.modal__handle {
    width: 40px;
    height: 4px;
    background: var(--gray-border);
    border-radius: 999px;
    margin: 0 auto 16px;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

.modal__header {
    text-align: center;
    margin-bottom: 24px;
}

.modal__emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.modal__title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.modal__subtitle {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.form-divider {
    height: 1px;
    background: var(--gray-border);
    margin: 20px 0;
}

.label-optional {
    font-weight: 400;
    color: var(--gray-muted);
    font-size: 12px;
}

.form-footer-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-muted);
    margin-top: 12px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.form-group .error-msg {
    font-size: 11px;
    color: var(--red);
    margin-top: 4px;
    display: none;
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: var(--red);
}

.form-group.has-error .error-msg {
    display: block;
}

/* Radio buttons — pill style */
.radio-row {
    display: flex;
    gap: 8px;
}

.radio-pill {
    flex: 1;
}

.radio-pill input[type="radio"] {
    display: none;
}

.radio-pill label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border: 2px solid var(--gray-border);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    margin-bottom: 0;
}

.radio-pill input[type="radio"]:checked + label {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: #C5A880;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--bg-light);
}

.thankyou__card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 28px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.thankyou__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.thankyou__title {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.thankyou__subtitle {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 28px;
}

.thankyou__steps {
    text-align: left;
    margin-bottom: 28px;
}

.thankyou__steps ol {
    list-style: decimal;
    padding-left: 20px;
}

.thankyou__steps li {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 6px;
}

.btn-whatsapp-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--green-whatsapp);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 14px;
    transition: all var(--transition);
}

.btn-whatsapp-lg:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

/* ============================================
   DESKTOP OVERRIDES (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
    .header__nav {
        display: flex;
        gap: 24px;
        font-size: 14px;
        font-weight: 600;
    }

    .header__menu-btn {
        display: none;
    }

    .header {
        padding: 0 40px;
    }

    /* Desktop: side-by-side layout */
    .product-layout {
        display: grid;
        grid-template-columns: 55% 45%;
        max-width: 1200px;
        margin: 0 auto;
        align-items: start;
    }

    .gallery-slider-row {
        display: flex;
        flex-direction: row-reverse;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
    }

    .product-gallery__main {
        flex: 1;
        aspect-ratio: 1/1;
    }

    .product-gallery__thumbs {
        flex-direction: column;
        width: 100px;
        max-height: 550px;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0 4px;
        gap: 12px;
        scrollbar-width: none;
    }

    .product-gallery__thumbs::-webkit-scrollbar {
        display: none;
    }

    .thumb-arrow {
        display: none !important;
    }

    .thumb-item {
        width: 80px;
        height: 80px;
    }

    /* 10. HOW IT WORKS inside Gallery sidebar */
    .product-gallery .how-section-aside {
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid var(--gray-border);
        width: 100%;
    }

    .product-gallery .how-section-aside .section-title {
        text-align: left;
        font-size: 22px;
        margin-bottom: 20px;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
    }

    .product-gallery .how-section-aside .how-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-gallery .how-section-aside .how-step {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
        background: transparent;
        padding: 0;
        box-shadow: none;
        opacity: 1;
    }

    .product-gallery .how-section-aside .how-step__icon {
        width: 32px;
        height: 32px;
        font-size: 32px;
        font-weight: 900;
        color: var(--gold);
        margin: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-gallery .how-section-aside .how-step__title {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .product-gallery .how-section-aside .how-step__desc {
        font-size: 13px;
        margin-top: 0;
        color: var(--gray-text);
    }

    .product-info {
        border-radius: 0;
        margin: 0;
        padding: 48px 64px;
        /* Removed postion: sticky and scroll limits to prevent iframe nested scrolls */
    }

    .product-info__title {
        font-size: 48px;
    }

    .offer-tile__image {
        height: 110px;
    }

    .how-steps {
        gap: 40px;
    }

    .reviews-carousel__track {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        transform: none !important;
    }

    .review-slide {
        min-width: 0;
        max-width: none;
        margin: 0;
    }

    .reviews-carousel__arrow, .reviews-dots {
        display: none !important;
    }

    .modal {
        border-radius: 20px;
        max-width: 480px;
        margin: auto;
    }

    .modal-overlay {
        align-items: center;
    }

    @keyframes modalSlideUp {
        from { opacity: 0; transform: translateY(30px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}

@media (min-width: 1024px) {
    .product-info__title {
        font-size: 46px;
    }

    .offer-tile__image {
        height: 130px;
    }
}

/* ============================================
   MOBILE (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
    .sticky-mobile-cta {
        display: block;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__container {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }

    body.modal-open {
        overflow: hidden;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ==========================================
   MOBILE MENU OVERLAY
   ========================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.4s ease;
}

.mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    backdrop-filter: blur(4px);
    transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__content {
    position: absolute;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: 4px 0 16px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu__content {
    transform: translateX(280px);
}

.mobile-menu__close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    color: var(--black);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    flex-grow: 1;
}

.mobile-menu__link {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-border);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--gold);
}

.mobile-menu__footer {
    padding-top: 20px;
    border-top: 1px solid var(--gray-border);
    width: 100%;
}

.mobile-menu__cta {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 14px;
    display: block;
}

/* ============================================
   NEW MOBILE "HOW IT WORKS" LAYOUT
   ============================================ */

/* Hide the new mobile section by default (on desktop) */
.how-it-works-mobile {
    display: none;
    padding: 40px 20px;
    background-color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.how-mobile-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.how-mobile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.how-mobile-card img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.how-mobile-card__content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.how-mobile-card__content p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

/* Base query to hide desktop aside on mobile */
@media (max-width: 1023px) {
    .desktop-only-how {
        display: none !important;
    }
    
    .how-it-works-mobile {
        display: block;
    }
}

/* Extra rule for horizontal layout on tablets if desired */
@media (min-width: 768px) and (max-width: 1023px) {
    .how-mobile-grid {
        flex-direction: row;
        gap: 20px;
    }
    .how-mobile-card img {
        max-width: 100%;
    }
}

/* ============================================
   APPLE QUALITY FULL-WIDTH FAQ
   ============================================ */
.faq-section {
    background-color: #FAFAFA;
    padding: 100px 20px;
    border-top: 1px solid #EAEAEA;
    width: 100%;
}
.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-section .section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    color: #111;
}
@media (max-width: 767px) {
    .faq-section { padding: 60px 20px; }
    .faq-section .section-title { font-size: 32px; margin-bottom: 40px; }
}
.faq-item {
    border-bottom: 1px solid #E0E0E0;
    padding: 30px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.faq-item:first-of-type {
    border-top: 1px solid #E0E0E0;
}
.faq-item__question {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}
.faq-item:hover .faq-item__question {
    color: var(--gold);
}
.faq-item__answer {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-item__answer {
    margin-top: 16px;
    max-height: 500px; /* arbitrary large value for transition */
    opacity: 1;
}

/* ============================================
   REVIEWS VISIBILITY
   ============================================ */
@media (min-width: 1024px) {
    .desktop-hide-reviews { display: none !important; }
}
@media (max-width: 1023px) {
    .mobile-hide-reviews { display: none !important; }
}

/* ============================================
   REVIEWS DESKTOP (Draggable Minimal Bar)
   ============================================ */
.reviews-desktop-bar {
    width: 100%;
    overflow-x: auto;
    background-color: #FAFAFA;
    padding: 30px 0;
    cursor: grab;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.reviews-desktop-bar::-webkit-scrollbar {
    display: none;
}
.reviews-desktop-bar:active {
    cursor: grabbing;
}
.desktop-reviews-track {
    display: flex;
    gap: 20px;
    padding: 0 40px;
    width: max-content;
}
.desktop-review-chip {
    background: #FFF;
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    padding: 12px 20px 12px 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    white-space: nowrap;
    user-select: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.desktop-review-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.desktop-review-chip .chip-img {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.desktop-review-chip .chip-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.desktop-review-chip .chip-stars {
    color: var(--gold);
    letter-spacing: 1px;
    font-size: 13px;
}
.desktop-review-chip .chip-text {
    font-weight: 500;
    color: #111;
    font-size: 15px;
}
.desktop-review-chip .chip-author {
    color: #888;
    font-weight: 400;
    font-size: 13px;
}

/* Ensure desktop-only-how is completely visible on desktop again */
@media (min-width: 1024px) {
    .desktop-only-how {
        display: block;
    }
}

/* ============================================
   WHATSAPP FLOATING WIDGET (Minimal)
   ============================================ */
.wa-float-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.wa-float-widget:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
@media (max-width: 1023px) {
    .wa-float-widget {
        bottom: 110px; /* Above the mobile sticky CTA */
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .wa-float-widget svg {
        width: 30px;
        height: 30px;
    }
}

/* Hide widget when any modal is open (Form or Mobile Menu) */
body.modal-open .wa-float-widget {
    display: none !important;
}
