/* assets/css/checkout.css - COMPLETE FILE */

/* Container */
.checkout-container-simple {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.secure-badge {
    background: #1a1a1a;
    color: #4CAF50;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    border: 1px solid #333;
}

/* Single Checkout Box */
.checkout-box {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
}

/* Order Header */
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-product {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: #0f0f0f;
    border: 2px solid #ff4444;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-product h2 {
    font-size: 20px;
    margin: 0 0 4px 0;
    color: #fff;
}

.order-product p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

.order-price {
    text-align: right;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* What's Included */
.whats-included {
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.whats-included summary {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.whats-included summary::-webkit-details-marker {
    display: none;
}

.whats-included summary::before {
    content: '▼ ';
    font-size: 10px;
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.2s;
}

.whats-included:not([open]) summary::before {
    transform: rotate(-90deg);
}

.whats-included ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.whats-included li {
    padding: 6px 0;
    color: #aaa;
    font-size: 13px;
    border-bottom: 1px solid #2a2a2a;
}

.whats-included li:last-child {
    border-bottom: none;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: #333;
    margin: 25px 0;
}

/* Form Sections */
.form-section {
    margin-bottom: 25px;
}

.form-section h3 {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: #fff;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: #0f0f0f;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #ff4444;
}

.form-group small {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Card Element */
.card-element {
    background: #0f0f0f;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 6px;
    margin-bottom: 8px;
}

.card-errors {
    color: #ff4444;
    font-size: 13px;
    margin-top: 8px;
    min-height: 18px;
}

/* Checkout Footer */
.checkout-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #333;
}

.urgency-line {
    text-align: center;
    color: #ff4444;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.urgency-line span {
    font-weight: bold;
}

/* Submit Button */
.submit-payment-btn {
    width: 100%;
    padding: 16px;
    background: #ff4444;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.submit-payment-btn:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.submit-payment-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    display: inline;
}

.btn-loader {
    display: none;
}

.submit-payment-btn.loading .btn-text {
    display: none;
}

.submit-payment-btn.loading .btn-loader {
    display: inline;
}

/* Trust Line */
.trust-line {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: #888;
    flex-wrap: wrap;
}

/* Footer Minimal */
.footer-minimal {
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 20px;
    margin-top: 40px;
}

.footer-minimal .footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-minimal .footer-content a {
    color: #888;
    text-decoration: none;
    margin: 0 15px;
    font-size: 12px;
    transition: color 0.3s;
}

.footer-minimal .footer-content a:hover {
    color: #ff4444;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-container-simple {
        padding: 30px 15px;
    }

    .checkout-box {
        padding: 25px 20px;
    }

    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .order-price {
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-line {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .order-product h2 {
        font-size: 18px;
    }

    .price-amount {
        font-size: 28px;
    }

    .submit-payment-btn {
        font-size: 14px;
        padding: 14px;
    }
}
/* Order Bump Styles */
.order-bump {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1), rgba(255, 68, 68, 0.05));
    border: 2px solid #ff4444;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.order-bump:hover {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15), rgba(255, 68, 68, 0.08));
    border-color: #ff5555;
}

.order-bump-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bump-checkbox {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #ff4444;
}

.bump-label {
    flex: 1;
    cursor: pointer;
}

.bump-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bump-icon {
    font-size: 24px;
}

.bump-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bump-text strong {
    color: #fff;
    font-size: 16px;
}

.bump-price {
    color: #ff4444;
    font-size: 14px;
    font-weight: 600;
}

.bump-description {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 36px;
}

/* Annual specific bump */
.order-bump.annual-bump {
    border-color: #4CAF50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
}

.order-bump.annual-bump:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.08));
    border-color: #5cb85f;
}

.order-bump.annual-bump .bump-price {
    color: #4CAF50;
}

.order-bump.annual-bump .bump-checkbox {
    accent-color: #4CAF50;
}

@media (max-width: 480px) {
    .order-bump {
        padding: 15px;
    }

    .bump-text strong {
        font-size: 15px;
    }

    .bump-description {
        margin-left: 0;
        margin-top: 10px;
    }
}
/* Edition Toggle */
.product-image-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.product-image {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: opacity 0.2s;
}

.edition-toggle {
    display: flex;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 24px;
}

.edition-option {
    flex: 1;
    padding: 12px 8px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
}

.edition-option:hover {
    color: var(--text-primary);
}

.edition-option.active {
    background: var(--accent-red);
    color: #fff;
}

.edition-option .edition-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.edition-option .edition-price-wrap {
    display: block;
}

.edition-option .edition-price-struck {
    font-size: 12px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 4px;
}

.edition-option .edition-price-main {
    font-size: 18px;
    font-weight: 700;
}

.edition-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--border-color);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.edition-badge.color {
    background: linear-gradient(90deg, #ff4444, #f59e0b);
    color: #fff;
}

.order-total {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.total-row.total-final {
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group select {
    width: 100%;
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-red);
}

@media (max-width: 480px) {
    .edition-option {
        padding: 10px 6px;
    }
    
    .edition-option .edition-price-main {
        font-size: 16px;
    }
    
    .product-image {
        max-width: 140px;
    }
}
/* Subscribe-specific styles */
.price-mo {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.edition-badge.collector {
    background: linear-gradient(90deg, #ffd700, #ff8c00);
    color: #000;
}

.whats-included .included-header {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.whats-included li.highlight {
    color: #ffd700;
}

.whats-included li.sub-item {
    padding-left: 20px;
    color: #888;
    font-size: 12px;
    border-bottom: none;
    padding-top: 2px;
    padding-bottom: 2px;
}

.order-bump.trial-bump {
    border-color: #9b59b6;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1), rgba(155, 89, 182, 0.05));
}

.order-bump.trial-bump:hover {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15), rgba(155, 89, 182, 0.08));
    border-color: #a66bbe;
}

.order-bump.trial-bump .bump-price {
    color: #9b59b6;
}

.order-bump.trial-bump .bump-checkbox {
    accent-color: #9b59b6;
}

.recurring-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #333;
}

.recurring-note .recurring-sub {
    display: block;
    font-size: 12px;
    color: #9b59b6;
    margin-top: 4px;
}
.phone-optional {
    margin-top: 15px;
}

.phone-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}

.phone-consent input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.phone-consent label {
    font-size: 13px;
    color: #999;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}