

    /* Wrestling Gear/ landing Page/ Custom Apparrel */
 body {
    background-color: #F8F9FA !important;
}
 .size-guide-section {
    max-width: 1250px !important;
    margin: 80px auto;
    padding: 0 20px;
}

.size-chart-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.size-chart-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.table-wrapper {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
}

.size-table th,
.size-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.size-table th {
    background-color: #F8F9FA;
    font-weight: 600;
    color: #000;
}

.size-table td {
    background: #fff;
}

.size-table tr:hover td {
    background-color: #F8F9FA;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .size-chart-wrapper {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .size-chart-wrapper {
        padding: 20px;
    }
    
    .size-table th,
    .size-table td {
        padding: 12px;
        font-size: 14px;
    }
}
 /* Featured Stores Section */
.featured-stores-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.store-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
    display: block;
    height: 100%;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.store-card-inner {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.store-logo-wrapper {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.store-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px;
    text-align: center;
}

.view-store-link {
    color: #000 !important;
    background-color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border: 1px solid transparent !important;
    transition: all 0.3s ease !important;
}

.store-card:hover .view-store-link {
    background-color: #000 !important;
    color: #fff !important;
}

