/* Size Guide Page Styles */

.page-header {
    background: var(--secondary-color);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--accent-rose);
    text-decoration: none;
}

.size-guide-page {
    padding: 60px 0;
}

.size-guide-intro {
    text-align: center;
    margin-bottom: 50px;
}

.size-guide-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.size-guide-intro p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.size-section {
    margin-bottom: 60px;
}

.size-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.size-section h3 i {
    color: var(--accent-rose);
}

.size-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.size-table thead {
    background: var(--accent-rose);
    color: var(--white);
}

.size-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.size-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-dark);
}

.size-table tbody tr:hover {
    background: #f8f8f8;
}

.size-table tbody tr:last-child td {
    border-bottom: none;
}

.measurement-instructions {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-rose);
}

.measurement-instructions h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.measurement-instructions ol {
    margin-left: 20px;
    line-height: 1.8;
}

.measurement-instructions li {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.measurement-instructions strong {
    color: var(--text-dark);
    font-weight: 600;
}

.tips-section {
    background: #f8f8f8;
    padding: 50px 30px;
    border-radius: 8px;
    margin-top: 60px;
}

.tips-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dark);
}

.tips-section h3 i {
    color: var(--accent-rose);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card i {
    font-size: 40px;
    color: var(--accent-rose);
    margin-bottom: 15px;
}

.tip-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.tip-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .size-guide-page {
        padding: 40px 0;
    }
    
    .size-guide-intro h2 {
        font-size: 24px;
    }
    
    .size-section h3 {
        font-size: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .size-table {
        font-size: 12px;
    }
    
    .size-table th,
    .size-table td {
        padding: 10px;
    }
}

