/* ===== CHECKOUT STEPS ===== */
.checkout-steps {
    background-color: var(--cream);
    padding: 20px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: rgba(197, 160, 89, 0.3);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--cream);
    border: 2px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--light-green);
    margin-bottom: 10px;
    transition: var(--transition);
}

.step.active .step-number {
    background-color: var(--deep-gold);
    border-color: var(--deep-gold);
    color: var(--forest-green);
}

.step-label {
    font-size: 14px;
    color: var(--light-green);
    font-weight: 500;
    text-align: center;
}

.step.active .step-label {
    color: var(--forest-green);
    font-weight: 600;
}

/* ===== CHECKOUT LAYOUT ===== */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

/* ===== CHECKOUT FORMS ===== */
.checkout-forms {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.checkout-form {
    display: none;
    animation: fadeIn 0.5s ease;
}

.checkout-form.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.form-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--forest-green);
}

.form-header h2 i {
    color: var(--deep-gold);
}

.form-header p {
    color: var(--light-green);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--forest-green);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background-color: white;
    color: var(--forest-green);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--light-green);
    font-size: 12px;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
    user-select: none;
    line-height: 1.5;
}

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

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    border: 2px solid rgba(197, 160, 89, 0.5);
    border-radius: 3px;
    transition: var(--transition);
}

.checkbox-label:hover .checkmark {
    border-color: var(--deep-gold);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--deep-gold);
    border-color: var(--deep-gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--forest-green);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.form-actions .btn {
    min-width: 180px;
    padding: 15px 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== SHIPPING OPTIONS ===== */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.shipping-option {
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.shipping-option.selected,
.shipping-option:hover {
    border-color: var(--deep-gold);
    background-color: rgba(197, 160, 89, 0.05);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.option-header input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--deep-gold);
}

.option-details {
    flex: 1;
}

.option-details h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--forest-green);
}

.option-details p {
    color: var(--light-green);
    font-size: 14px;
}

.option-price {
    font-weight: 600;
    color: var(--deep-gold);
    font-size: 18px;
}

.option-description {
    padding-left: 35px;
}

.option-description p {
    color: var(--light-green);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.option-description i {
    color: var(--deep-gold);
    margin-top: 2px;
}

/* Shipping Notice */
.shipping-notice {
    background-color: rgba(197, 160, 89, 0.05);
    border-left: 4px solid var(--deep-gold);
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.shipping-notice i {
    color: var(--deep-gold);
    font-size: 20px;
    margin-top: 2px;
}

.shipping-notice p {
    margin: 0;
    color: var(--charcoal);
}

/* ===== PAYMENT TABS ===== */
.payment-tabs {
    margin-bottom: 30px;
}

.tab-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .tab-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tab-btn {
    padding: 15px;
    background: none;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--forest-green);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--deep-gold);
    border-color: var(--deep-gold);
    color: var(--forest-green);
}

.tab-btn i {
    font-size: 20px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

/* Crypto Options */
.crypto-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.crypto-option {
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.crypto-option.selected,
.crypto-option:hover {
    border-color: var(--deep-gold);
    background-color: rgba(197, 160, 89, 0.05);
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crypto-header input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--deep-gold);
}

.crypto-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--deep-gold);
}

.crypto-details h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--forest-green);
}

.crypto-details p {
    color: var(--light-green);
    font-size: 14px;
}

/* Crypto Instructions */
.crypto-instructions {
    background-color: rgba(197, 160, 89, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
}

.crypto-instructions h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.crypto-instructions h4 i {
    color: var(--deep-gold);
}

.crypto-instructions ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.crypto-instructions li {
    margin-bottom: 10px;
    color: var(--charcoal);
}

.crypto-notice {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background-color: rgba(27, 48, 34, 0.05);
    border-radius: 4px;
}

.crypto-notice i {
    color: var(--deep-gold);
    font-size: 20px;
    margin-top: 2px;
}

.crypto-notice p {
    margin: 0;
    color: var(--charcoal);
}

/* Card Form */
.card-form {
    padding: 20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    background-color: rgba(197, 160, 89, 0.02);
}

.card-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card-notice {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 4px;
    color: #28a745;
}

.card-notice i {
    font-size: 18px;
}

/* Bank Instructions */
.bank-instructions {
    padding: 25px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    background-color: rgba(197, 160, 89, 0.02);
}

.bank-instructions h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.bank-instructions h4 i {
    color: var(--deep-gold);
}

.bank-details {
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(27, 48, 34, 0.05);
    border-radius: 4px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

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

.detail-item span:first-child {
    font-weight: 500;
    color: var(--forest-green);
}

.detail-item span:last-child {
    color: var(--light-green);
}

.bank-notice {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 4px;
    color: #ffc107;
}

.bank-notice i {
    font-size: 18px;
}

/* PayPal Option */
.paypal-option {
    padding: 40px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    background-color: rgba(197, 160, 89, 0.02);
    text-align: center;
}

.paypal-logo {
    font-size: 48px;
    color: #003087;
    margin-bottom: 20px;
}

.paypal-option p {
    margin-bottom: 30px;
    color: var(--charcoal);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.btn-paypal {
    background-color: #003087;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.btn-paypal:hover {
    background-color: #00205b;
}

/* Order Notes */
.order-notes {
    margin-bottom: 25px;
}

.order-notes label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--forest-green);
}

.order-notes textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    resize: vertical;
    min-height: 100px;
}

.order-notes textarea:focus {
    outline: none;
    border-color: var(--deep-gold);
}

/* Terms Agreement */
.terms-agreement {
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgba(197, 160, 89, 0.05);
    border-radius: 8px;
}

.terms-agreement .checkbox-label {
    line-height: 1.6;
}

.terms-agreement a {
    color: var(--deep-gold);
    font-weight: 600;
}

.terms-agreement a:hover {
    text-decoration: underline;
}

/* ===== ORDER CONFIRMATION ===== */
.confirmation-header {
    text-align: center;
    padding: 40px 20px;
}

.confirmation-icon {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.confirmation-header h2 {
    font-size: 36px;
    color: var(--forest-green);
    margin-bottom: 10px;
}

.order-number {
    font-size: 18px;
    color: var(--light-green);
}

.confirmation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.detail-card {
    background-color: rgba(197, 160, 89, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 8px;
    padding: 25px;
}

.detail-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.detail-card h4 i {
    color: var(--deep-gold);
}

.detail-card p {
    color: var(--charcoal);
    line-height: 1.6;
}

.confirmation-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.confirmation-actions .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== ORDER SUMMARY SIDEBAR ===== */
.order-summary-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.summary-card {
    background-color: var(--cream);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.summary-card h3 {
    margin-bottom: 25px;
    font-size: 22px;
    color: var(--forest-green);
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

/* Order Items */
.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 25px;
    padding-right: 10px;
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

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

.order-item-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.order-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--forest-green);
}

.order-item-details p {
    font-size: 12px;
    color: var(--light-green);
    margin-bottom: 5px;
}

.order-item-price {
    font-size: 14px;
    color: var(--deep-gold);
    font-weight: 600;
}

/* Summary Totals */
.summary-totals {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.total-row.discount {
    color: #28a745;
}

.total-row.grand-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--forest-green);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--light-green);
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.badge i {
    font-size: 20px;
    color: var(--deep-gold);
}

/* Help Section */
.help-section {
    margin-top: 25px;
}

.help-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--forest-green);
}

.help-section h4 i {
    color: var(--deep-gold);
}

.help-section p {
    color: var(--light-green);
    margin-bottom: 20px;
    font-size: 14px;
}

.help-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: rgba(197, 160, 89, 0.05);
    border-radius: 4px;
    color: var(--forest-green);
    font-weight: 500;
    transition: var(--transition);
}

.help-contact:hover {
    background-color: rgba(197, 160, 89, 0.1);
    text-decoration: none;
}

.help-contact i {
    color: var(--deep-gold);
    font-size: 18px;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .steps-container::before {
        display: none;
    }

    .step {
        flex-direction: row;
        gap: 15px;
    }

    .step-number {
        margin-bottom: 0;
    }

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

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

    .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .form-actions .btn {
        width: 100%;
    }

    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 576px) {
    .tab-buttons {
        grid-template-columns: 1fr;
    }

    .confirmation-details {
        grid-template-columns: 1fr;
    }

    .security-badges {
        justify-content: center;
    }
}


/* ===== CUSTOM SELECT WITH SEARCH ===== */
/* ===== SEARCHABLE DROPDOWN ===== */
.searchable-dropdown {
    position: relative;
    width: 100%;
}

.searchable-dropdown input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    background-color: white;
    color: var(--forest-green);
    transition: var(--transition);
}

.searchable-dropdown input[type="text"]:focus {
    outline: none;
    border-color: var(--deep-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

.search-results.active {
    display: block;
}

.country-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    color: var(--forest-green);
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background-color: rgba(197, 160, 89, 0.1);
}

.country-option.selected {
    background-color: rgba(197, 160, 89, 0.05);
    font-weight: 600;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: var(--light-green);
    font-style: italic;
}

/* Error styles */
.form-group.error input {
    border-color: #dc3545 !important;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}


.no-results {
    padding: 20px;
    text-align: center;
    color: var(--light-green);
    font-style: italic;
}

/* ===== PAYMENT OPTIONS ===== */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

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

.payment-option-card {
    border: 2px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.payment-option-card:hover {
    border-color: var(--deep-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.payment-option-card.selected {
    border-color: var(--deep-gold);
    background-color: rgba(197, 160, 89, 0.05);
}

.payment-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--deep-gold);
}

.payment-details {
    flex: 1;
}

.payment-details h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--forest-green);
}

.payment-details p {
    color: var(--light-green);
    font-size: 14px;
}

.payment-check {
    color: var(--deep-gold);
    font-size: 20px;
    opacity: 0;
    transition: var(--transition);
}

.payment-option-card.selected .payment-check {
    opacity: 1;
}

/* ===== SHIPPING METHODS ===== */
.shipping-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.shipping-method-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.shipping-method-option:hover {
    border-color: var(--deep-gold);
    background: rgba(212, 175, 55, 0.02);
}

.shipping-method-option.selected {
    border-color: var(--deep-gold);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.08), transparent);
}

.shipping-method-option input[type="radio"] {
    display: none;
}

.shipping-method-radio {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shipping-method-option.selected .shipping-method-radio {
    border-color: var(--deep-gold);
}

.shipping-method-option.selected .shipping-method-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--deep-gold);
    border-radius: 50%;
}

.shipping-method-details {
    flex: 1;
}

.shipping-method-name {
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 4px;
}

.shipping-method-description {
    font-size: 13px;
    color: var(--charcoal);
    opacity: 0.8;
}

.shipping-method-price {
    font-weight: 700;
    color: var(--deep-gold);
    font-size: 18px;
}

.loading-shipping {
    padding: 20px;
    text-align: center;
    color: var(--charcoal);
    opacity: 0.7;
}

.loading-shipping i {
    margin-right: 8px;
}

.payment-card-body p {
    color: var(--charcoal);
    font-size: 14px;
    margin: 0;
}

/* ===== PAYMENT INSTRUCTIONS ===== */
.payment-instructions {
    background-color: rgba(197, 160, 89, 0.05);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.instructions-content h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--forest-green);
}

.instructions-content h4 i {
    color: var(--deep-gold);
}

.instructions-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.instructions-content li {
    margin-bottom: 10px;
    color: var(--charcoal);
    line-height: 1.6;
}

.instructions-content ul {
    padding-left: 20px;
    margin-top: 5px;
}

.instructions-content ul li {
    margin-bottom: 5px;
    font-size: 14px;
}

.wallet-address {
    background-color: rgba(27, 48, 34, 0.1);
    border-radius: 4px;
    padding: 10px 15px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wallet-address code {
    flex: 1;
    font-family: monospace;
    font-size: 14px;
    color: var(--forest-green);
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-btn {
    background-color: var(--deep-gold);
    color: var(--forest-green);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    background-color: rgba(197, 160, 89, 0.8);
}

.copy-btn.copied {
    background-color: #28a745;
    color: white;
}

.payment-notice {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background-color: rgba(27, 48, 34, 0.05);
    border-radius: 4px;
    margin-top: 20px;
}

.payment-notice i {
    color: var(--deep-gold);
    font-size: 20px;
    margin-top: 2px;
}

.payment-notice p {
    margin: 0;
    color: var(--charcoal);
}

/* ===== PAYMENT REMINDER ===== */
.payment-reminder {
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    border-left: 4px solid #ffc107;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.payment-reminder i {
    color: #ffc107;
    font-size: 24px;
    margin-top: 2px;
}

.payment-reminder p {
    margin: 0;
    color: var(--charcoal);
}

/* ===== MODAL STYLES ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    z-index: 2001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--cream);
}

.modal-header h3 {
    color: var(--forest-green);
    margin: 0;
    font-size: 24px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--light-green);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: 60vh;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.modal-footer .btn {
    min-width: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
        max-height: 50vh;
    }

    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }

    .modal-footer .btn {
        width: 100%;
    }
}
