.elementor-852 .elementor-element.elementor-element-f8dbca3{--display:flex;--justify-content:center;}.elementor-852 .elementor-element.elementor-element-f8dbca3.e-con{--align-self:center;}.elementor-852 .elementor-element.elementor-element-ea2e8b5{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow: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:1524px;}}/* Start custom CSS for html, class: .elementor-element-ea2e8b5 *//* TeeOne Size Guide - Elementor Optimized CSS */
/* Elementor Reset and Base Styles */
.size-guide-popup * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Main Container */
.size-guide-popup {
    max-width: 800px;
    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 */
.size-guide-body {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
    width: 100%;
}

/* Size Guide Image */
.size-guide-img {
    flex: 0 0 250px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.size-guide-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.size-guide-img img:hover {
    transform: scale(1.05);
}

/* Size Guide Table Container */
.size-guide-table {
    flex: 1;
    position: relative;
    width: 100%;
    min-width: 0;
}

/* Table Styles */
.tab-content {
    display: none;
    width: 100%;
    border-collapse: collapse;
    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: 18px 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    text-align: center;
    position: relative;
}

.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: 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.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);
}

/* Responsive Design */
@media (max-width: 768px) {
    .size-guide-popup {
        padding: 20px;
        margin: 10px;
        border-radius: 15px;
    }

    .size-guide-popup h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .size-guide-body {
        flex-direction: column;
        gap: 20px;
        align-items: stretch; /* Changed from center to stretch */
    }

    .size-guide-img {
        flex: none;
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
    }

    .size-guide-table {
        width: 100%;
        display: block; /* Changed from flex to block */
        justify-content: unset; /* Remove centering */
    }

    .tab-content {
        width: 100%;
        max-width: none; /* Remove max-width restriction */
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }

    .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;
    }

    .size-guide-model ul {
        flex-direction: column;
        gap: 15px;
    }

    .size-guide-tips {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .size-guide-popup {
        padding: 15px;
        margin: 5px;
    }

    .size-guide-popup h2 {
        font-size: 1.5rem;
    }

    .size-guide-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
        padding: 12px;
        margin: 0;
    }

    .size-guide-body {
        align-items: stretch; /* Changed from center to stretch */
    }

    .size-guide-img {
        width: 100%;
        max-width: 280px;
    }

    .size-guide-table {
        width: 100%;
        overflow-x: auto;
        display: block; /* Changed from flex to block */
        justify-content: unset; /* Remove centering */
    }

    .tab-content {
        width: 100%;
        min-width: unset; /* Remove min-width restriction */
        max-width: none; /* Remove max-width restriction */
        margin-left: auto;
        margin-right: auto;
        max-width: 350px;
    }

    .tab-content th,
    .tab-content td {
        padding: 10px 5px;
        font-size: 0.8rem;
    }

    .size-guide-tips li {
        font-size: 0.9rem;
    }

    .size-guide-model {
        padding: 20px;
    }

    .size-guide-model ul {
        gap: 10px;
    }

    .size-guide-model li {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
  .tab-btn::before {
    display: none !important;
  }
}

/* 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;
    }
}

/* --- UNIVERSAL RESPONSIVE SIZE GUIDE LAYOUT --- */
.size-guide-body {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
    width: 100%;
}
.size-guide-img {
    flex: 0 0 250px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.size-guide-table {
    flex: 1;
    width: 100%;
    min-width: 0;
    display: block;
}
.tab-content {
    width: 100%;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .size-guide-body {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    .size-guide-img {
        width: 100%;
        max-width: none;
        flex: none;
        justify-content: flex-start;
    }
    .size-guide-table {
        width: 100%;
        min-width: 0;
        display: block;
    }
    .tab-content {
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .size-guide-popup {
        padding: 8px;
        margin: 0;
        border-radius: 10px;
    }
    .size-guide-body {
        gap: 10px;
    }
    .size-guide-img {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    .size-guide-table {
        width: 100%;
        min-width: 0;
        display: block;
    }
    .tab-content {
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 0;
    }
    .tab-content th, .tab-content td {
        padding: 8px 4px;
        font-size: 0.85rem;
    }
}

@media (min-width: 901px) {
  .size-guide-body {
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .size-guide-img {
    max-width: 250px;
    width: 100%;
  }
  .size-guide-table {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tab-content {
    width: 100%;
    max-width: 400px;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
  }
  .tab-content th,
  .tab-content td {
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }
  .tab-content th:first-child,
  .tab-content td:first-child {
    min-width: 80px;
    width: 80px;
    text-align: left;
    padding-left: 28px;
  }
  .size-guide-table,
  .tab-content {
    max-width: 460px;
  }
  .tab-content th:last-child,
  .tab-content td:last-child {
    min-width: 90px;
    width: 90px;
    text-align: center;
    padding-right: 20px;
    padding-left: 12px;
  }
}

.size-guide-model,
.size-guide-model *,
.size-guide-model *:before,
.size-guide-model *:after {
    color: #fff !important;
}/* End custom CSS */