
.team-store-promo {
    padding: 80px 20px;
    background-color: #f8f9fa;
    margin-top: 60px;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-store-promo h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #212529;
}

.team-store-promo .subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 48px;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon span {
    font-size: 24px;
    font-weight: 700;
}

.price-tag, .discount-icon, .star-icon, .lightning-icon {
    color: #212529;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #212529;
}

.feature-card p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.5;
}

.cta-container {
    margin-top: 48px;
}

.cta-button {
    display: inline-block;
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid black;
}

.cta-button:hover {
    background: white;
    color: black;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-store-promo {
        padding: 60px 20px;
    }
    
    .team-store-promo h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
}
    /* shop by club */

/* Add this to your theme's CSS */


/* Club Card Link Styles */
.club-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    max-width: 300px;
}

.club-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.club-card-link:hover .club-card {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Update existing club-card styles */
.club-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

/* Remove hover from card since it's now on the link */
.club-card:hover {
    transform: none;
    box-shadow: none;
}

/* Update view store link to look like a button */
.view-store-link {
    display: inline-block;
    color: #495057;
    font-size: 14px;
    margin-top: 10px;
    transition: color 0.2s ease;
}

.club-card-link:hover .view-store-link {
    color: #000;
}

/* Hero Section Styling */
.page-header {
    height: 300px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Search Bar Styling */
.club-search-container {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.club-search-container input[type="text"] {
    width: 100%;
    padding: 15px 25px;
    border: 2px solid #dee2e6;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.club-search-container input[type="text"]:focus {
    border-color: #212529;
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.1);
}

/* Grid Layout */
.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 40px;
    margin-bottom: 80px;
    /* Add these new properties */
    justify-items: center !important;
    justify-content: center !important;
}

.club-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 300px;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.club-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.club-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.club-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.view-store-link {
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

/* Expert Support Section */
.expert-support {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
}

.expert-support-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-left: 40px;
    margin-right: 40px;
}

.support-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.support-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.support-card p {
    color: #495057;
    margin-bottom: 20px;
}

.support-button {
    display: inline-block;
    background: #212529;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.support-button:hover {
    background: #343a40;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .clubs-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        padding: 0 20px;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}

/* Search Container and Results Positioning Fix */
.club-search-container {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 0 20px;
    position: relative; /* This is crucial for absolute positioning of results */
}

/* Ensure search results stay within container width */
.search-results {
    position: absolute;
    top: 100%;
    left: 20px; /* Match container padding */
    right: 20px; /* Match container padding */
    width: calc(100% - 40px); /* Account for padding */
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-top: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

/* Rest of your search result styles remain the same */
.search-result-item {
    padding: 12px 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.2s ease;
}

.search-result-logo {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-result-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.search-result-info {
    flex-grow: 1;
}

.search-result-button {
    flex-shrink: 0;
}

.search-result-button a {
    display: inline-block;
    padding: 8px 16px;
    background: #212529;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

/* Updated button styles */
.support-button {
    display: inline-block;
    background: black;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #212529;
    font-weight: 500;
}

.support-button:hover {
    background: #ffffff;
        color: black !important;
    border: 1px solid #212529;
}

/* No results message styling */
.no-results {
    text-align: center;
    padding: 30px;
    color: #6c757d;
    width: 100%;
    grid-column: 1 / -1;
}
