body {
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

/* Header Styles */
.site-header {
    background: #1b1f47;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: #e86b00;
    text-decoration: none;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    background: transparent;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
}

.breadcrumb-item a {
    color: #1b1f47;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #e86b00;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Footer Styles */
.site-footer {
    background: #1b1f47;
    color: white;
    padding: 20px 0;
    margin-top: 50px;
}

.site-footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.site-footer a:hover {
    color: #e86b00;
}

.card-custom {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.counter-btn {
    width: 40px;
}

.summary-box {
    background: linear-gradient(180deg, #fff, #f7f3ea);
}

.btn-orange {
    background: #e86b00;
    color: white;
    font-weight: 600;
}

.btn-orange:hover {
    background: #c85a00;
}

.btn-orange:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.price-highlight {
    font-size: 28px;
    font-weight: bold;
    color: #e86b00;
}

.subscription-badge {
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.StripeElement {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
    transition: border-color 0.15s ease-in-out;
}

.StripeElement--focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.StripeElement--invalid {
    border-color: #dc3545;
}

#card-errors, #sepa-errors {
    color: #dc3545;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    display: none;
}

#card-errors:not(:empty), #sepa-errors:not(:empty) {
    display: block;
}

/* Payment Method Selection */
.payment-method-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-method-option {
    flex: 1;
}

.payment-method-option input[type="radio"] {
    display: none;
}

.payment-method-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: 2px solid #ced4da;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    font-size: 16px;
    font-weight: 500;
}

.payment-method-label:hover {
    border-color: #e86b00;
    background: #fff5e6;
}

.payment-method-option input[type="radio"]:checked + .payment-method-label {
    border-color: #e86b00;
    background: #fff5e6;
    box-shadow: 0 0 0 3px rgba(232, 107, 0, 0.1);
}

/* SEPA Mandate Text */
.sepa-mandate {
    font-size: 13px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 12px;
    border-left: 3px solid #e86b00;
    margin-top: 15px;
    border-radius: 4px;
}
