:root {
    --bg-color: #FDFBF7;
    --surface-color: #ffffff;
    --text-main: #111111;
    --text-muted: #666666;
    --accent-color: #FF4D00;
    --border-color: #E5E0D8;

    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1366px;
    --section-padding: 6rem 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo,
.plan-price,
.step-number {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--accent-color);
    font-style: italic;
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
}

.logo .dot {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.btn-nav {
    background: var(--text-main);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: transform 0.2s !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-head);
    font-size: 2rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
    width: 100%;
}

#submit-order-btn {
    font-size: 1rem;
}

.btn-outline:hover {
    border-color: var(--text-main);
    background: var(--surface-color);
}

.hero {
    padding: 3rem 5% 6rem;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    min-height: auto;
}

.hero-text {
    max-width: 600px;
}

.badge-pill {
    display: inline-block;
    background: rgba(255, 77, 0, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-sub {
    margin: 2.5rem 0;
    line-height: 1.6;
    font-size: 1.15rem;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #EEE;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
    max-width: 600px;
    margin-top: 1rem;
    position: relative;
}

.hero-branding-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.hero-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #eee;
}

.hero-branding-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
}

.hero-restaurant-text {
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0;
    color: var(--text-main);
    display: block;
}

.hero-source-text {
    font-size: 0.85rem;
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logos-strip {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.8rem 5%;
    text-align: center;
}

.logos-strip p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.0rem;
    opacity: 1.0;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 1.0;
}

.platform-logo {
    height: 18px;
    width: auto;
    opacity: 1.0;
}

.process {
    padding: var(--section-padding);
    background-color: #ffffff;
}

.process-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.step-number {
    font-size: 4rem;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonials {
    background: linear-gradient(to bottom, #ffffff, #fff0e6);
    color: var(--text-main);
    padding: 4rem 5% 6rem;
}

.testimonials .section-header p {
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 77, 0, 0.08);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    color: var(--accent-color);
}

.platform-icon {
    font-size: 1rem;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 2rem;
    font-family: var(--font-head);
    font-weight: 500;
}

.review-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-main);
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

    .review-text {
        font-size: 1.1rem;
    }
}

.pricing-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Data Not Found State */
.pricing-split-layout.no-data {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.pricing-split-layout.no-data .order-form-container {
    display: none;
}

.pricing-split-layout.no-data .pricing-info {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-split-layout.no-data .pricing-benefits li {
    justify-content: center;
}

.pricing-split-layout.no-data .price-display,
.pricing-split-layout.no-data .discount-display,
.pricing-split-layout.no-data .pricing-note {
    justify-content: center;
}

.pricing-info {
    padding-top: 2rem;
}

.sticky-content {
    position: sticky;
    top: 100px;
}

.price-display {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
}

.price-display .currency {
    font-size: 2.5rem;
    vertical-align: super;
}

.price-display .unit {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 0.5rem;
}

.pricing-benefits {
    list-style: none;
    margin-top: 3rem;
}

.pricing-benefits li {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-benefits .icon {
    font-size: 1.5rem;
    background: #fff0e6;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-benefits strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.pricing-benefits p {
    font-size: 0.9rem;
    margin: 0;
}

.order-form-container {
    background: white;
    padding: 1.2rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.restaurant-branding {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.client-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 0px;
    border: 1px solid #eee;
}

.client-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.client-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.input-field {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
}

/* Docked Payment Bar */
.docked-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 5%;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.docked-bar.visible {
    transform: translateY(0);
}

.docked-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.docked-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.big-final-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

.docked-details-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
}

.docked-count-small {
    font-size: 0.95rem;
    color: #666;
}

.docked-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.striked-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.discount-label {
    background-color: #218c53;
    color: white;
    font-size: 0.95rem;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 700;
    line-height: 1;
}

.docked-label {
    font-weight: 600;
    color: var(--text-muted);
}

.docked-price {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.docked-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-primary.compact {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

/* Responsive Docked Bar */
@media (max-width: 600px) {
    .docked-content {
        flex-direction: column;
        gap: 1rem;
    }

    .docked-bar {
        padding: 1rem 5%;
    }

    .btn-primary.compact {
        width: 100%;
    }
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-color);
}

.input-field.readonly {
    background: #f9f9f9;
    color: var(--text-muted);
    cursor: not-allowed;
}

/* Dish Table - Complete Rewrite */
.dish-table {
    width: 100%;
}

.dish-table-header {
    display: grid;
    grid-template-columns: 40px 1fr 120px;
    align-items: center;
    padding: 0.8rem 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.dish-table-col-checkbox {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dish-table-col-name {
    grid-column: 2;
    font-weight: 600;
    font-size: 0.95rem;
}

.dish-table-col-status {
    grid-column: 3;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.dish-table-body {
    width: 100%;
}

.dish-table-row {
    display: grid;
    grid-template-columns: 40px 1fr 120px;
    align-items: center;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.dish-table-row:hover {
    background: #f9f9f9;
}

.dish-table-row.hidden {
    display: none;
}

.dish-table-row .dish-table-col-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dish-table-row .dish-table-col-name {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.2;
}

.dish-table-row .dish-table-col-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dish-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
    cursor: pointer;
    margin: 0;
}

.status-icon {
    font-size: 1rem;
    font-weight: bold;
}

.status-icon.has-image {
    color: #2ecc71;
}

.status-icon.no-image {
    color: #e74c3c;
    opacity: 0.5;
}

.dish-source {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 0.2rem;
}

.show-more-container {
    text-align: left;
    padding-top: 1.5rem;
}

.btn-text {
    background: #f0f0f0;
    border: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: background 0.2s;
    display: inline-block;
}

.btn-text:hover {
    background: #e0e0e0;
}

.form-footer .btn-primary {
    width: 100%;
    display: block;
    text-align: center;
}

.total-estimation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

#totalPrice {
    color: var(--accent-color);
    font-size: 1.5rem;
}

@media (max-width: 900px) {
    .pricing-split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-info {
        padding-top: 0;
    }

    .sticky-content {
        position: static;
    }
}

.pricing {
    padding: var(--section-padding);
    max-width: var(--container-width);
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-single-container {
    display: flex;
    justify-content: center;
}

.pricing-single-card {
    background: var(--surface-color);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.pricing-single-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.price-tag {
    font-family: var(--font-head);
    font-size: 6rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-tag .currency {
    font-size: 3rem;
    vertical-align: super;
}

.price-tag .unit {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-sub {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.feature .check {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-cta .btn-primary {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    width: 100%;
}

.micro-copy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .pricing-single-card {
        padding: 2.5rem;
    }

    .price-tag {
        font-size: 4.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.footer {
    background: var(--surface-color);
    padding: 4rem 5% 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-left {
    align-items: flex-start;
    text-align: left;
}

.footer-right {
    align-items: flex-end;
    text-align: right;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .cta-wrapper {
        align-items: stretch;
        text-align: left;
        margin: 0 auto;
    }

    .hero-grid {
        grid-template-rows: repeat(2, 180px);
    }

    /* Footer Mobile Alignment */
    .footer {
        text-align: center;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .footer-left,
    .footer-right {
        align-items: center;
        text-align: center;
        width: 100%;
        /* Ensure full width for centering */
    }

    .footer h3 {
        text-align: center;
    }

    .cities-list {
        justify-content: center;
    }

    .pricing-note {
        justify-content: center;
        text-align: center;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-nav-btn {
        display: inline-block !important;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        background-color: var(--text-main);
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        border: none;
    }

    h1 {
        font-size: 3rem;
    }

    .review-card {
        min-width: 280px;
    }
}

.welcome-ribbon {
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.01em;
    text-align: center;
    color: white;
    background: linear-gradient(90deg, #0f3d26, #218c53);
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 10px rgba(15, 61, 38, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    background-color: var(--surface-color);
    padding: 4rem 5%;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.city-item {
    white-space: nowrap;
}

.city-separator {
    color: var(--accent-color);
    opacity: 0.5;
    font-weight: 300;
}

.copyright {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.cities-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-note {
    margin-top: 2rem;
    padding: 1rem 0;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.pricing-note .note-icon {
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-note p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
}

.legal-content h1 {
    margin-bottom: 1rem;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #333;
}

.modal p {
    margin-bottom: 1.5rem;
    color: #666;
}

.modal .form-group {
    margin-bottom: 1rem;
}

.modal label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.modal input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.modal .form-row {
    display: flex;
    gap: 1rem;
}

.modal .form-row .form-group {
    flex: 1;
}

.modal .submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #ff4757;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.modal .submit-btn:hover {
    background-color: #ff6b81;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-overlay.visible .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

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

.modal-content h2 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.modal-content p {
    margin-bottom: 2rem;
    color: #666;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Discount Display */
.discount-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.original-price {
    text-decoration: line-through;
    color: #000;
}

.discount-badge {
    background-color: #218c53;
    color: white;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 6px;
    font-size: 1.2rem;
}

.snowflake {
    position: fixed;
    top: -10px;
    background-color: #eeeeee;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(-10px);
    }

    100% {
        transform: translateY(110vh) translateX(10px);
    }
}