.elementor-852 .elementor-element.elementor-element-f8dbca3{--display:flex;--justify-content:center;}.elementor-852 .elementor-element.elementor-element-f8dbca3.e-con{--align-self:center;--flex-grow:0;--flex-shrink:0;}.elementor-852 .elementor-element.elementor-element-ea2e8b5{width:var( --container-widget-width, 113.388% );max-width:113.388%;--container-widget-width:113.388%;--container-widget-flex-grow:0;}.elementor-852 .elementor-element.elementor-element-ea2e8b5.elementor-element{--flex-grow:0;--flex-shrink:0;}#elementor-popup-modal-852{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-852 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-852 .dialog-close-button{display:flex;}#elementor-popup-modal-852 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(max-width:767px){.elementor-852 .elementor-element.elementor-element-ea2e8b5{--container-widget-width:95vw;--container-widget-flex-grow:0;width:var( --container-widget-width, 95vw );max-width:95vw;}}@media(min-width:768px){.elementor-852 .elementor-element.elementor-element-f8dbca3{--width:964px;}}/* Start custom CSS for html, class: .elementor-element-ea2e8b5 *//* TeeOne Size Guide - Enhanced Desktop Responsive CSS */
/* Elementor Reset and Base Styles */
.size-guide-popup * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Main Container */
.size-guide-popup {
    max-width: 1000px; /* Increased for better desktop display */
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

/* Header */
.size-guide-popup h2 {
    color: #7c4dff;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.size-guide-popup h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #7c4dff, #9c27b0);
    border-radius: 2px;
}

/* Tab Navigation */
.size-guide-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid #7c4dff;
    background: transparent;
    color: #7c4dff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    outline: none;
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, #7c4dff, #9c27b0);
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.tab-btn:hover::before {
    width: 300px;
    height: 300px;
}

.tab-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.3);
}

.tab-btn.active {
    background: linear-gradient(45deg, #7c4dff, #9c27b0);
    color: white;
    box-shadow: 0 8px 20px rgba(124, 77, 255, 0.3);
}

/* Main Content Area - Desktop First Approach */
.size-guide-body {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
    width: 100%;
    justify-content: flex-start;
}

/* Size Guide Image - Compact Left Position */
.size-guide-img {
    flex: 0 0 180px;
    width: 180px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.size-guide-img img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.size-guide-img img:hover {
    transform: scale(1.05);
}

/* Size Guide Table Container - Desktop Optimized */
.size-guide-table {
    flex: 1;
    max-width: none;
    min-width: 0;
    position: relative;
    width: 100%;
    overflow-x: auto;
}

/* Table Styles - Enhanced for Desktop */
.tab-content {
    display: none;
    width: 100%;
    min-width: 500px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.3s ease;
}

.tab-content.active {
    display: table;
}

.tab-content[style*="display:none"],
.tab-content[style*="display: none"] {
    display: none !important;
}

.tab-content thead {
    background: linear-gradient(135deg, #7c4dff, #9c27b0);
    color: white;
}

.tab-content th {
    padding: 15px 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    white-space: nowrap;
    min-width: 100px;
}

.tab-content th:first-child {
    text-align: center;
    min-width: 60px;
    padding-left: 15px;
}

.tab-content th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.tab-content td {
    padding: 12px 12px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: #333;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 100px;
}

.tab-content td:first-child {
    text-align: center;
    font-weight: 600;
    color: #7c4dff;
    padding-left: 15px;
    min-width: 60px;
}

.tab-content tbody tr {
    transition: all 0.3s ease;
}

.tab-content tbody tr:hover {
    background: linear-gradient(135deg, #f8f7ff, #f0f0ff);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.1);
}

.tab-content tbody tr:last-child td {
    border-bottom: none;
}

.tab-content tbody tr:nth-child(even) {
    background: #fafafa;
}

.tab-content tbody tr:nth-child(even):hover {
    background: linear-gradient(135deg, #f8f7ff, #f0f0ff);
}

/* Size Guide Tips */
.size-guide-tips {
    background: linear-gradient(135deg, #f8f7ff, #f0f0ff);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #7c4dff;
    position: relative;
}

.size-guide-tips::before {
    content: '💡';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    opacity: 0.7;
}

.size-guide-tips ul {
    list-style: none;
    margin-bottom: 15px;
}

.size-guide-tips li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.size-guide-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7c4dff;
    font-weight: bold;
    font-size: 1.1rem;
}

.size-guide-tips li:hover {
    color: #7c4dff;
    transform: translateX(5px);
}

.size-guide-tips p {
    color: #d32f2f;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 12px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(211, 47, 47, 0.2);
    margin: 0;
    position: relative;
}

.size-guide-tips p::before {
    content: '⚠️';
    margin-right: 8px;
}

/* Model Info */
.size-guide-model {
    background: linear-gradient(135deg, #7c4dff, #9c27b0);
    color: white !important;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.size-guide-model::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-50%) rotate(180deg); }
}

.size-guide-model h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.size-guide-model > p {
    margin-bottom: 20px;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.size-guide-model ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.size-guide-model li {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.size-guide-model li:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Large Desktop Screens (1200px+) */
@media (min-width: 1200px) {
    .size-guide-popup {
        max-width: 1200px;
        padding: 40px;
    }
    
    .size-guide-body {
        gap: 30px;
    }
    
    .size-guide-img {
        flex: 0 0 200px;
        width: 200px;
    }
    
    .size-guide-img img {
        max-width: 200px;
    }
    
    .size-guide-table {
        max-width: none;
        min-width: 0;
    }
    
    .tab-content {
        min-width: 550px;
    }
    
    .tab-content th,
    .tab-content td {
        padding: 18px 20px;
        font-size: 0.95rem;
        min-width: 120px;
    }
    
    .tab-content th:first-child,
    .tab-content td:first-child {
        min-width: 80px;
        padding-left: 25px;
    }
}

/* Medium Desktop Screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .size-guide-popup {
        max-width: 1000px;
    }
    
    .size-guide-body {
        gap: 25px;
    }
    
    .size-guide-img {
        flex: 0 0 180px;
        width: 180px;
    }
    
    .size-guide-table {
        max-width: none;
        min-width: 0;
    }
    
    .tab-content {
        min-width: 500px;
    }
    
    .tab-content th,
    .tab-content td {
        padding: 15px 15px;
        min-width: 110px;
    }
}

/* Small Desktop / Large Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .size-guide-popup {
        max-width: 900px;
        padding: 25px;
    }
    
    .size-guide-body {
        gap: 20px;
    }
    
    .size-guide-img {
        flex: 0 0 160px;
        width: 160px;
    }
    
    .size-guide-table {
        max-width: none;
        min-width: 0;
        overflow-x: auto;
    }
    
    .tab-content {
        min-width: 480px;
    }
    
    .tab-content th,
    .tab-content td {
        padding: 12px 10px;
        font-size: 0.8rem;
        min-width: 100px;
    }
    
    .tab-content th:first-child,
    .tab-content td:first-child {
        min-width: 60px;
        padding-left: 15px;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    .size-guide-popup {
        padding: 20px;
        margin: 10px;
        border-radius: 15px;
        max-width: 100%;
    }

    .size-guide-popup h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .size-guide-body {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .size-guide-img {
        flex: none;
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
    }

    .size-guide-img img {
        max-width: 280px;
    }

    .size-guide-table {
        width: 100%;
        max-width: 500px;
        min-width: 0;
        display: block;
    }

    .tab-content {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        min-width: 120px;
    }

    .tab-content th,
    .tab-content td {
        padding: 12px 8px;
        font-size: 0.85rem;
        min-width: 70px;
    }

    .tab-content th:first-child,
    .tab-content td:first-child {
        min-width: 50px;
        padding-left: 15px;
    }

    .size-guide-model ul {
        flex-direction: column;
        gap: 15px;
    }

    .size-guide-tips {
        padding: 20px;
    }
}

/* Mobile Landscape (481px - 599px) */
@media (max-width: 599px) {
    .size-guide-popup {
        padding: 15px;
        margin: 5px;
    }

    .size-guide-popup h2 {
        font-size: 1.6rem;
    }

    .size-guide-img {
        max-width: 250px;
    }

    .size-guide-img img {
        max-width: 240px;
    }

    .tab-content {
        max-width: 400px;
    }

    .tab-content th,
    .tab-content td {
        padding: 10px 6px;
        font-size: 0.8rem;
        min-width: 60px;
    }

    .tab-content th:first-child,
    .tab-content td:first-child {
        min-width: 45px;
        padding-left: 12px;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .size-guide-popup {
        padding: 12px;
        margin: 3px;
    }

    .size-guide-popup h2 {
        font-size: 1.4rem;
    }

    .size-guide-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .tab-btn {
        width: 100%;
        padding: 12px;
        margin: 0;
        font-size: 0.75rem;
    }

    .size-guide-img {
        max-width: 220px;
    }

    .size-guide-img img {
        max-width: 200px;
    }

    .size-guide-table {
        overflow-x: auto;
    }

    .tab-content {
        max-width: 350px;
        min-width: 320px;
    }

    .tab-content th,
    .tab-content td {
        padding: 8px 4px;
        font-size: 0.75rem;
        min-width: 50px;
    }

    .tab-content th:first-child,
    .tab-content td:first-child {
        min-width: 40px;
        padding-left: 8px;
    }

    .size-guide-tips li {
        font-size: 0.85rem;
    }

    .size-guide-model {
        padding: 15px;
    }

    .size-guide-model ul {
        gap: 8px;
    }

    .size-guide-model li {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Hide hover effects on mobile */
@media (max-width: 600px) {
    .tab-btn::before {
        display: none !important;
    }
    
    .tab-content tbody tr:hover {
        background: inherit;
        transform: none;
        box-shadow: none;
    }
    
    .tab-content tbody tr:nth-child(even):hover {
        background: #fafafa;
    }
}

/* Elementor Specific Overrides */
.elementor-widget-container .size-guide-popup {
    margin: 0;
}

.elementor-section .size-guide-popup {
    width: 100%;
    max-width: 100%;
}

.elementor-widget-html .size-guide-popup {
    font-family: inherit;
}

/* Prevent Elementor conflicts */
.elementor-widget .size-guide-popup h2 {
    margin-bottom: 30px !important;
    line-height: 1.2 !important;
}

.elementor-widget .size-guide-popup table {
    margin-bottom: 0 !important;
}

.elementor-widget .size-guide-popup ul {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.tab-btn:focus {
    outline: 2px solid #7c4dff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .size-guide-popup {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .tab-btn {
        display: none;
    }
    
    .tab-content {
        display: block !important;
    }
}

/* Force white text in model section */
.size-guide-model,
.size-guide-model *,
.size-guide-model *:before,
.size-guide-model *:after {
    color: #fff !important;
}

/* Size Chart Button Styles */
.size-chart-button-container {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.size-chart-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #5539a0, #7c4dff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(85, 57, 160, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.size-chart-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.size-chart-btn:hover::before {
    left: 100%;
}

.size-chart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(85, 57, 160, 0.4);
    background: linear-gradient(135deg, #7c4dff, #5539a0);
}

.size-chart-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(85, 57, 160, 0.3);
}

.size-chart-btn span {
    position: relative;
    z-index: 1;
}

.size-chart-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.size-chart-btn:hover svg {
    transform: translateX(3px) translateY(-2px);
}

/* Responsive adjustments for the button */
@media (max-width: 767px) {
    .size-chart-button-container {
        margin-top: 25px;
        padding: 15px 0;
    }
    
    .size-chart-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .size-chart-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .size-chart-btn svg {
        width: 14px;
        height: 14px;
    }
}/* End custom CSS */