.submission-container {
    max-width: 1400px;
    margin: 120px auto 0;
    padding: 40px 20px;
    font-family: 'Moderat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.submission-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .submission-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.submission-option {
    background: #F8F8F5;
    border: 1px solid #F8F8F5;
    border-radius: 8px;
    padding: 0;
    transition: box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.submission-option:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.submission-option.white-glove {
    background: #2c2c2c;
    border: 1px solid #2c2c2c;
    color: #fff;
    position: relative;
}

.option-header {
    padding: 20px 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle-badge {
    flex-shrink: 0;
}

.circle-badge img {
    height: 35px;
    width: auto;
}

.option-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #232323;
    font-family: 'New Spirit', serif;
}

.white-glove .option-header h3 {
    color: #fff;
}

.option-image {
    width: auto;
    overflow: hidden;
    padding: 16px;
}

.option-image img {
    width: max-content;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.option-content {
    padding: 20px;
    flex: 1;
}

.option-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
    color: #232323;
    font-family: 'Moderat', sans-serif;
}

.white-glove .option-content p {
    color: #fff;
}

.option-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.option-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #232323;
    font-family: 'Moderat', sans-serif;
}

.white-glove .option-content ul li {
    color: #fff;
}

.option-content ul li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.option-action {
    padding: 0 20px 20px;
}

.btn-choose {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    background: #F8F8F5;
    border: 1px solid #232323;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: #232323;
}

.btn-choose:hover {
    background: #232323;
    color: #fff;
}

.white-glove .btn-choose {
    background: #444;
    border: 1px solid #444;
    color: #fff;
}

.white-glove .btn-choose:hover {
    background: #555;
    border-color: #555;
}

.back-button {
    margin-top: 40px;
}

.back-button a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #232323;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 20px;
    border: 1px solid #232323;
    border-radius: 8px;
    transition: all 0.3s;
}

.back-button a:hover {
    background: #232323;
    color: #fff;
}

.back-button a:hover svg path {
    fill: #fff;
}

.shipping-options {
    margin-bottom: 32px;
}

.shipping-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.shipping-option:hover {
    border-color: #232323;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.option-radio {
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
}

.option-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-circle {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
}

.shipping-option:hover .radio-circle {
    border-color: #666;
}

.option-radio input[type="radio"]:checked ~ .radio-circle {
    border-color: #232323;
    background: #232323;
}

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

.option-content {
    flex: 1;
}

.option-content strong {
    font-size: 16px;
    color: #232323;
    font-family: 'Moderat', sans-serif;
    font-weight: 500;
}

.option-price-wrapper {
    margin-right: 20px;
    flex-shrink: 0;
}

.option-price {
    font-size: 16px;
    font-weight: 500;
    color: #232323;
    font-family: 'Moderat', sans-serif;
}

.option-meta {
    flex-shrink: 0;
}

.option-provider svg {
    width: 48px;
    height: 48px;
    display: block;
}

.submission-address-page {
    position: relative;
    min-height: calc(100vh - 200px);
}

.submission-address-page .checkout-progress {
    margin-top: 160px;
}

.submission-address-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.page-title {
    font-family: 'New Spirit', serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #232323;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
    gap: 0;
}

.btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    font-family: 'Moderat', sans-serif;
}

.btn-secondary {
    background: #fff;
    border: 1px solid #232323;
    color: #232323;
}

.btn-secondary:hover {
    background: #232323;
    color: #fff;
}

.btn-secondary:hover svg path {
    fill: #fff;
}

.btn-primary {
    background: #232323;
    color: #FFF !important;
    border: 1px solid #232323;
    margin-top: 0 !important;
}

.btn-primary.btn-confirm {
    margin-bottom: 32px;
}

.btn-primary:hover {
    background: #FFF !important;
    color: #232323 !important;
    border: 1px solid #232323 !important;
}

.btn-primary svg path {
    fill: #FFF;
}

.btn-primary:hover svg path {
    fill: #232323 !important;
}

.btn-back {
    position: absolute;
    left: 32px;
    bottom: 32px;
    width: auto !important;
    background: #fff !important;
    color: #232323 !important;
    border: 1px solid #232323 !important;
}

.btn-back svg path {
    fill: #232323 !important;
}

.btn-back-mobile {
    display: none;
    background: #fff !important;
    color: #232323 !important;
    border: 1px solid #232323 !important;
}

.btn-back-mobile svg path {
    fill: #232323 !important;
}

.flash-message {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.flash-message.error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.flash-message.success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

@media (max-width: 1399px) {
    .submission-address-page {
        padding: 16px;
    }

    .submission-address-page .checkout-progress {
        margin-top: 80px;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .form-actions {
        justify-content: center;
        gap: 16px;
    }

    .btn-back {
        display: none;
        position: static;
    }

    .btn-back-mobile {
        display: inline-flex;
        position: static;
        width: 50%;
    }

    .btn-primary {
        position: static;
        width: 50%;
    }
}
