/**
 * Club Shop Styles
 */

.club-shop-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--theme-font-family) !important;
}

/* Banner Section */
.club-shop-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 50px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.club-shop-banner .full {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.banner-title {
    margin-bottom: 16px !important;

    /* Typography */
    color: var(--Secondary, #FFF);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 48px */
    letter-spacing: -0.96px;
    text-transform: uppercase;
}

.banner-subtitle {
    /* Typography */
    color: var(--Secondary, #FFF);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.28px;
    margin-bottom: 24px !important;
}

/* Search Bar */
.club-shop-banner .live-search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-bottom: 12px;
}

.club-search-input {
    width: 100%;
    height: 48px;
    padding: 0 48px 0 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
    color: #0D0D0D;
}

.club-search-input::placeholder {
    color: #999;
}

.club-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.club-search-btn:hover {
    color: #000;
}
/* Apply Wrapper */
.apply-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;

    /* Typography */
    color: var(--Secondary, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.32px;
}

/* Apply Club Button */
.apply-club-btn {
    border: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0);
    display: flex;
    padding: 12px 64px;
    align-items: center;
    gap: 12px;
    border-radius: 999px;

    /* Typography */
    text-decoration: none;
    color: #FFF;
}

.apply-club-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #FFF;
}

/* Alphabet Filter */
.alphabet-filter-container {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
}

.alphabet-filter-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 12px;
}

.alphabet-btn {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 1px solid #E5E5E5;
    background-color: #F7F7F7 !important;
    color: #0D0D0D;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.alphabet-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.alphabet-btn.active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #D4AF37;
}

.alphabet-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.alphabet-btn.disabled:hover {
    border-color: #E5E5E5;
    color: #0D0D0D;
}

/* Clubs Grid */
.clubs-grid-container {
    width: 100%;
    padding: 40px 20px 80px;
    background: #F5F5F5;

}

.clubs-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.club-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    text-decoration: none;
    color: #0D0D0D;
    transition: all 0.3s ease;
}

.club-card:hover {
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.club-card-logo {
    width: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
   background: #000;
    aspect-ratio: 1 / 1;
    padding: 1px;
}

.club-card-logo img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

.club-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D4AF37;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.club-card-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* No Results */
.no-results {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.no-results p {
    font-size: 18px;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .club-shop-banner {
        padding: 0 40px;
    }
}
@media (max-width: 768px) {
    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .club-shop-banner {
        height: 350px;
        padding: 0 20px;
    }

    .alphabet-filter-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 8px;
    }

    .alphabet-btn {
        height: 44px;
        font-size: 16px;
    }

    .clubs-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
    }

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