/* Smooth scroll for anchor links (e.g. Order Now -> #checkout) */
html {
    scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8em;
    font-weight: 900;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    letter-spacing: 1px;
}

.logo-platforms {
    color: #FF8C00;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #667eea;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: calc(150px + 15mm) 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    position: relative;
}

.gallery-container figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.gallery-container figure:nth-child(2) {
    justify-content: space-between;
}

.gallery-container figure:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

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

.gallery-container figure:nth-child(2) .hero-image {
    align-self: flex-start;
}

.gallery-container figcaption {
    padding: 15px 20px;
    color: white;
    font-size: 0.95em;
    line-height: 1.5;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    margin: 0;
    font-weight: 500;
}

.caption-title {
    color: #FF8C00;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 1.05em;
}

.gallery-container figure:nth-child(2) figcaption {
    margin-top: auto;
    align-self: flex-end;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    min-height: 60px;
    height: auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.sticky-cta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-badge {
    background: #dc3545; /* solid red */
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-cta-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    gap: 2px;
}

/* Price + discount on one visible line */
.sticky-price-line {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
    flex-wrap: nowrap;
}

.sticky-center-top {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

.sticky-cta-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sticky-was-price {
    font-size: 0.75em;
    font-weight: 700;
    color: #888;
}

.sticky-now-price {
    font-size: 1.5em;
    font-weight: 900;
    color: #333;
}

.sticky-discount-text {
    margin-top: 4px;
    font-size: 0.8em;
    font-weight: 800;
    color: #28a745; /* small green text */
}

.sticky-center-bottom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-order-now,
a.btn-order-now {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 140, 0, 0.3);
    width: 100%;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-order-now:hover,
a.btn-order-now:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Zero Assembly Block */
.zero-assembly-block {
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}

.zero-assembly-title {
    font-size: 2em;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.zero-assembly-text {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1em;
}

/* Content Sections */
.content-section {
    padding: 80px 20px;
    margin-top: 0;
}

.section-engineering {
    padding-top: 40px;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

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

.section-title {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.section-title .subtitle {
    font-size: 0.6em;
    color: #666;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.section-content {
    margin-top: 50px;
}

.intro-text {
    text-align: center;
    margin-bottom: 50px;
}

.lead {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #667eea;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
    display: block;
}

.trust-card h3 {
    color: #667eea;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.trust-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1em;
}

/* Feature Grid */
/* Trust Grid - Already defined above, keeping for reference */
.feature-image-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image,
.feature-item:hover .feature-image {
    transform: scale(1.05);
}

/* Rule of 3 Section */
.section-rule3 {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
}

.rule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.rule-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #dc3545;
    position: relative;
    transition: transform 0.3s ease;
}

.rule-card:hover {
    transform: translateX(5px);
}

.rule-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #dc3545;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

.rule-card h3 {
    color: #dc3545;
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 10px;
}

.rule-card p {
    color: #666;
    line-height: 1.7;
}

/* Rule of 3 Visual */
.rule-visual {
    text-align: center;
    margin-bottom: 50px;
}

.rule-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
    border: 3px solid #dc3545;
}

.rule-image-caption {
    color: #666;
    font-style: italic;
    font-size: 0.95em;
    max-width: 500px;
    margin: 0 auto;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.feature-badge {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #667eea;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.feature-item .feature-image-wrapper {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Checklist Section */
.section-checklist {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.checklist-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.checklist-card:hover {
    transform: scale(1.05);
}

.checklist-icon {
    width: 50px;
    height: 50px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

.checklist-card h3 {
    color: #667eea;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.checklist-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

.checklist-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 10px 0;
}

.footer-note {
    opacity: 0.8;
    font-size: 0.9em;
}

/* Print Styles */
@media print {
    .navbar {
        display: none;
    }

    body {
        padding-top: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 0.9em;
    }

    .hero-headline {
        font-size: 2.5em;
    }

    .hero-subheadline {
        font-size: 1.1em;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2em;
    }

    .content-section {
        padding: 50px 20px;
    }

    .trust-grid,
    .rule-grid,
    .features-grid,
    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .checklist-cta {
        flex-direction: column;
        align-items: center;
    }

    .compliance-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .rule-image {
        max-width: 100%;
    }

    .sticky-cta-bar {
        top: auto;
        bottom: 0;
        height: auto;
        padding: 15px 0;
    }

    .sticky-cta-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 15px;
        justify-items: center;
    }

    .sticky-cta-left,
    .sticky-cta-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .sticky-cta-center {
        width: 100%;
        justify-content: center;
    }

    .btn-order-now {
        width: 100%;
        padding: 14px 30px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-image {
        height: 320px;
    }

    .zero-assembly-title {
        font-size: 1.5em;
    }

    .zero-assembly-text {
        font-size: 1em;
    }
}

/* Checkout Section */
.section-checkout {
    background: #f8f9fa;
    padding: 40px 20px !important;
}

.section-checkout .section-title {
    margin-bottom: 20px;
}

.checkout-container {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Success banner after payment */
.checkout-success-banner {
    background: #d4edda;
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    text-align: center;
}

.checkout-success-title {
    font-size: 1.5em;
    font-weight: 800;
    color: #155724;
    margin: 0 0 8px 0;
}

.checkout-success-text {
    font-size: 1.1em;
    color: #155724;
    margin: 0;
}

/* Two-step flow */
.checkout-step {
    display: block;
}

.checkout-step[hidden] {
    display: none !important;
}

.checkout-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.checkout-step-title {
    color: #333;
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.checkout-step1-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.checkout-label {
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.checkout-step1-actions {
    margin-top: 16px;
}

.btn-next,
.btn-continue-checkout {
    width: 100%;
    background: #667eea;
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next:hover,
.btn-continue-checkout:hover {
    background: #5568d3;
    transform: translateY(-1px);
}

.btn-continue-checkout {
    background: #FF8C00;
    font-size: 1.15em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

.btn-continue-checkout:hover {
    background: #e67e00;
}

.btn-back {
    background: #e9ecef;
    color: #333;
    border: 2px solid #dee2e6;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #dee2e6;
}

/* Step 2: Summary + large total */
.checkout-summary-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95em;
}

.checkout-total-wrap {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 3px solid #667eea;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.checkout-total-label {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
}

.checkout-total-amount {
    font-size: 1.75em;
    font-weight: 800;
    color: #667eea;
}

.checkout-step2-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.checkout-step2-actions .btn-proceed-payment {
    flex: 1;
}

.checkout-step2-actions .btn-back {
    flex: 0 0 auto;
}

/* Summary Preview in Step 1 */
.checkout-summary-preview {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #e9ecef;
}

.checkout-summary-preview .checkout-summary-lines {
    margin-bottom: 8px;
}

.checkout-summary-preview .checkout-total-wrap {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 2px solid #667eea;
}

/* Delivery Details Form in Step 2 */
.checkout-delivery-details {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #e9ecef;
}

.checkout-delivery-title {
    font-size: 1em;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkout-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.checkout-form-field-full {
    grid-column: 1 / -1;
}

.checkout-form-field label {
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
}

.checkout-form-field input,
.checkout-form-field textarea {
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.95em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.checkout-form-field input:focus,
.checkout-form-field textarea:focus {
    outline: none;
    border-color: #667eea;
}

.checkout-form-field textarea {
    resize: vertical;
    min-height: 60px;
}

.required-asterisk {
    color: #dc3545;
    font-weight: 700;
}

.checkout-form-note {
    margin-top: 8px;
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

.shipping-info-inline {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.shipping-info-section.shipping-info-inline {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.order-form-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.order-form-section h3 {
    color: #667eea;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 700;
}

.price-breakdown {
    margin-bottom: 30px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.price-line.total-line {
    border-top: 2px solid #667eea;
    border-bottom: none;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 1.2em;
}

.price-amount {
    font-weight: 600;
    color: #333;
}

.freight-estimator {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

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

.postcode-input-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

#postcodeInput {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1.1em;
    text-align: center;
    font-weight: 600;
    transition: border-color 0.3s ease;
}

#postcodeInput:focus {
    outline: none;
    border-color: #667eea;
}

.shipping-message {
    padding: 10px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 600;
    margin-top: 5px;
}

.shipping-message.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.shipping-message.info-message {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.quote-text {
    color: #FF8C00;
    font-weight: 700;
}

.free-shipping {
    color: #28a745;
    font-weight: 700;
}

.quantity-select {
    padding: 6px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.quantity-select:focus {
    outline: none;
    border-color: #667eea;
}

.btn-proceed-payment,
a.btn-proceed-payment {
    width: 100%;
    background: #FF8C00;
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-proceed-payment:hover,
a.btn-proceed-payment:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
    color: white;
    text-decoration: none;
}

.shipping-info-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.shipping-info-toggle {
    cursor: pointer;
    color: #667eea;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 2px solid #e9ecef;
    transition: color 0.3s ease;
}

.shipping-info-toggle:hover {
    color: #5568d3;
}

.toggle-icon {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.shipping-table-container {
    display: none;
}

.shipping-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
}

.shipping-table thead {
    background: #667eea;
    color: white;
}

.shipping-table th {
    padding: 12px;
    text-align: left;
    font-weight: 700;
}

.shipping-table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
}

.shipping-table tbody tr:hover {
    background: #f8f9fa;
}

.shipping-table .no-shipping {
    background: #fff3cd;
    font-style: italic;
}

.sticky-delivery-note {
    font-size: 0.75em;
    color: #666;
    font-weight: 500;
}

.checkout-offer-ends {
    font-size: 0.85em;
    color: #333;
    font-weight: 700;
    margin-left: 10px;
    white-space: nowrap;
}

.discount-pill {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #fff3cd;
    color: #856404;
    font-weight: 700;
    font-size: 0.8em;
    vertical-align: middle;
}

.shipping-details-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.shipping-details-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shipping-details-form .form-field-full {
    grid-column: 1 / -1;
}

.shipping-details-form label {
    font-weight: 700;
    color: #333;
    font-size: 0.95em;
}

.shipping-details-form input,
.shipping-details-form textarea {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1em;
}

.shipping-details-form input:focus,
.shipping-details-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.fomo-line {
    margin: 10px 0 8px;
    font-size: 0.9em;
    font-weight: 600;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-container {
        max-width: 100%;
        gap: 20px;
    }

    .sticky-cta-right {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .sticky-delivery-note {
        text-align: center;
        font-size: 0.8rem;
        padding: 0 10px;
    }
}
