
    /* Sizing Guide Specific Styles */

/* Measurement Section */
.st-measure-section {
    margin-bottom: 60px;
}

.st-measure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
}

.st-measure-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.st-measure-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.st-measure-icon {
    width: 60px;
    height: 60px;
    background: #212529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.st-measure-icon i {
    font-size: 24px;
    color: #ffffff;
}

.st-measure-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #212529;
}

.st-measure-item p {
    color: #495057;
    line-height: 1.5;
}

.st-measure-tips {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.st-measure-tips p {
    margin: 10px 0;
    color: #495057;
}

.st-measure-tips i {
    color: #28a745;
    margin-right: 10px;
}

/* Size Charts */
.st-size-chart-section {
    margin-bottom: 60px;
}

.st-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.st-size-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.st-size-table th,
.st-size-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.st-size-table th {
    background: #212529;
    color: #ffffff;
    font-weight: bold;
}

.st-size-table tr:nth-child(even) {
    background: #f8f9fa;
}

.st-size-table td:first-child {
    font-weight: bold;
    background: #f8f9fa;
}

/* Recommendations Section */
.st-recommendations-section {
    margin-bottom: 60px;
}

.st-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.st-recommendations-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.st-recommendations-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #212529;
}

.st-recommendations-item ul {
    list-style: none;
    padding: 0;
}

.st-recommendations-item li {
    margin-bottom: 10px;
    color: #495057;
    position: relative;
    padding-left: 20px;
}

.st-recommendations-item li:before {
    content: "•";
    color: #212529;
    position: absolute;
    left: 0;
}

/* Help Section */
.st-help-section {
    margin-bottom: 60px;
}

.st-help-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.st-help-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #212529;
}

.st-help-card p {
    color: #495057;
    margin-bottom: 25px;
}

/* Notes Section */
.st-notes-section {
    margin-bottom: 60px;
}

.st-note {
    color: #6c757d;
    font-style: italic;
    margin-bottom: 10px;
}

.st-note i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .st-measure-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .st-recommendations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .st-table-wrapper {
        margin: 20px -20px;
        padding: 0 20px;
    }

    .st-size-table {
        font-size: 14px;
    }

    .st-help-card {
        padding: 30px 20px;
    }
}
