/* ============================================
   FAMILY CUSTOM - Account Page Styles
   ============================================ */

/* ==========================================
   AUTH SECTION
   ========================================== */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-form {
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.auth-header h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 8px;
}

.auth-header p {
    color: #888;
    font-size: 0.95rem;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-group label {
    display: block;
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.auth-form .form-group label i {
    margin-right: 6px;
    color: var(--gold);
}

.auth-form .form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form .form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.auth-form .form-group input::placeholder {
    color: #666;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.checkbox-group label {
    margin-bottom: 0 !important;
    font-size: 0.85rem;
}

.checkbox-group a {
    color: var(--gold);
}

.btn-auth {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37, #e6c200);
    border: none;
    border-radius: 10px;
    color: #1a1a2e;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: #0a0a0f;
}

.btn-auth:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 15px;
    text-align: center;
}

.auth-success {
    color: #2ecc71;
    font-size: 0.85rem;
    margin-top: 15px;
    text-align: center;
}

.auth-links {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.auth-links a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: #fff;
}

.auth-links p {
    margin-top: 10px;
}

/* ==========================================
   ACCOUNT SECTION
   ========================================== */
.account-section {
    min-height: calc(100vh - 200px);
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.account-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar */
.account-sidebar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #e6c200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a2e;
}

.user-info h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.user-info p {
    color: #888;
    font-size: 0.85rem;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.account-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #aaa;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.account-nav .nav-item i {
    font-size: 1.1rem;
    width: 24px;
}

.account-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.account-nav .nav-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.account-nav .nav-item.logout {
    margin-top: 20px;
    color: #e74c3c;
}

.account-nav .nav-item.logout:hover {
    background: rgba(231, 76, 60, 0.1);
}

/* Main Content */
.account-main {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.account-tab {
    display: none;
}

.account-tab.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.account-tab h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: white;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.account-tab h2 i {
    color: var(--gold);
}

/* Dashboard Cards */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dash-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.dash-card-icon.orders {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.dash-card-icon.wishlist {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.dash-card-icon.points {
    background: linear-gradient(135deg, var(--gold), #e6c200);
}

.dash-card-content {
    display: flex;
    flex-direction: column;
}

.dash-card-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.dash-card-label {
    color: #888;
    font-size: 0.9rem;
}

/* Section Box */
.section-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h3 {
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h3 i {
    color: var(--gold);
}

.view-all {
    color: var(--gold);
    font-size: 0.9rem;
    text-decoration: none;
}

.view-all:hover {
    text-decoration: underline;
}

/* Orders */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.order-card.compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.order-card .order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.order-number {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.order-date {
    color: #888;
    font-size: 0.85rem;
}

.order-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-total {
    color: #ccc;
}

.order-total strong {
    color: var(--gold);
}

.order-items-preview {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-track-order {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-track-order:hover {
    background: #d4af37;
    color: #1a1a2e;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.pending {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.status-badge.paid {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.status-badge.processing {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.status-badge.shipped {
    background: rgba(230, 126, 34, 0.2);
    color: #e67e22;
}

.status-badge.delivered {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.status-badge.cancelled {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* Addresses */
.btn-add-address {
    background: linear-gradient(135deg, #d4af37, #e6c200) !important;
    color: #1a1a2e !important;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.btn-add-address:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    color: #1a1a2e !important;
}

.btn-add-address i {
    color: #1a1a2e !important;
}

.addresses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.address-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.address-card.default {
    border-color: var(--gold);
}

.default-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--gold);
    color: #1a1a2e;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.address-card p {
    color: #ccc;
    margin-bottom: 5px;
}

.address-card .addr-name {
    color: white;
    margin-bottom: 10px;
}

.address-card .addr-phone {
    margin-top: 10px;
    color: #888;
    font-size: 0.85rem;
}

.btn-delete-addr {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.1);
    border: none;
    color: #e74c3c;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delete-addr:hover {
    background: #e74c3c;
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    color: white;
    font-size: 1.2rem;
}

.modal-header h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: white;
}

/* Profile Form */
.profile-form {
    max-width: 500px;
}

.profile-form .form-group {
    margin-bottom: 20px;
}

.profile-form label {
    display: block;
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.profile-form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.profile-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.profile-form input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.profile-form small {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 5px;
}

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

.btn-save {
    background: linear-gradient(135deg, #d4af37, #e6c200);
    color: #1a1a2e;
    border: none;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.form-success {
    color: #2ecc71;
    margin-top: 15px;
    font-size: 0.9rem;
}

.danger-zone {
    margin-top: 40px;
    border-color: rgba(231, 76, 60, 0.3);
}

.danger-zone h3 {
    color: white;
    margin-bottom: 10px;
}

.danger-zone p {
    color: #888;
    margin-bottom: 15px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #d4af37;
    color: #1a1a2e;
}

/* Wishlist */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-state i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: #444;
}

/* Responsive */
@media (max-width: 900px) {
    .account-container {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: relative;
        top: 0;
    }
    
    .account-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .account-nav .nav-item {
        padding: 10px 14px;
    }
    
    .account-nav .nav-item.logout {
        margin-top: 0;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .auth-form {
        padding: 30px 20px;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .profile-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .account-main {
        padding: 25px;
    }
    
    .order-card.compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .order-meta {
        width: 100%;
        justify-content: space-between;
    }
}

/* ==========================================
   FOOTER STYLES
   ========================================== */
.footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px 20px;
    color: #888;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-section p i {
    margin-right: 8px;
    color: var(--gold, #d4af37);
}

.footer-section a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold, #d4af37);
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* ==========================================
   LOYALTY PROGRAM STYLES
   ========================================== */
.loyalty-section {
    padding: 10px 0;
}

.loyalty-loading {
    text-align: center;
    padding: 30px;
    color: #888;
}

/* Maintenance Mode */
.loyalty-maintenance {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-icon i {
    font-size: 2.5rem;
    color: #d4af37;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loyalty-maintenance h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.loyalty-maintenance p {
    color: #888;
    font-size: 0.95rem;
    max-width: 400px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.maintenance-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.maintenance-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #aaa;
}

.maintenance-features i {
    color: #2ecc71;
}

.loyalty-dashboard {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Niveau actuel */
.loyalty-level-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(var(--level-color-rgb, 212, 175, 55), 0.15), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--level-color, #d4af37);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.loyalty-level-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--level-color, #d4af37) 0%, transparent 70%);
    opacity: 0.1;
}

.level-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.level-icon {
    font-size: 2.5rem;
}

.level-info {
    display: flex;
    flex-direction: column;
}

.level-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.level-discount {
    font-size: 0.9rem;
    color: var(--level-color, #d4af37);
}

.points-display {
    text-align: right;
}

.points-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.points-label {
    font-size: 0.85rem;
    color: #888;
}

/* Progression */
.loyalty-progress-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #ccc;
}

.progress-header strong {
    color: #d4af37;
}

.points-needed {
    color: #888;
}

.loyalty-progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loyalty-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #e6c200);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.next-bonus {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #2ecc71;
}

.loyalty-max-level {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.03));
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.max-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}

.loyalty-max-level p {
    color: #d4af37;
    font-weight: 600;
}

/* Comment gagner des points */
.loyalty-earn-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.loyalty-earn-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

.loyalty-earn-section h4 i {
    color: #d4af37;
    margin-right: 8px;
}

.earn-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.earn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.earn-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.earn-item i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.earn-action {
    font-size: 0.85rem;
    color: white;
    margin-bottom: 5px;
}

.earn-points {
    font-size: 0.8rem;
    color: #2ecc71;
    font-weight: 600;
}

/* Utiliser les points */
.loyalty-redeem-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.loyalty-redeem-section h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 15px;
}

.loyalty-redeem-section h4 i {
    color: #e07a5f;
    margin-right: 8px;
}

.redeem-value {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 12px;
    margin-bottom: 15px;
}

.value-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2ecc71;
}

.value-label {
    font-size: 0.9rem;
    color: #888;
}

.redeem-info {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
    text-align: center;
}

.redeem-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.redeem-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.redeem-tier.available {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.redeem-tier.locked {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.5;
}

.tier-cost {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.tier-reward {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

.redeem-tier.available .tier-reward {
    color: #2ecc71;
}

/* Responsive */
@media (max-width: 768px) {
    .loyalty-level-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .level-badge {
        flex-direction: column;
    }
    
    .points-display {
        text-align: center;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .earn-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .redeem-tiers {
        grid-template-columns: repeat(2, 1fr);
    }
}
