.elementor-1726 .elementor-element.elementor-element-749170b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:100px;--padding-bottom:60px;--padding-left:0px;--padding-right:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-1726 .elementor-element.elementor-element-b13104d.elementor-element{--align-self:center;}.elementor-1726 .elementor-element.elementor-element-b13104d .elementor-heading-title{font-family:"Sora", Sans-serif;font-size:3.3rem;font-weight:400;letter-spacing:-2.2px;color:#2D2D2D;}.elementor-1726 .elementor-element.elementor-element-56ed5ee{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-1726 .elementor-element.elementor-element-749170b{--padding-top:50px;--padding-bottom:80px;--padding-left:30px;--padding-right:30px;}.elementor-1726 .elementor-element.elementor-element-b13104d .elementor-heading-title{font-size:2.5rem;}}/* Start custom CSS for html, class: .elementor-element-f1ac58e *//* --- Global & Font Styles --- */
.size-guide-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    font-family: 'Poppins', sans-serif; /* Body Text */
    color: #1a1a1a;
    background-color: #ffffff;
}

.size-guide-container h2 {
    font-family: 'Sora', sans-serif; /* Headings */
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.size-guide-container h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #000000; /* Subtle modern detail */
    padding-left: 10px;
}

/* --- Tab Navigation Styling (Minimal) --- */
.size-tabs {
    display: flex;
    margin-top: 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e0e0e0; /* Very light separator */
}

.tab-button {
    background-color: transparent;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #666666;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.5px;
}

.tab-button:hover {
    color: #000000;
    background: none;
}

.tab-button.active {
    color: #000000;
    font-weight: 600;
}

/* Active tab indicator: A thin, solid black line */
.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000000;
}

/* --- Table Styling (Clean & Monochromatic) --- */
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 500px; /* Ensures table is wide enough to trigger scrolling on mobile */
}

/* Table Header - Clean and bold, no background color */
thead th {
    background-color: #ffffff; 
    color: #1a1a1a;
    font-weight: 600;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-bottom: 2px solid #000000; /* Key design element: thick black header line */
}

/* Table Body Rows */
tbody tr {
    transition: background-color 0.2s;
}

tbody tr:hover {
    background-color: #f8f8f8; /* Subtle hover effect */
}

tbody td {
    padding: 12px 0;
    font-size: 1rem;
    color: #333333;
    border-bottom: 1px dashed #e0e0e0; /* Soft, minimal row separator */
}

/* Highlight the primary size column */
tbody td:first-child {
    font-weight: 600;
    color: #000000;
}

/* Remove last dashed border for a clean finish */
tbody tr:last-child td {
    border-bottom: none;
}

/* Hide inactive content (tab switching) */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* --- Responsive Table Rule (Crucial for Mobile) --- */
.table-responsive {
    /* Enables horizontal scrolling when the table content is wider than the viewport */
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
}

/* Adjustments for smaller screens */
@media (max-width: 600px) {
    .size-guide-container h2 {
        font-size: 1.8rem;
    }
    .size-guide-container h3 {
        font-size: 1.1rem;
    }
    .tab-button {
        padding: 10px 10px;
        font-size: 0.9rem;
    }
    .size-guide-container {
        padding: 15px;
    }
}/* End custom CSS */