/* Outer Layout Flexbox */
.tabbed-faq-widget-df143a2f {
    display: flex;
    gap: 40px;
    font-family: inherit;
    box-sizing: border-box;
    align-items: flex-start;
}

/* Sidebar Styling */
.tabbed-faq-sidebar-df143a2f {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tab-nav-list-df143a2f {
    display: flex;
    flex-direction: column;
    background-color: transparent;
}

.tab-nav-item-df143a2f {
    background: none;
    border: none;
    padding: 14px 18px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    position: relative;
    outline: none;
}

.tab-nav-item-df143a2f:hover {
    color: #2C2C2C;
}

.tab-nav-item-df143a2f.active {
    font-weight: 600;
    color: #2C2C2C;
    background-color: #FBFBFC;
    border-left: 3px solid #E5A244;
}

/* Support Card Banner inside Left Sidebar */
.sidebar-banner-df143a2f {
    background-color: #F7F4EB;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner-title-df143a2f {
    font-size: 16px;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0;
}

.banner-btn-df143a2f {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #273152;
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 6px;
    transition: opacity 0.2s ease;
    text-align: center;
}

.banner-btn-df143a2f:hover {
    opacity: 0.9;
}

/* Right Content Area */
.tabbed-faq-content-area-df143a2f {
    flex-grow: 1;
}

.faq-container-df143a2f {
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    box-sizing: border-box;
    padding: 40px;
}

.faq-header-df143a2f {
    font-family: "Playfair Display", Georgia, serif;
    color: #2C2C2C;
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 400;
}

.faq-tab-intro-df143a2f {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Dynamic Forms (Track Order Option) styling */
.track-order-form-df143a2f {
    margin-top: 10px;
    max-width: 500px;
}

.form-group-df143a2f {
    margin-bottom: 16px;
}

.form-group-df143a2f input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 14px;
    color: #2C2C2C;
    background-color: #FAF9F6;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.form-group-df143a2f input:focus {
    border-color: #E5A244;
    outline: none;
}

.track-submit-btn-df143a2f {
    background-color: #E5A244;
    color: #FFFFFF;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.track-submit-btn-df143a2f:hover {
    background-color: #D49D42;
}

/* Accordion Specific Styling */
.faq-accordion-df143a2f {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #EDEDED;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-title-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 10px 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.faq-title-text {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    transition: color 0.2s ease;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #E5A244;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-item.active .faq-icon::before {
    transform: rotate(45deg);
}
.faq-item.active .faq-icon::after {
    transform: rotate(45deg);
}

.faq-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-content-inner {
    padding-top: 8px;
    padding-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
}

.faq-link-wrapper {
    margin-top: 15px;
}

.faq-link {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    border-bottom: 1px solid #2C2C2C;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.faq-link:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tabbed-faq-widget-df143a2f {
        flex-direction: column;
        gap: 30px;
    }
    .tabbed-faq-sidebar-df143a2f {
        width: 100%;
    }
    .tab-nav-list-df143a2f {
        flex-direction: row;
        overflow-x: auto;
        border-bottom: 1px solid #EDEDED;
    }
    .tab-nav-item-df143a2f {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }
    .tab-nav-item-df143a2f.active {
        border-left: none;
        border-bottom: 3px solid #E5A244;
    }
}
