:root {
    --primary: #1a1a1a;
    --accent: #dc2626;
    --soft-gray: #f8f9fa;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white);
    color: var(--primary);
    line-height: 1.6;
    font-weight: 400;
}

.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10rem;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: -0.01em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 210px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.order-section {
    display: flex;
    justify-self: end;
}

.order-btn {
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-subtle);
}

.order-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    height: clamp(300px, 35vw, 500px);
    width: auto;
    filter: drop-shadow(0 8px 32px rgba(220, 38, 38, 0.15));
}

.hero-cta {
    margin-top: 5rem;
    text-align: center;
}

.hero-order-btn {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: hidden;
}

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

.hero-order-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
    letter-spacing: 0.02em;
}

.hero-order-btn:hover::before {
    left: 100%;
}

/* Large Screen Optimization */
@media (min-width: 1200px) {
    .nav-links {
        gap: 8rem;
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .nav-links {
        gap: 10rem;
        max-width: 1600px;
    }
}

@media (min-width: 2000px) {
    .nav-links {
        gap: 12rem;
        max-width: 1800px;
    }
}

/* Menu Styles */
.menu-section {
    padding: 8rem 2rem 6rem;
    background: var(--white);
    min-height: 100vh;
}

.menu-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.menu-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.menu-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.menu-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-subtle);
    transform: translateY(-1px);
}

.item-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sandwich-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 2px);
    display: none;
}

.sandwich-photo[src]:not([src=""]) {
    display: block;
}

.sandwich-photo[src]:not([src=""]) + .image-placeholder {
    display: none;
}

.image-placeholder {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.item-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    min-width: 0;
}

.item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.item-badge {
    background: var(--accent);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.item-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.bread-selection {
    margin-bottom: 1.5rem;
}

.bread-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.bread-options {
    display: flex;
    gap: 1rem;
}

.bread-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.bread-option input[type="radio"] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.bread-option input[type="radio"]:checked {
    border-color: var(--accent);
}

.bread-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.bread-option:hover {
    color: var(--primary);
}

.bread-option input[type="radio"]:hover {
    border-color: var(--accent);
}

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

.item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.add-btn {
    background: var(--white);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Floating Cart */
.cart-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    width: 300px;
    max-height: 400px;
    z-index: 1000;
}

.cart-content {
    padding: 1.25rem;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

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

.cart-items {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.cart-total {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
    margin-bottom: 1rem;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.total-main {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.checkout-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.checkout-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* Cart Item Styles */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-btn {
    background: var(--soft-gray);
    color: var(--primary);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--accent);
    color: var(--white);
}

.quantity {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    min-width: 20px;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-container {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .nav-links {
        justify-content: center;
        gap: 2rem;
    }

    .hero-logo img {
        height: clamp(150px, 20vw, 250px);
    }

    .hero-cta {
        margin-top: 3.5rem;
    }

    .hero-order-btn {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }

    /* Menu Mobile */
    .menu-section {
        padding: 6rem 1rem 4rem;
    }

    .menu-title {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

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

    .menu-item {
        padding: 1.25rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .item-image {
        width: 100%;
        height: 160px;
    }

    .cart-float {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-height: 350px;
    }

    .cart-content {
        padding: 1.25rem;
    }

    .bread-options {
        flex-direction: column;
        gap: 0.75rem;
    }

    .bread-label {
        font-size: 0.8rem;
    }

    .bread-option {
        font-size: 0.8rem;
    }
}

/* About Page Styles */
.about-section {
    padding: 10rem 2rem 6rem;
    background: var(--white);
    min-height: 100vh;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 3rem;
}

.story-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--primary);
    margin: 0;
    text-align: justify;
    font-weight: 400;
}

.story-paragraph.lead {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--accent);
    font-weight: 500;
}

.about-cta {
    text-align: center;
    margin-top: 5rem;
}

.about-order-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

.about-order-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* About Page Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 8rem 1.5rem 4rem;
    }

    .about-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .about-header {
        margin-bottom: 3rem;
    }

    .story-paragraph {
        font-size: 1.1rem;
        line-height: 1.7;
        text-align: left;
    }

    .story-paragraph.lead {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .story-block {
        margin-bottom: 2.5rem;
    }

    .about-cta {
        margin-top: 3rem;
    }

    .about-order-btn {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 10rem 2rem 6rem;
    background: var(--white);
    min-height: 100vh;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.contact-form {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-subtle);
    width: 100%;
    max-width: 800px;
}

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

.form-row:last-child {
    margin-bottom: 0;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--primary);
    background: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-actions {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.contact-submit-btn {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.contact-submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.contact-info {
    background: var(--soft-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-items-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--primary);
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: nowrap;
}

.contact-item strong {
    color: var(--accent);
    font-weight: 600;
}

/* Contact Page Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 8rem 1.5rem 4rem;
    }

    .contact-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-content {
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem;
        max-width: none;
    }

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

    .contact-submit-btn {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
        max-width: none;
    }

    .contact-items-row {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Checkout Page Styles */
.checkout-section {
    padding: 8rem 2rem 6rem;
    background: var(--white);
    min-height: 100vh;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.checkout-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.checkout-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

/* Order Summary */
.order-summary {
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.summary-items {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.summary-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-item-name {
    font-weight: 500;
    color: var(--primary);
}

.summary-item-quantity {
    font-size: 0.9rem;
    color: var(--text-light);
}

.summary-item-total {
    font-weight: 600;
    color: var(--primary);
}

.summary-total {
    padding-top: 1rem;
    border-top: 2px solid var(--accent);
}

.delivery-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* Checkout Form */
.checkout-form-container {
    background: var(--white);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-section {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    background: var(--white);
    box-shadow: var(--shadow-subtle);
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.back-btn {
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.back-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.submit-order-btn {
    padding: 0.875rem 2.5rem;
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
    flex: 1;
    max-width: 300px;
}

.submit-order-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

/* Mobile Checkout Styles */
@media (max-width: 768px) {
    .checkout-section {
        padding: 6rem 1rem 4rem;
    }

    .checkout-title {
        font-size: 2.2rem;
    }

    .checkout-subtitle {
        font-size: 1.1rem;
    }

    .checkout-header {
        margin-bottom: 2.5rem;
    }

    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .order-summary {
        position: static;
        order: 2;
    }

    .checkout-form-container {
        order: 1;
    }

    .form-section {
        padding: 1.5rem;
    }

    .form-section-title {
        font-size: 1.2rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .submit-order-btn {
        max-width: none;
    }
}

/* Phone Input Styles */
.phone-input-container {
    display: flex;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.country-selector {
    padding: 0.875rem 0.75rem;
    border: none;
    background: var(--soft-gray);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    min-width: 120px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.country-selector:focus {
    background: #e2e8f0;
}

.phone-input-container input[type="tel"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 0.95rem;
    outline: none;
}

.phone-input-container input[type="tel"]:focus {
    background: var(--white);
}

.phone-input-container input[type="tel"]::placeholder {
    color: var(--text-light);
    font-style: italic;
}

/* Mobile Phone Input */
@media (max-width: 768px) {
    .country-selector {
        min-width: 100px;
        font-size: 0.85rem;
        padding: 0.875rem 0.5rem;
    }
    
    .phone-input-container input[type="tel"] {
        font-size: 0.9rem;
    }
}

/* Payment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.payment-modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-header h2 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.payment-info {
    text-align: center;
    padding: 1rem;
    background: var(--soft-gray);
    border-radius: var(--border-radius);
}

.payment-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.payment-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    background: var(--white);
    border: 2px dashed rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
}

.payment-instructions {
    background: var(--soft-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.payment-instructions h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-instructions ol {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--primary);
}

.payment-instructions li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.bank-info {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent);
}

.bank-info h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bank-info p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--primary);
}

.bank-info strong {
    font-weight: 600;
}

.payment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.payment-confirm-btn {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 250px;
}

.payment-confirm-btn:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.payment-cancel-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(0, 0, 0, 0.2);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 150px;
}

.payment-cancel-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Mobile Payment Modal */
@media (max-width: 768px) {
    .payment-modal {
        padding: 1rem;
    }

    .payment-modal-content {
        padding: 1.5rem;
        max-height: 95vh;
    }

    .payment-header h2 {
        font-size: 1.5rem;
    }

    .payment-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-confirm-btn,
    .payment-cancel-btn {
        max-width: none;
    }

    .qr-code-container canvas {
        max-width: 250px;
        height: auto;
    }
} 