/* -------------------------------------------------------------
   DESIGN SYSTEM & VARIABLES (IVORY/PAPER AESTHETIC)
------------------------------------------------------------- */
:root {
    --paper: #FAF6F0;
    --white: #FFFFFF;
    --ink: #2B2A28;
    --sage: #6E7D5E;
    --gold: #B8905A;
    --rose: #C17B72;
    --ink-light: rgba(43, 42, 40, 0.7);
    --ink-muted: rgba(43, 42, 40, 0.4);
    --ink-border: rgba(43, 42, 40, 0.1);
    --shadow-sm: 0 2px 8px rgba(43, 42, 40, 0.04);
    --shadow-md: 0 8px 24px rgba(43, 42, 40, 0.06);
    --shadow-lg: 0 16px 40px rgba(43, 42, 40, 0.1);
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--paper);
    color: var(--ink);
    font-family: 'Public Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-width-md {
    max-width: 800px;
}

/* Typography Utility Classes */
.font-display {
    font-family: 'Fraunces', serif;
}

.font-body {
    font-family: 'Public Sans', sans-serif;
}

.font-mono {
    font-family: 'IBM Plex Mono', monospace;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.text-center { text-center: center; text-align: center; }
.text-muted { color: var(--ink-light); }
.text-muted-light { color: rgba(250, 246, 240, 0.7); }
.text-sage { color: var(--sage); }
.text-gold { color: var(--gold); }
.text-rose { color: var(--rose); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.mt-4 { margin-top: 16px; }

/* -------------------------------------------------------------
   BUTTONS
------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-sage {
    background-color: var(--sage);
    color: var(--white);
}

.btn-sage:hover {
    background-color: #5d6b50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 125, 94, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--ink-border);
    color: var(--ink);
}

.btn-outline:hover {
    background-color: rgba(43, 42, 40, 0.03);
    border-color: var(--ink);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border: 1px solid rgba(250, 246, 240, 0.2);
    color: var(--paper);
}

.btn-outline-white:hover {
    background-color: rgba(250, 246, 240, 0.08);
    border-color: var(--paper);
    transform: translateY(-2px);
}

.btn-text {
    font-weight: 600;
    font-size: 0.875rem;
}

.btn-text:hover {
    color: var(--sage);
}

/* -------------------------------------------------------------
   NAVBAR
------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ink-border);
    padding: 16px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background-color: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-light);
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* -------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------- */
.hero {
    padding: 80px 0 100px 0;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.badge {
    display: inline-block;
    background-color: rgba(110, 125, 94, 0.1);
    color: var(--sage);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--ink-light);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Hero Mockup Card Styling */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    background-color: var(--white);
    border: 1px solid var(--ink-border);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.mockup-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.mockup-header {
    background-color: rgba(43, 42, 40, 0.02);
    border-bottom: 1px solid var(--ink-border);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--ink-muted);
}

.mockup-url {
    font-size: 0.65rem;
    color: var(--ink-muted);
    background-color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--ink-border);
    width: 100%;
    text-align: center;
}

.mockup-content {
    padding: 30px 24px;
}

.mockup-profile {
    text-align: center;
    margin-bottom: 30px;
}

.mockup-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--white);
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 600;
}

.mockup-profile h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.mockup-profile p {
    font-size: 0.75rem;
    color: var(--ink-light);
}

.mockup-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-item {
    background-color: var(--white);
    border: 1px solid var(--ink-border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.mockup-item-img {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.mockup-item-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.mockup-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.mockup-item-info span {
    font-size: 0.7rem;
    color: var(--ink-light);
}

.mockup-progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--paper);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.mockup-progress-bar span {
    display: block;
    height: 100%;
    background-color: var(--sage);
    border-radius: 10px;
}

.mockup-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-item-footer span {
    font-size: 0.75rem;
    font-weight: 500;
}

.mockup-btn {
    border: none;
    background-color: var(--sage);
    color: var(--white);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

/* -------------------------------------------------------------
   TRUST BAR
------------------------------------------------------------- */
.trust-bar {
    padding: 40px 0;
    border-top: 1px solid var(--ink-border);
    border-bottom: 1px solid var(--ink-border);
}

.stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background-color: rgba(99, 91, 255, 0.05);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(99, 91, 255, 0.15);
    color: #635bff;
}

.stripe-logo {
    display: block;
}

.stripe-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* -------------------------------------------------------------
   SECTION HEADINGS
------------------------------------------------------------- */
.section-title {
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* -------------------------------------------------------------
   FEATURES SECTION
------------------------------------------------------------- */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--ink-border);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--sage);
}

.feature-icon {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--ink-light);
}

/* -------------------------------------------------------------
   HOW IT WORKS
------------------------------------------------------------- */
.how-it-works {
    padding: 100px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    position: relative;
    padding-top: 30px;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(184, 144, 90, 0.15);
    position: absolute;
    top: -24px;
    left: 0;
    line-height: 1;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--ink-light);
    position: relative;
    z-index: 2;
}

/* -------------------------------------------------------------
   PRICING SECTION
------------------------------------------------------------- */
.pricing {
    padding: 100px 0;
}

/* Billing Toggle Slider */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.toggle-container span {
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.toggle-container span.active {
    opacity: 1;
    color: var(--ink);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--ink-border);
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: .3s;
}

input:checked + .slider {
    background-color: var(--sage);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--ink-border);
    border-radius: 24px;
    padding: 50px 40px;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular:hover {
    box-shadow: var(--shadow-lg);
}

.ribbon {
    background-color: var(--gold);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 30px;
    position: absolute;
    top: 24px;
    right: 24px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-card p {
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    letter-spacing: -0.03em;
}

.price .currency {
    font-size: 2rem;
    font-weight: 500;
    align-self: flex-start;
    margin-top: 4px;
}

.price .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-light);
    margin-left: 6px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    border-top: 1px solid var(--ink-border);
    padding-top: 30px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.875rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-light);
}

.pricing-features li strong {
    color: var(--ink);
}

.pricing-features li span {
    color: var(--sage);
    font-weight: 700;
}

/* -------------------------------------------------------------
   FAQ SECTION
------------------------------------------------------------- */
.faq {
    padding: 100px 0;
}

.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--paper);
    border: 1px solid var(--ink-border);
    border-radius: 16px;
    padding: 20px 24px;
    transition: var(--transition-smooth);
}

.faq-item[open] {
    background-color: var(--white);
    border-color: var(--gold);
}

.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: "+";
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item[open] summary:after {
    content: "−";
    transform: rotate(180deg);
}

.faq-content {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--ink-light);
    border-top: 1px solid var(--ink-border);
    padding-top: 16px;
}

/* -------------------------------------------------------------
   CTA SECTION
------------------------------------------------------------- */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-ink {
    background-color: var(--ink);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.footer {
    background-color: var(--white);
    border-top: 1px solid var(--ink-border);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 360px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col h4 {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--ink-light);
}

.footer-col a:hover {
    color: var(--sage);
}

.footer-bottom {
    border-top: 1px solid var(--ink-border);
    padding-top: 30px;
}

/* -------------------------------------------------------------
   ANIMATIONS & SCROLL EFFECT UTILITIES
------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-up-delayed {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.animate-fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Scroll Trigger Class (Intersection Observer) */
.animate-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
------------------------------------------------------------- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* -------------------------------------------------------------
   MODALS (POPUP DI ACCESSO E REGISTRAZIONE)
------------------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.open {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 42, 40, 0.45);
    backdrop-filter: blur(8px);
}

.modal-content-wrapper {
    position: relative;
    z-index: 1001;
    background-color: var(--white);
    border: 1px solid var(--ink-border);
    border-radius: 28px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalScaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalScaleIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--ink-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--ink);
}

.modal-card {
    padding: 40px 30px;
}

.modal-card h3 {
    font-size: 1.85rem;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.modal-card p {
    margin-bottom: 24px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-light);
}

.form-group input {
    background-color: var(--white);
    border: 1px solid var(--ink-border);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: var(--ink);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(110, 125, 94, 0.15);
}

.slug-input-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--paper);
    border: 1px solid var(--ink-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.slug-input-wrapper:focus-within {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(110, 125, 94, 0.15);
}

.slug-input-wrapper span {
    font-size: 0.75rem;
    color: var(--ink-muted);
    padding-left: 14px;
    user-select: none;
}

.slug-input-wrapper input {
    border: none;
    background-color: transparent;
    padding-left: 4px;
    width: 100%;
}

.slug-input-wrapper input:focus {
    box-shadow: none;
}

.error-message {
    font-size: 0.8rem;
    color: var(--rose);
    font-weight: 500;
}

/* -------------------------------------------------------------
   ADDITIONAL MODAL ELEMENTS (PASSWORD TOGGLE, CONSENTS, COOKIES)
------------------------------------------------------------- */
.label-wrapper-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.password-input-container {
    position: relative;
    width: 100%;
}

.password-input-container input {
    width: 100%;
    padding-right: 44px;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.consent-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--ink-light);
    line-height: 1.4;
}

.consent-item input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--sage);
    cursor: pointer;
}

.underline-link {
    text-decoration: underline;
}

.underline-link:hover {
    color: var(--gold);
}

.legal-scroll {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid var(--ink-border);
    border-radius: 12px;
    padding: 16px;
    background-color: var(--paper);
}

.cookie-preference-center {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-pref-item {
    background-color: var(--paper);
    border: 1px solid var(--ink-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cookie-pref-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-pref-item input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

/* -------------------------------------------------------------
   COOKIE BANNER
------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid var(--ink-border);
    border-radius: 20px;
    padding: 24px;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-banner-actions .btn {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: calc(100% - 32px);
    }
}

/* -------------------------------------------------------------
   SEARCH / FIND LIST SECTION FOR GUESTS
------------------------------------------------------------- */
.find-list-section {
    padding: 40px 0;
    border-top: 1px solid var(--ink-border);
    border-bottom: 1px solid var(--ink-border);
}

.find-list-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.find-list-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.find-list-content p {
    font-size: 0.85rem;
}

.find-store-form {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-grow: 1;
    max-width: 500px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--paper);
    border: 1px solid var(--ink-border);
    border-radius: 12px;
    overflow: hidden;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.search-input-wrapper:focus-within {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(110, 125, 94, 0.15);
}

.search-input-wrapper span {
    font-size: 0.75rem;
    color: var(--ink-muted);
    padding-left: 14px;
    user-select: none;
}

.search-input-wrapper input {
    border: none;
    background-color: transparent;
    padding: 12px 14px 12px 4px;
    font-size: 0.875rem;
    color: var(--ink);
    outline: none;
    width: 100%;
}

@media (max-width: 992px) {
    .find-list-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    
    .find-store-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .find-store-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .find-store-form .btn {
        width: 100%;
    }
}
