/* WAAT Pro Audio Elementor Styles */
.waat-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.waat-category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    height: 300px;
    background: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.waat-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.waat-category-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.waat-category-card:hover .waat-category-img {
    opacity: 0.8;
}
.waat-category-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}
.waat-category-content h3 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Single Product Widget - Match Mockup! */
.waat-single-product-hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #0f1012; /* Deep cinematic background */
    color: #f1f1f1;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.waat-product-header-row {
    width: 100%;
}
.waat-product-body-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.waat-product-visuals {
    flex: 1 1 400px; /* Reduced basis to prevent pop-out */
    min-width: 250px;
}
.waat-product-details {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 250px;
}

/* 3D Wrapper / Image viewer */
.waat-3d-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #1b1d20;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.waat-image-layer {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.waat-iframe-layer {
    width: 100%;
    height: 100%;
    border: none;
    background: #111;
}

/* Product Gallery Row */
.waat-product-gallery {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.waat-gallery-thumb {
    width: 70px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.waat-gallery-thumb:hover {
    opacity: 1;
}
.waat-gallery-thumb.active {
    opacity: 1;
    border-color: #fca311;
}

/* Action Buttons */
.waat-product-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    background: #1c1e21;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.waat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    background: transparent;
    color: #ccc;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
}
.waat-btn:hover {
    border-color: rgba(252, 163, 17, 0.5);
    box-shadow: 0 0 15px rgba(252, 163, 17, 0.2);
    color: #fff;
}
.waat-btn.active-btn {
    border-color: #fca311;
    color: #fca311;
}

/* Details Section */
.waat-product-header-row h1 {
    font-size: 2.2rem;
    margin: 0 0 15px 0;
    line-height: 1.2;
    color: #fff;
}
.waat-single-excerpt {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 900px; /* Stop excerpt from spanning entirely if on ultrawide */
}
.waat-item-price {
    font-size: 1.8rem;
    color: #fca311;
    margin: 0 0 0 0;
    font-weight: 600;
}
.waat-item-price bdi {
    font-weight: normal;
}

/* Add to Cart styling to match Mockup Gradient */
.waat-add-to-cart-wrapper form.cart {
    margin-bottom: 30px;
    background: #1c1e21;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
/* Variation Selectors Formatting */
.waat-add-to-cart-wrapper table.variations {
    width: 100%;
    margin-bottom: 15px;
    border-collapse: collapse;
}
.waat-add-to-cart-wrapper table.variations td {
    padding: 10px 0;
    vertical-align: middle;
}
.waat-add-to-cart-wrapper table.variations td.label {
    width: 30%;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.waat-add-to-cart-wrapper table.variations td.value {
    width: 70%;
}
.waat-add-to-cart-wrapper table.variations select {
    width: 100%;
    padding: 12px;
    background: #0f1012;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    appearance: none; /* remove default arrow */
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}
.waat-add-to-cart-wrapper table.variations select:focus {
    border-color: #fca311;
}
.waat-add-to-cart-wrapper .waat-defaults-btn {
    display: inline-block;
    color: #fca311;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border: 1px solid rgba(252, 163, 17, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}
.waat-add-to-cart-wrapper .waat-defaults-btn:hover {
    background: rgba(252, 163, 17, 0.1);
    border-color: #fca311;
    color: #fff;
}
.waat-add-to-cart-wrapper .woocommerce-variation-price {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

/* Quantity and Button Wrapper */
.waat-add-to-cart-wrapper .woocommerce-variation-add-to-cart,
.waat-add-to-cart-wrapper div.quantity {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}
/* WooCommerce Prices globally in the hero */
.waat-single-product-hero .woocommerce-Price-amount.amount {
    color: #fca311 !important;
    font-weight: bold !important;
    font-size: 1.1em;
}

/* WooPay Express Checkouts */
#wcpay-express-checkout-wrapper,
#wcpay-woopay-button, 
.woopay-express-button {
    width: 100% !important;
    min-height: 48px !important;
    display: block !important;
    margin-top: 15px;
    clear: both;
}
.waat-add-to-cart-wrapper div.quantity {
    display: flex;
    align-items: center;
    background: #0f1012;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    overflow: hidden;
    height: 50px;
}
.qty-btn {
    background: transparent;
    border: none;
    color: #fca311;
    font-size: 1.5rem;
    width: 40px;
    height: 100%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover {
    background: rgba(255,255,255,0.05);
}
.waat-add-to-cart-wrapper div.quantity input.qty {
    width: 50px;
    background: transparent;
    border: none;
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    padding: 0;
    -moz-appearance: textfield;
}
.waat-add-to-cart-wrapper div.quantity input.qty::-webkit-outer-spin-button,
.waat-add-to-cart-wrapper div.quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}
.waat-add-to-cart-wrapper button.single_add_to_cart_button {
    flex: 1;
    padding: 0 15px !important;
    height: 50px !important;
    background: linear-gradient(90deg, #fca311, #ff8c00) !important;
    border: none !important;
    border-radius: 20px !important;
    color: #000 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    box-shadow: 0 10px 20px rgba(252, 163, 17, 0.3) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    font-size: 1rem !important;
    letter-spacing: 1px !important;
    margin-top: 0;
}
.waat-add-to-cart-wrapper button.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(241,39,17,0.5) !important;
}

/* -------------------------------------
 * MOBILE RESPONSIVE QUERIES 
 * ------------------------------------- */

@media (max-width: 900px) {
    .waat-single-product-hero {
        flex-direction: column;
        padding: 24px;
        gap: 30px;
    }
    .waat-product-visuals, 
    .waat-product-details {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }
    .waat-3d-wrapper {
        height: 300px;
    }
    .waat-product-details h1 {
        font-size: 1.8rem;
    }
    .waat-shop-container {
        flex-direction: column;
    }
    .waat-shop-sidebar {
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .waat-category-grid {
        grid-template-columns: 1fr;
    }
    .waat-shop-grid {
        grid-template-columns: 1fr !important;
    }
    .waat-product-gallery {
        justify-content: center;
        flex-wrap: wrap;
    }
    .waat-add-to-cart-wrapper table.variations td {
        display: block;
        width: 100% !important;
        padding: 5px 0;
    }
    .waat-add-to-cart-wrapper table.variations td.label {
        padding-top: 15px;
    }
}

/* Specs Table Matching Mockup */
.waat-spec-table {
    background: #1b1d20;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}
.waat-spec-title {
    color: #ccc;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 0 0 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.waat-spec-table table {
    width: 100%;
    border-collapse: collapse;
}
.waat-spec-table th, .waat-spec-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}
.waat-spec-table tr:last-child th, .waat-spec-table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
}
.waat-spec-table th {
    color: #aaa;
    text-align: left;
    font-weight: normal;
}
.waat-spec-table td {
    color: #fff;
    text-align: right;
}

/* Shop Grid */
.waat-shop-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 100%;
}
.waat-shop-sidebar {
    flex: 0 0 250px;
    background: #1a1a1a;
    padding: 24px;
    border-radius: 12px;
    color: #fff;
}
.waat-filter-group {
    margin-bottom: 24px;
}
.waat-filter-group h4 {
    margin: 0 0 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #ccc;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}
.waat-filter-label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}
.waat-filter-label input {
    margin-right: 10px;
    accent-color: #fca311;
}

/* Mobile Sidebar Specifics */
.waat-mobile-filter-btn {
    display: none;
}
.waat-sidebar-close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}
.waat-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 999998;
    backdrop-filter: blur(5px);
}
.waat-sidebar-overlay.active {
    display: block;
}

@media (max-width: 900px) {
    .waat-shop-container {
        flex-direction: column !important;
    }
    .waat-shop-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .waat-mobile-filter-btn {
        display: flex !important;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        z-index: 9999;
        width: 80% !important;
        max-width: 300px;
        border-radius: 50px !important;
    }
    .waat-sidebar-close-btn {
        display: block !important;
    }
    .waat-shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px; /* Hidden off-canvas */
        width: 300px;
        height: 100vh;
        z-index: 999999;
        overflow-y: auto;
        border-radius: 0;
        border-right: 1px solid rgba(255,255,255,0.1);
        transition: left 0.3s ease;
        margin: 0;
    }
    .waat-shop-sidebar.active {
        left: 0;
    }
}
.waat-shop-main {
    flex: 1;
    min-width: 0; /* Prevents internal horizontal scroll blocks from stretching the entire page bounding box */
}
.waat-shop-grid {
    display: grid;
    grid-template-columns: repeat(var(--desk-cols, 3), 1fr);
    gap: 20px;
}
.waat-shop-item {
    background: #111;
    border-radius: 12px;
    color: #fff;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.waat-shop-item:hover {
    transform: translateY(-5px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(252, 163, 17, 0.2) !important;
    border-color: #fca311 !important;
    z-index: 10;
}
.waat-item-img-wrap {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.waat-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}
.waat-shop-item:hover .waat-item-img {
    transform: scale(1.1) !important; /* Aggressive organic grow effect on image natively inside wrapper */
}
.waat-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.waat-card-footer {
    margin-top: auto;
}
.waat-item-sku {
    color: #888;
    font-size: 0.8rem;
    margin: 15px 0 10px;
    text-transform: uppercase;
}
/* Tooltips Removed Globally based on user request */

/* Category Strip */
.waat-categories-strip {
    display: flex !important;
    overflow-x: auto !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
    padding-bottom: 10px !important;
    flex-wrap: nowrap !important;
}
.waat-categories-strip::-webkit-scrollbar {
    height: 6px;
}
.waat-categories-strip::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}
.waat-categories-strip::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}
.waat-cat-strip-card {
    flex: 0 0 200px !important;
    min-width: 200px !important;
    background: #000000 !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex !important;
    flex-direction: column !important;
}
.waat-cat-strip-card:hover {
    transform: translateY(-3px) !important;
    border-color: #fca311 !important;
}
.waat-cat-strip-img {
    height: 120px !important;
    width: 100% !important;
    display: block !important;
    background-size: cover !important;
    background-position: center !important;
}
.waat-cat-info {
    padding: 15px !important;
    color: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    background: #000000 !important;
}
.waat-cat-info strong { 
    font-size: 1.1rem !important; 
    text-transform: uppercase !important; 
    margin-bottom: 5px !important; 
    color: #ffffff !important; 
}
.waat-cat-info span { 
    color: #fca311 !important; 
    font-size: 0.85rem !important; 
    font-weight: bold !important; 
}
.waat-item-title {
    font-size: 1.1rem;
    margin: 0 0 10px;
    text-transform: uppercase;
}
/* Aggressive override for global theme anchor tags wrapping h3 headers */
#content .waat-shop-main .waat-shop-grid .waat-shop-item h3 a,
.waat-item-title a,
.waat-item-title {
    color: #ffffff !important;
    text-decoration: none !important;
}
.waat-item-price {
    font-size: 1.2rem;
    color: #fca311;
    font-weight: bold;
}
.waat-btn-primary {
    display: block;
    text-align: center;
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 15px;
    text-transform: uppercase;
}
.waat-btn-primary:hover {
    background: #e0e0e0;
}

/* -------------------------------------
 * PRODUCT CATALOG WIDGET 
 * ------------------------------------- */

.waat-catalog-container { display: flex; gap: 40px; margin-top: 20px;}
.waat-catalog-sidebar { flex: 0 0 250px; }
.waat-sticky-nav { position: sticky; top: 100px; background: #1a1a1a; padding: 20px; border-radius: 12px;}
.waat-sticky-nav h4 { color: #fff; margin-top: 0; text-transform: uppercase; border-bottom: 1px solid #333; padding-bottom: 10px; margin-bottom: 15px; }
.waat-sticky-nav ul { list-style: none; padding: 0; margin: 0; }
.waat-sticky-nav li { margin-bottom: 15px; }
.waat-sticky-nav a { color: #aaa; text-decoration: none; font-size: 0.95rem; font-weight: bold; transition: color 0.2s;}
.waat-sticky-nav a:hover { color: #fca311; }
.waat-catalog-main { flex: 1; min-width: 0; }
.waat-catalog-section { margin-bottom: 60px; scroll-margin-top: 80px;}
.waat-catalog-header { position: relative; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center; min-height: 250px; display: flex; align-items: flex-end;}
.waat-catalog-header-overlay { background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%); width: 100%; padding: 40px 30px; position: relative; z-index: 2;}
.waat-catalog-header-overlay h2 { color: #fff; margin: 0 0 10px; font-size: 2.2rem; text-transform: uppercase;}
.waat-catalog-header-overlay p { color: #ddd; margin: 0; max-width: 800px; font-size: 1rem; line-height: 1.6; }
.waat-catalog-subgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin-top: 20px; }
.waat-subgrid-card { background: #111; padding: 15px; border-radius: 12px; border: 1px solid #222; text-align: center; display: flex; flex-direction: column;}
.waat-subgrid-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; background: #222;}
.waat-subgrid-card h5 { color: #fff; margin: 0 0 10px; font-size: 0.95rem; flex-grow: 1;}
.waat-subgrid-card h5 a { color: #ccc; text-decoration: none; }
.waat-subgrid-card h5 a:hover { color: #fff; }
.waat-subgrid-card p { color: #fca311; margin: 0; font-size: 1rem; font-weight: bold; }

@media (max-width: 900px) {
    .waat-catalog-container { flex-direction: column; }
    .waat-catalog-sidebar { display: none; } /* Hide sticky sidebar on narrow screens */
}

/* Custom Swatches replacing Selects */
.waat-swatch-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
}
.waat-swatch-box {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 5px;
    background: #1c1e21;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #ccc;
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.waat-swatch-box span.waat-swatch-text {
    width: 100%;
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.waat-swatch-box:hover {
    border-color: rgba(252, 163, 17, 0.5);
    background: #2a2c30;
}
.waat-swatch-box.selected {
    border-color: #fca311;
    background: rgba(252, 163, 17, 0.1);
    color: #fff;
    font-weight: 600;
}

/* Tooltip for Swatch */
.waat-swatch-box .waat-tooltip {
    visibility: hidden;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 99;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    white-space: nowrap;
    border: 1px solid rgba(252, 163, 17, 0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.waat-swatch-box .waat-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}
.waat-swatch-box:hover .waat-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Hide native selects while swatches run */
.waat-native-select-hidden select {
    display: none !important;
}
/* -------------------------------------
 * BOTTOM TABS
 * ------------------------------------- */

.waat-hero-tabs-container {
    flex: 1 1 100%;
    width: 100%;
    margin-top: 40px;
    background: #1c1e21;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}
.waat-hero-tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}
.waat-tab-trigger {
    background: transparent;
    border: none;
    color: #888;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.waat-tab-trigger:hover {
    color: #ccc;
}
.waat-tab-trigger.active {
    color: #fca311;
}
.waat-tab-trigger.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fca311;
}
.waat-tab-pane {
    display: none;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.8;
}
.waat-tab-pane.active-pane {
    display: block;
}
.waat-additional-table {
    width: 100%;
    border-collapse: collapse;
}
.waat-additional-table th, .waat-additional-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.waat-additional-table th {
    color: #fff;
    text-align: left;
    width: 30%;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.waat-additional-table td {
    color: #aaa;
}

@media (max-width: 900px) {
    .waat-hero-tabs-nav {
        flex-direction: column;
        gap: 10px;
        border-bottom: none;
    }
}
