/* Club Widget Styles - Version Complète */
.club-widget,
.club-list-widget,
.club-dashboard-widget,
.club-benefits-widget,
.club-events-widget,
.club-discount-widget,
.club-referral-widget,
.club-stats-widget,
.club-contact-widget {
    margin-bottom: 30px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== TYPOGRAPHIE COMMUNE ===== */
.club-title,
.dashboard-title,
.benefits-title,
.discount-title,
.referral-title,
.stats-title,
.contact-title,
.events-title {
    margin-bottom: 20px;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #212529;
}

.club-subtitle {
    margin-bottom: 30px;
    color: #6c757d;
    font-size: clamp(14px, 3vw, 16px);
}

/* ===== FILTERS ===== */
.club-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 14px 45px 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.search-box input:focus {
    border-color: #2fb5d2;
    outline: none;
    box-shadow: 0 0 0 4px rgba(47, 181, 210, 0.1);
}

.search-box .material-symbols-outlined {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    pointer-events: none;
}

.category-filter select {
    padding: 14px 40px 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    min-width: 200px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.category-filter select:focus {
    border-color: #2fb5d2;
    outline: none;
    box-shadow: 0 0 0 4px rgba(47, 181, 210, 0.1);
}

/* ===== LOGIN REQUIRED ===== */
.login-required,
.login-prompt {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

.login-required .material-symbols-outlined,
.login-prompt .material-symbols-outlined {
    font-size: 48px;
    color: #adb5bd;
    margin-bottom: 15px;
}

.login-required p,
.login-prompt p {
    color: #6c757d;
    margin-bottom: 20px;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #2fb5d2;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #2593aa;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(47, 181, 210, 0.3);
}

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

.section-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #212529;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #2fb5d2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

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

.view-all .material-symbols-outlined {
    font-size: 18px;
}

/* ===== CLUB GRID VIEW ===== */
.clubs-grid-container {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.club-grid-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
}

.club-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(47, 181, 210, 0.3);
}

.club-grid-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.club-grid-header {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.club-grid-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.2);
}

.club-grid-icon .material-symbols-outlined {
    font-size: 32px;
    color: #fff;
}

.club-grid-badge {
    width: 28px;
    height: 28px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.club-grid-badge.status-approved {
    background: #28a745;
    color: #fff;
}

.club-grid-badge.status-pending {
    background: #ffc107;
    color: #212529;
}

.club-grid-name {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #212529;
}

.club-grid-description {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.club-grid-meta {
    margin-bottom: 16px;
}

.club-grid-members {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 30px;
    font-size: 13px;
    color: #495057;
}

.club-grid-members .material-symbols-outlined {
    font-size: 16px;
}

.club-grid-benefits {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-tag {
    padding: 4px 10px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.benefit-more {
    padding: 4px 10px;
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 20px;
    font-size: 12px;
}

.club-grid-footer {
    margin-top: auto;
}

.club-grid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #2fb5d2;
    color: #fff;
}

.club-grid-btn:hover {
    background: #2593aa;
    transform: scale(0.98);
}

/* ===== LIST VIEW ===== */
.club-list-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.club-list-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #e9ecef;
}

.club-list-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .club-list-content {
        flex-wrap: nowrap;
    }
}

.club-list-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.club-list-icon .material-symbols-outlined {
    font-size: 30px;
    color: #fff;
}

.club-list-details {
    flex: 1;
    min-width: 200px;
}

.club-list-name {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #212529;
}

.club-list-description {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.club-list-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.club-list-members {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6c757d;
    font-size: 13px;
}

.club-list-members .material-symbols-outlined {
    font-size: 16px;
}

.club-list-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    flex-wrap: wrap;
}

.club-list-badge {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.club-list-badge.status-approved {
    background: #d4edda;
    color: #155724;
}

.club-list-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.club-list-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.club-list-btn.btn-login {
    background: #6c757d;
    color: #fff;
}

.club-list-btn.btn-login:hover {
    background: #5a6268;
}

/* ===== COMPACT VIEW ===== */
.club-compact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.club-item-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.club-item-compact:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.club-status-badge {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.club-status-badge.status-approved {
    background: #d4edda;
    color: #155724;
}

.club-status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* ===== BUTTONS ===== */
.club-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    width: 100%;
}

.btn-join {
    background: #2fb5d2;
    color: #fff;
    box-shadow: 0 4px 12px rgba(47, 181, 210, 0.2);
}

.btn-join:hover {
    background: #2593aa;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(47, 181, 210, 0.3);
}

.btn-leave {
    background: #dc3545;
    color: #fff;
}

.btn-leave:hover {
    background: #c82333;
}

.btn-pending,
.btn-cancel {
    background: #ffc107;
    color: #212529;
}

.btn-discover {
    display: inline-block;
    padding: 10px 25px;
    background: #2fb5d2;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-discover:hover {
    background: #2593aa;
    transform: translateY(-2px);
}

/* ===== DASHBOARD STYLES ===== */
.club-dashboard,
.club-dashboard-widget {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 25px;
}

.dashboard-header {
    margin-bottom: 25px;
}

.dashboard-header h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
}

.dashboard-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 140px;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2fb5d2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

.welcome-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    color: #fff;
}

.welcome-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.welcome-content p {
    opacity: 0.9;
    font-size: 14px;
}

.welcome-illustration .material-symbols-outlined {
    font-size: 48px;
    opacity: 0.8;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.blue {
    background: #e3f2fd;
    color: #1976d2;
}

.stat-icon.orange {
    background: #fff3e0;
    color: #f57c00;
}

.stat-icon.green {
    background: #e8f5e9;
    color: #388e3c;
}

.stat-icon.purple {
    background: #f3e5f5;
    color: #8e24aa;
}

.stat-icon .material-symbols-outlined {
    font-size: 28px;
}

.stat-content {
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 13px;
    color: #6c757d;
}

/* ===== CLUBS MINI LIST ===== */
.clubs-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.club-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.club-mini-item.status-approved {
    border-left-color: #28a745;
}

.club-mini-item.status-pending {
    border-left-color: #ffc107;
}

.club-mini-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-mini-icon .material-symbols-outlined {
    font-size: 20px;
    color: #fff;
}

.club-mini-info {
    flex: 1;
}

.club-mini-info h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #212529;
}

.club-mini-role {
    font-size: 12px;
    color: #6c757d;
}

.club-mini-badge {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.club-mini-badge.status-approved {
    background: #d4edda;
    color: #155724;
}

.club-mini-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* ===== DISCOUNTS MINI LIST ===== */
.discounts-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discount-mini-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #e9ecef;
}

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

.discount-club {
    font-weight: 600;
    color: #212529;
}

.discount-value {
    font-weight: 700;
    color: #28a745;
    background: #e8f5e9;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 13px;
}

.discount-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.discount-code code {
    font-size: 14px;
    font-weight: 600;
    color: #2fb5d2;
    background: none;
    padding: 0;
}

.copy-code {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 4px;
}

.copy-code:hover {
    color: #2fb5d2;
}

.discount-validity small {
    color: #6c757d;
    font-size: 11px;
}

/* ===== EVENTS SECTION ===== */
.events-section {
    margin-top: 30px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.event-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.event-date {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.event-day {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-info {
    flex: 1;
}

.event-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #212529;
}

.event-info p {
    color: #6c757d;
    font-size: 13px;
}

.event-link {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.event-link:hover {
    color: #2fb5d2;
}

/* ===== BENEFITS STYLES ===== */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f3f5;
}

.benefit-header {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon .material-symbols-outlined {
    font-size: 28px;
}

.benefit-club-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.benefit-body {
    padding: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f5;
    color: #212529;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list .material-symbols-outlined {
    color: #28a745;
    font-size: 20px;
}

.benefit-discount {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.discount-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e67e22;
    font-weight: 600;
    margin-bottom: 10px;
}

.discount-code-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.discount-code-wrapper code {
    font-size: 16px;
    font-weight: 700;
    color: #2fb5d2;
}

.benefits-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-group {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.benefit-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.benefit-group-title .material-symbols-outlined {
    color: #667eea;
}

.benefit-items {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.benefit-items li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f5;
    color: #495057;
}

.benefit-discount-code {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.benefit-discount-code strong {
    color: #212529;
}

.benefit-discount-code .code {
    font-family: monospace;
    font-size: 16px;
    font-weight: 700;
    color: #2fb5d2;
    background: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.copy-code-btn {
    background: #2fb5d2;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.copy-code-btn:hover {
    background: #2593aa;
}

/* ===== DISCOUNTS STYLES ===== */
.discounts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.discount-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.discount-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.club-badge {
    font-weight: 600;
    font-size: 16px;
}

.discount-percent {
    font-size: 24px;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 30px;
}

.discount-card-body {
    padding: 20px;
}

.code-box {
    margin-bottom: 15px;
}

.code-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 6px;
}

.code-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
}

.code {
    font-family: monospace;
    font-size: 18px;
    font-weight: 700;
    color: #2fb5d2;
    letter-spacing: 1px;
}

.validity {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 13px;
}

.validity .material-symbols-outlined {
    font-size: 16px;
}

.discount-card-footer {
    padding: 20px;
    border-top: 1px solid #f1f3f5;
}

.shop-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #2fb5d2;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.shop-now:hover {
    background: #2593aa;
}

/* ===== REFERRAL STYLES ===== */
.referral-content {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.referral-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.referral-icon .material-symbols-outlined {
    font-size: 40px;
    color: #fff;
}

.referral-text {
    margin-bottom: 25px;
}

.referral-text p {
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.6;
}

.referral-text .reward {
    color: #28a745;
    font-size: 18px;
}

.referral-link-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: left;
}

.link-label {
    display: block;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 8px;
}

.link-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.referral-link {
    flex: 1;
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #212529;
}

.copy-link {
    background: #2fb5d2;
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-link:hover {
    background: #2593aa;
}

.share-options {
    text-align: left;
}

.share-options p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.email {
    background: #6c757d;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== STATS STYLES ===== */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stats-section {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stats-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212529;
}

.global-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.global-stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.global-stat-item .stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-stat-item .stat-icon .material-symbols-outlined {
    font-size: 24px;
    color: #fff;
}

.personal-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.personal-stat-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
}

.personal-stat-item.full-width {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.stat-date {
    font-weight: 600;
    color: #2fb5d2;
}

/* ===== CONTACT STYLES ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-item .material-symbols-outlined {
    font-size: 28px;
    color: #2fb5d2;
    background: #e3f2fd;
    padding: 12px;
    border-radius: 12px;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    text-decoration: none;
}

.info-value:hover {
    color: #2fb5d2;
}

.contact-form-section {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212529;
}

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

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #212529;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    border-color: #2fb5d2;
    outline: none;
    box-shadow: 0 0 0 4px rgba(47, 181, 210, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.btn-send {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    background: #2fb5d2;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: #2593aa;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(47, 181, 210, 0.3);
}

/* ===== NO RESULTS / EMPTY STATES ===== */
.no-clubs,
.no-benefits,
.no-discounts,
.no-results-message {
    text-align: center;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 16px;
}

.no-clubs .material-symbols-outlined,
.no-benefits .material-symbols-outlined,
.no-discounts .material-symbols-outlined,
.no-results-message .material-symbols-outlined {
    font-size: 48px;
    color: #adb5bd;
    margin-bottom: 15px;
}

.no-clubs p,
.no-benefits p,
.no-discounts p,
.no-results-message p {
    color: #6c757d;
    margin-bottom: 20px;
}

.btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #2fb5d2;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-browse:hover {
    background: #2593aa;
    transform: translateY(-2px);
}

.reset-filters {
    padding: 10px 20px;
    background: #e9ecef;
    border: none;
    border-radius: 8px;
    color: #495057;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.reset-filters:hover {
    background: #dee2e6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.club-grid-card,
.club-list-item,
.benefit-card,
.discount-card {
    animation: fadeInUp 0.5s ease forwards;
}

.club-grid-card:nth-child(2) { animation-delay: 0.1s; }
.club-grid-card:nth-child(3) { animation-delay: 0.2s; }
.club-grid-card:nth-child(4) { animation-delay: 0.3s; }
.club-grid-card:nth-child(5) { animation-delay: 0.4s; }
.club-grid-card:nth-child(6) { animation-delay: 0.5s; }

/* ===== LOADING STATES ===== */
.club-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NOTIFICATIONS ===== */
.club-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    max-width: 400px;
}

.club-notification.success {
    border-left: 4px solid #28a745;
}

.club-notification.error {
    border-left: 4px solid #dc3545;
}

.club-notification .material-symbols-outlined {
    font-size: 24px;
}

.club-notification.success .material-symbols-outlined {
    color: #28a745;
}

.club-notification.error .material-symbols-outlined {
    color: #dc3545;
}

.close-notification {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #adb5bd;
}

.close-notification:hover {
    color: #212529;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
/* Mobile (≤ 576px) */
@media (max-width: 576px) {
    .clubs-grid-container,
    .benefits-cards,
    .discounts-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .club-grid-content,
    .benefit-card,
    .discount-card {
        padding: 16px;
    }
    
    .club-filters {
        flex-direction: column;
    }
    
    .search-box,
    .category-filter select {
        width: 100%;
    }
    
    .club-list-content {
        flex-direction: column;
        text-align: center;
    }
    
    .club-list-actions {
        width: 100%;
        justify-content: center;
    }
    
    .club-list-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-stats,
    .stats-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    
    .stat-item,
    .stat-card {
        width: 100%;
    }
    
    .club-item {
        flex-wrap: wrap;
    }
    
    .btn-leave {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

/* Tablette (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .clubs-grid-container,
    .benefits-cards,
    .discounts-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .club-filters {
        flex-direction: row;
    }
    
    .search-box {
        flex: 2;
    }
    
    .category-filter {
        flex: 1;
    }
    
    .club-list-content {
        flex-wrap: wrap;
    }
    
    .club-list-actions {
        width: 100%;
        justify-content: flex-start;
        padding-left: 80px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (≥ 1200px) */
@media (min-width: 1200px) {
    .clubs-grid-container[data-columns="2"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clubs-grid-container[data-columns="3"] {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .clubs-grid-container[data-columns="4"] {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-cards[data-columns="2"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-cards[data-columns="3"] {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Print Styles */
@media print {
    .club-filters,
    .club-actions,
    .btn-join,
    .btn-leave,
    .btn-login,
    .btn-discover,
    .copy-code,
    .share-buttons,
    .form-actions {
        display: none !important;
    }
    
    .club-grid-card,
    .club-list-item,
    .benefit-card,
    .discount-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
