:root {
    --color-primary: #0a1f33;
    --color-accent: #00c853;
    --color-secondary: #f5f7fa;
    --color-text: #333;
    --color-white: #ffffff;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Open Sans", sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-secondary);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Header */
.header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
}
.nav__logo svg {
    color: var(--color-accent);
}

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

.nav__link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}
.nav__link:hover {
    color: var(--color-accent);
}

/* Mobile Nav Toggle */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.language-switcher select {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid #4a5568;
    border-radius: 5px;
    padding: 0.4rem 0.6rem;
    font-weight: 600;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.button--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}
.button--primary:hover {
    background-color: #071625;
}
.button--accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
}
.button--accent:hover {
    background-color: #00b04a;
    transform: translateY(-2px);
}
.button--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.button--tertiary {
    background-color: transparent;
    color: #64748b;
    border: none;
    padding: 0.75rem 1.5rem;
}

.button--tertiary:hover {
    background-color: #f8fafc;
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--color-white);
    text-align: center;
    padding: 6rem 0;
    overflow: hidden;
}
.hero__background {
    position: absolute;
    inset: 0;
    background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-jOb8SplCf3SpOViBtNdqklB8I5hcfr.png");
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.1);
    z-index: -2;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-primary);
    opacity: 0.8;
    z-index: -1;
}
.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero__subtitle {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* VIN Check Section */
.vin-check-section {
    padding-top: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}
.card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.vin-check-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.vin-check-card p {
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--color-primary);
    flex-shrink: 0;
}
.vin-check-form {
    display: flex;
    width: 100%;
}
.vin-check-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}
.vin-check-button {
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIN Decode Section */
.vin-decode-section {
    margin-top: 4rem;
    padding-top: 2rem;
}

.vin-decode-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 3rem;
}

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

.vin-info-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.vin-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

.vin-info-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-accent);
}

.vin-info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.vin-info-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: #64748b;
    flex-shrink: 0;
    margin-right: 1rem;
    min-width: 120px;
}

.vin-info-value {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-primary);
    text-align: right;
    word-break: break-word;
}

/* General Section Styling */
.section {
    padding: 6rem 0;
}
.section--light {
    background-color: var(--color-white);
}
.section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    text-align: center;
}

/* Service Page List Styling */
.service-content ul {
    margin-left: 2rem;
    margin-top: 1.5rem;
}

.service-content li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}
.how-it-works__item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding: 0 1rem 1.5rem;
}

/* Counter */
.counter-badge {
    display: inline-block;
    background-color: rgba(0, 200, 83, 0.1);
    padding: 1rem 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}
.counter-badge__number {
    font-family: var(--font-heading);
    color: var(--color-accent);
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 2rem 0;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: left;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
}

/* Contact Form Styles */
.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fafafa;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
    background-color: var(--color-white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

.contact-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.3);
}

.error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-info-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-weight: 500;
}

.alert-success {
    background-color: #f0fff4;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.alert-error {
    background-color: #fed7d7;
    color: #742a2a;
    border: 1px solid #feb2b2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container,
    .contact-info-card {
        padding: 1.5rem;
    }

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

    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }
    .nav__menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-primary);
        padding: 1rem 2rem;
    }
    .nav__menu.active {
        display: flex;
    }
    .nav__toggle {
        display: block;
    }
    .vin-check-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .section {
        padding: 4rem 0;
    }
    .hero {
        padding: 4rem 0;
    }
    .vin-check-section {
        margin-top: -5rem;
    }

    /* Responsive adjustment for service page list on mobile */
    .service-content ul {
        margin-left: 1.5rem;
    }

    .vin-decode-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vin-decode-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .vin-info-card {
        padding: 1.5rem;
    }

    .vin-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .vin-info-label {
        min-width: auto;
        margin-right: 0;
    }

    .vin-info-value {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .contact-form-container,
    .contact-info-card {
        padding: 1rem;
    }

    .contact-info-item {
        gap: 0.75rem;
    }

    .contact-info-item svg {
        width: 20px;
        height: 20px;
    }

    /* Further mobile adjustment for service page list */
    .service-content ul {
        margin-left: 1rem;
    }

    .vin-decode-section {
        margin-top: 2rem;
    }

    .vin-decode-title {
        font-size: 1.5rem;
    }

    .vin-info-card {
        padding: 1.25rem;
    }

    .vin-info-card-title {
        font-size: 1.1rem;
    }
}

/* Checkout Page Styles */
.checkout-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.checkout-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent);
}

/* VIN and Email Sections */
.checkout-vin-section,
.checkout-email-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.checkout-vin-label,
.checkout-email-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

.checkout-vin-value {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.checkout-email-value {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-primary);
    font-size: 1rem;
}

/* Order Items Section */
.checkout-items-section {
    margin: 2rem 0;
}

.checkout-items-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.checkout-item:hover {
    background-color: #f1f5f9;
    border-color: var(--color-accent);
}

.checkout-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkout-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border: 1px solid #e2e8f0;
}

.checkout-item-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-item-name {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}

.checkout-item-price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1.1rem;
}

/* Total Section */
.checkout-total-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-total-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.checkout-total-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* Action Buttons */
.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.checkout-confirm-btn {
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkout-confirm-btn:disabled {
    background-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.checkout-back-btn {
    width: 100%;
    text-align: center;
    background-color: #f8fafc;
    color: var(--color-primary);
    border: 2px solid #e2e8f0;
}

.checkout-back-btn:hover {
    background-color: #f1f5f9;
    border-color: var(--color-accent);
}

/* Payment Info Card */
.checkout-info-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.checkout-info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.checkout-info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkout-info-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.checkout-info-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.checkout-info-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-card,
    .checkout-info-card {
        padding: 1.5rem;
    }

    .checkout-card-title {
        font-size: 1.5rem;
    }

    .checkout-vin-section,
    .checkout-email-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .checkout-total-label {
        font-size: 1.25rem;
    }

    .checkout-total-amount {
        font-size: 1.75rem;
    }

    .checkout-actions {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .checkout-card,
    .checkout-info-card {
        padding: 1rem;
    }

    .checkout-card-title {
        font-size: 1.25rem;
    }

    .checkout-item {
        padding: 0.75rem;
    }

    .checkout-item-icon {
        width: 40px;
        height: 40px;
    }

    .checkout-item-name {
        font-size: 0.9rem;
    }

    .checkout-item-price {
        font-size: 1rem;
    }

    .checkout-total-amount {
        font-size: 1.5rem;
    }

    .checkout-info-item {
        gap: 0.75rem;
    }

    .checkout-info-item svg {
        width: 20px;
        height: 20px;
    }
}

/* VIN List Page Styles */
.vin-list-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.vin-list-info {
    background-color: var(--color-white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.results-count {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
}

.page-info {
    color: #666;
    font-size: 0.9rem;
}

/* VIN Grid */
.vin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.vin-item {
    transition: transform 0.2s ease;
}

.vin-item:hover {
    transform: translateY(-2px);
}

.vin-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.vin-card {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vin-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.vin-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.vin-arrow {
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.vin-card:hover .vin-arrow {
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.empty-state-icon {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #666;
    font-size: 1rem;
}

/* Email Section Styling */
.email-section {
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.email-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.email-input {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fafafa;
    text-align: center;
}

.email-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.1);
    background-color: var(--color-white);
}

.email-input.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.email-error {
    color: #e53e3e;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    margin-top: 0.25rem;
}

/* Email Actions Section Styling */
.email-actions {
    margin-top: 1.5rem; /* increased from 0.75rem to 1.5rem for more distance */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.email-actions .scan-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.email-actions .scan-btn:hover {
    background-color: #071625;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 31, 51, 0.3);
}

/* Checkout Section Styling */
.checkout-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center; /* added text-align center to center the total */
}

.checkout-total {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    justify-content: center; /* added justify-content center to center the total text */
}

.total-label {
    color: var(--color-text);
}

.total-price {
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 700;
}

.checkout-btn {
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.checkout-btn:hover:not(:disabled) {
    background-color: #00b04a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.checkout-btn:disabled {
    background-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile responsiveness for email and checkout */
@media (max-width: 768px) {
    .email-section {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .email-input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    .email-actions .scan-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }

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

    .total-price {
        font-size: 1.25rem;
    }

    .checkout-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .email-title {
        font-size: 1.1rem;
    }

    .email-actions .scan-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-width: 160px;
    }

    .checkout-section {
        gap: 0.75rem;
    }

    .checkout-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-width: 160px;
    }

    .total-price {
        font-size: 1rem;
    }
}

/* Scan Section and Partner Tiles Styling */
.scan-section {
    margin-top: 3rem;
    text-align: center;
}

.scan-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2.5rem;
}

.scan-btn:hover {
    background-color: #071625;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 31, 51, 0.3);
}

.partners-section {
    margin-top: 2.5rem;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-tile {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--color-accent);
}

.partner-checkbox-wrapper {
    position: relative;
}

.partner-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.partner-label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 1rem;
}

.partner-checkbox:checked + .partner-label {
    background-color: rgba(0, 200, 83, 0.1);
    border-color: var(--color-accent);
}

.partner-checkbox:checked + .partner-label::after {
    content: "✓";
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-accent);
    color: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

.partner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8fafc;
}

.partner-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.partner-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.partner-price {
    font-family: var(--font-body);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1rem;
}

/* Mobile responsiveness for partner tiles */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partner-label {
        padding: 1rem;
    }

    .scan-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partner-icon {
        width: 40px;
        height: 40px;
    }

    .partner-name {
        font-size: 1rem;
    }

    .partner-price {
        font-size: 0.875rem;
    }
}

/* Order Complete Page Styles */
.order-complete-header {
    text-align: center;
    margin-bottom: 4rem;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 200, 83, 0.2) 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon svg {
    color: var(--color-accent);
}

@keyframes successPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(0, 200, 83, 0);
    }
}

.order-complete-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.order-complete-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.order-complete-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.order-complete-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.order-complete-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent);
}

/* Order Detail Sections */
.order-detail-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.order-detail-label {
    font-family: var(--font-body);
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

.order-detail-value {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}

.order-id {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Order Items Section */
.order-items-section {
    margin: 2rem 0;
}

.order-items-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.order-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border: 1px solid #e2e8f0;
}

.order-item-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item-name {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1rem;
}

.order-item-price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent);
    font-size: 1.1rem;
}

/* Order Total Section */
.order-total-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total-label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.order-total-amount {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
}

/* Next Steps Card */
.order-next-steps-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.order-next-steps-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.order-next-steps-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}

.step-number.error-step {
    background-color: #ef4444;
    color: var(--color-white);
}

.next-step-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.next-step-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Order Complete Actions */
.order-complete-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-complete-actions .button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.button--secondary {
    background-color: #f8fafc;
    color: var(--color-primary);
    border: 2px solid #e2e8f0;
}

.button--secondary:hover {
    background-color: #f1f5f9;
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Support Section */
.order-support-section {
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-support-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.order-support-card svg {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.order-support-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.order-support-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-link {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.support-link:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Payment Error Page Styles */
.payment-error-header {
    text-align: center;
    margin-bottom: 4rem;
}

.error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.2) 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    animation: errorPulse 2s ease-in-out infinite;
}

.error-icon svg {
    color: #ef4444;
}

@keyframes errorPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(239, 68, 68, 0);
    }
}

.payment-error-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 1rem;
}

.payment-error-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.payment-error-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-error-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.payment-error-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ef4444;
}

/* Error Message Section */
.error-message-section {
    margin-bottom: 2rem;
}

.error-message-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 8px;
}

.error-message-box svg {
    flex-shrink: 0;
    color: #ef4444;
    margin-top: 0.125rem;
}

.error-message-box p {
    color: #991b1b;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

/* Payment Next Steps Card */
.payment-next-steps-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.payment-next-steps-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.payment-next-steps-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Payment Error Actions */
.payment-error-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-error-actions .button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Payment Help Section */
.payment-help-section {
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-help-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.payment-help-card svg {
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.payment-help-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.payment-help-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Mobile Responsive for Payment Error */
@media (max-width: 968px) {
    .order-tracking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .order-tracking-title {
        font-size: 2rem;
    }

    .order-tracking-subtitle {
        font-size: 1rem;
    }

    .tracking-icon {
        width: 100px;
        height: 100px;
    }

    .tracking-icon svg {
        width: 60px;
        height: 60px;
    }

    .order-tracking-card,
    .order-progress-card {
        padding: 1.5rem;
    }

    .order-tracking-card-title {
        font-size: 1.5rem;
    }

    .order-status-item {
        padding: 1rem;
    }

    .order-status-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-badge {
        align-self: flex-start;
    }

    .progress-stats {
        padding: 1rem;
    }

    .progress-stat-number {
        font-size: 2rem;
    }

    .order-tracking-help-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .order-tracking-title {
        font-size: 1.75rem;
    }

    .order-tracking-card,
    .order-progress-card,
    .order-tracking-help-card {
        padding: 1rem;
    }

    .order-tracking-card-title {
        font-size: 1.25rem;
    }

    .order-status-item-icon {
        width: 48px;
        height: 48px;
    }

    .progress-stat-number {
        font-size: 1.75rem;
    }

    .timeline-step {
        padding-left: 0.5rem;
    }

    .timeline-step::before {
        left: 22px;
    }

    .timeline-step-icon {
        width: 40px;
        height: 40px;
    }

    .timeline-step-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Order Tracking Page Styles */
.order-tracking-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tracking-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    animation: trackingPulse 2s ease-in-out infinite;
}

.tracking-icon svg {
    color: #3b82f6;
}

@keyframes trackingPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(59, 130, 246, 0);
    }
}

.order-tracking-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.order-tracking-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.order-tracking-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.order-tracking-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.order-tracking-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #3b82f6;
}

/* Order Status Section */
.order-status-section {
    margin: 2rem 0;
}

.order-status-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

.order-status-item {
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.order-status-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.order-status-item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.order-status-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.order-status-item-details {
    flex: 1;
}

.order-status-item-name {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.order-status-item-price {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

/* Status Badge */
.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.status-badge svg {
    flex-shrink: 0;
}

.status-completed {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.status-completed svg {
    color: #16a34a;
}

.status-progress {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.status-progress svg {
    color: #f59e0b;
}

/* Order Progress Card */
.order-progress-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.order-progress-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Progress Stats */
.progress-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.progress-stat-item {
    text-align: center;
}

.progress-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.25rem;
}

.progress-stat-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.progress-stat-divider {
    width: 1px;
    height: 50px;
    background-color: #e2e8f0;
}

/* Progress Bar */
.progress-bar-container {
    margin-bottom: 2.5rem;
}

.progress-bar-track {
    width: 100%;
    height: 12px;
    background-color: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 6px;
    transition: width 0.5s ease;
}

.progress-percentage {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
}

/* Timeline Steps */
.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    padding-left: 1rem;
}

.timeline-step::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 50px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background-color: #e2e8f0;
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-step-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    border: 2px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

.timeline-step-icon svg {
    color: #94a3b8;
}

.timeline-step-completed .timeline-step-icon {
    background-color: #dcfce7;
    border-color: #86efac;
}

.timeline-step-completed .timeline-step-icon svg {
    color: #16a34a;
}

.timeline-step-active .timeline-step-icon {
    background-color: #fef3c7;
    border-color: #fde68a;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-step-active .timeline-step-icon svg {
    color: #f59e0b;
}

.timeline-step-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.timeline-step-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Order Tracking Actions */
.order-tracking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-tracking-actions .button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Help Section */
.order-tracking-help-section {
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-tracking-help-card {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.order-tracking-help-card svg {
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.order-tracking-help-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.order-tracking-help-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
