/**
 * ChaosBoost Main Styles - MOBILE OPTIMIZED
 * Theme: Gold & Black Gaming
 * Perfectamente adaptado para todos los dispositivos
 */

:root {
    --primary-gold: #FFC908;
    --dark-gold: #A58019;
    --darker-gold: #3F310A;
    --black-bg: #070701;
    --dark-gray: #171300;
    --brown-dark: #362C00;
    --white: #FFFFFF;
    --gradient-gold: linear-gradient(90deg, #A58019 0%, #3F310A 100%);
    --gradient-gold-reverse: linear-gradient(90deg, rgba(255, 201, 8, 0) 0%, #FFD900 100%);
    --card-gradient: linear-gradient(0deg, rgba(54, 44, 0, 0.39) 0%, rgba(156, 127, 0, 0.75) 100%);
}

/* ========== GLOBAL STYLES ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.chaosboost-product-page {
    background-color: var(--black-bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.chaosboost-product-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 0px;
}

p {
    font-family: 'Inter', sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 22px !important;
    line-height: 122% !important;
    text-align: justify !important;
    color: #FFFFFF !important;
}

/* ========== NAVIGATION TABS ========== */
.chaosboost-nav-tabs,
.chaosboost-sub-tabs {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    align-items: center !important;
    vertical-align: middle !important;
}

.chaosboost-nav-tabs {
    margin-right: 15px !important;
}

.chaosboost-nav-tabs .tab-icon {
    position: relative;
    width: 238px;
    height: 59px;
    background: var(--gradient-gold);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
    border: none;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    transition: all 0.3s ease;
}

.chaosboost-nav-tabs .tab-icon img {
    width: 24px;
    height: 23px;
    object-fit: contain;
}

.chaosboost-nav-tabs .tab-icon.active,
.chaosboost-nav-tabs .tab-icon:hover {
    filter: brightness(1.1);
}

/* Sub-tabs */
.chaosboost-sub-tabs {
    gap: 12px !important;
    padding: 15px 20px !important;
    background: var(--gradient-gold) !important;
    border-radius: 12px !important;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
    flex-shrink: 0 !important;
    width: 1017px;
    height: 59px;
}

.chaosboost-sub-tabs .sub-tab {
    font-family: 'Rajdhani', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 86.14%;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0 !important;
    white-space: nowrap;
}

.sub-tab:hover,
.sub-tab.active {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* ========== MAIN GRID ========== */
.chaosboost-main-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-bottom: 60px;
    margin-top: 40px;
}

.chaosboost-content-column {
    width: 100%;
}

/* ========== PRODUCT TITLE & DESCRIPTION ========== */
.product-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 86.14%;
    color: var(--white);
    margin-bottom: 30px;
}

.product-description {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 122%;
    text-align: justify;
    color: var(--white);
    margin-bottom: 40px;
    border-radius: 0 !important;
    overflow: visible !important;
}

/* ========== TABS SYSTEM ========== */
.chaosboost-tabs-header {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chaosboost-tab-trigger {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-family: 'Rajdhani', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 86.14%;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 20px;
    text-transform: uppercase;
    text-align: left;
    position: relative;
}

.chaosboost-tab-trigger.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFC908;
    z-index: 2;
}

.chaosboost-tab-content {
    display: none;
}

.chaosboost-tab-content.active {
    display: block;
}

/* ========== CONTENT ITEMS ========== */
.column-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.gold-circle {
    display: block;
    width: 12px;
    height: 12px;
    background: #FFC908;
    border-radius: 50%;
    margin-top: 10px;
    flex-shrink: 0;
}

.gold-circle.small {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    margin-left: 10px;
}

.item-content {
    flex: 1;
}

.item-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 86.14%;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.item-content p {
    font-family: 'Rajdhani', sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    color: #FFFFFF !important;
    margin: 0 0 10px 0 !important;
    text-align: left !important;
}

.sub-content-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
    padding-left: 15px;
}

/* ========== FAQ SECTION ========== */
.faqs-section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 86.14%;
    color: var(--white);
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: 
        url(https://dragonboosting.com/wp-content/uploads/2025/11/image-55.webp),
        linear-gradient(90deg, rgba(255, 201, 8, 0) 0%, rgba(255, 217, 0, 1) 100%);
    background-size: cover;
    border-radius: 12px;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 201, 8, 0.1);
    border-radius: 12px !important;
}

.faq-icon {
    transition: transform 0.3s ease;
    width: 56px;
    height: 26px;
    background: url(https://dragonboosting.com/wp-content/uploads/2025/11/image-56.webp) center / contain no-repeat;
    border-radius: 4px;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(-180deg);
}

.faq-answer {
    padding: 0 30px 25px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 140%;
}

/* ========== SIDEBAR - CONFIGURATOR ========== */
.chaosboost-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.product-configurator {
    background: var(--card-gradient);
    backdrop-filter: blur(4.55px);
    border-radius: 12px;
    padding: 30px 20px;
}

/* ========== AUTH BUTTONS ========== */
.header-auth-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.btn-auth {
    padding: 8px 16px;
    border: none;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-sign-up {
    background: var(--primary-gold);
    color: #1E1E1E;
}

.btn-login {
    background: var(--brown-dark);
    color: var(--white);
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.user-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.btn-logout {
    background: transparent;
    border: none;
    color: var(--primary-gold);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    text-decoration: underline;
    transform: translateY(-2px);
}

/* ========== CONFIG GROUPS ========== */
.config-group {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 201, 8, 0.2);
    padding-bottom: 20px;
}

.config-label {
    display: block;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
}

.region-buttons {
    display: flex;
    gap: 10px;
}

.region-btn {
    flex: 1;
    padding: 10px;
    background: var(--dark-gray);
    border: 1px solid var(--primary-gold);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-btn.active,
.region-btn:hover {
    background: var(--primary-gold);
    color: var(--black-bg);
}

.config-select {
    width: 100%;
    padding: 12px;
    background: var(--dark-gray);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFC908'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-gold);
}

.radio-label span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
}

.price-modifier {
    margin-left: auto;
    color: var(--primary-gold);
}

/* ========== PRICE SECTION ========== */
.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0;
}

.product-price {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-gold);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    padding: 8px 15px;
    border-radius: 12px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    transform: scale(1.2);
}

.qty-value {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    min-width: 30px;
    text-align: center;
}

/* ========== ADD TO CART BUTTON ========== */
.btn-add-to-cart {
    width: 100%;
    padding: 15px;
    background: var(--primary-gold);
    border: none;
    border-radius: 12px;
    color: var(--black-bg);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #FFD900;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 201, 8, 0.4);
}

.btn-add-to-cart:active {
    transform: translateY(-1px);
}

.login-message {
    text-align: center;
    margin-top: 15px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-gold);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    margin-top: 80px;
    position: relative;
}

.chaosboost-testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 40px 100px;
}

.testimonials-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 400px;
    background: linear-gradient(180deg, rgba(255, 201, 8, 0) 0%, rgba(255, 201, 8, 0.55) 100%);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(2px);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-author {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
}

.star.filled {
    color: var(--primary-gold);
}

.testimonial-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
}

.testimonial-content {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 122%;
    color: var(--white);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--black-bg);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #FFD900;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* ========== AUTH MODALS ========== */
.chaosboost-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 1, 0.9);
    backdrop-filter: blur(10px);
}

.chaosboost-modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(165, 128, 25, 0.95) 0%, rgba(63, 49, 10, 0.95) 100%);
    margin: 5% auto;
    padding: 40px;
    width: 90%;
    max-width: 515px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chaosboost-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--white);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chaosboost-modal-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 30px;
}


/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 1024px) {
    .chaosboost-main-grid {
        grid-template-columns: 1fr;
    }

    .chaosboost-sidebar {
        position: static;
        max-width: 100%;
    }

    .chaosboost-checkout-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: 300px;
    }

    .chaosboost-sub-tabs {
        width: auto;
        max-width: 100%;
        overflow-x: auto;
    }
}

/* ========== RESPONSIVE - MOBILE (768px) ========== */
@media (max-width: 768px) {
    /* Container */
    .chaosboost-product-container {
        padding: 20px 15px;
    }

    /* Navigation */
    .chaosboost-nav-tabs,
    .chaosboost-sub-tabs {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin-right: 0 !important;
    }

    .chaosboost-nav-tabs .tab-icon {
        width: 100%;
        height: 54px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .chaosboost-sub-tabs {
        width: 100% !important;
        height: auto !important;
        padding: 12px !important;
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .chaosboost-sub-tabs .sub-tab {
        font-size: 14px;
        padding: 10px 16px;
        white-space: nowrap;
    }

    /* Product Title */
    .product-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    /* Product Description */
    .product-description {
        font-size: 18px !important;
        margin-bottom: 30px;
    }

    p {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }

    /* Tabs Header */
    .chaosboost-tabs-header {
        flex-wrap: wrap;
        overflow-x: auto;
    }

    .chaosboost-tab-trigger {
        font-size: 20px;
        padding: 12px 18px;
        margin-right: 10px;
        white-space: nowrap;
    }

    /* Content Items */
    .content-item {
        gap: 12px;
    }

    .item-content h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .item-content p {
        font-size: 14px !important;
    }

    /* FAQ Section */
    .section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 20px;
        padding: 20px 20px;
    }

    .faq-icon {
        width: 40px;
        height: 20px;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
        font-size: 16px;
    }

    /* Sidebar - Full Width */
    .chaosboost-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .product-configurator {
        padding: 25px 18px;
    }

    /* Auth Buttons */
    .header-auth-buttons {
        gap: 10px;
        margin-bottom: 18px;
    }

    .btn-auth {
        flex: 1;
        padding: 10px 14px;
        font-size: 18px;
    }

    .user-welcome {
        font-size: 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Config Groups */
    .config-group {
        margin-bottom: 20px;
        padding-bottom: 18px;
    }

    .config-label {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .region-buttons {
        gap: 8px;
        flex-wrap: wrap;
    }

    .region-btn {
        padding: 12px;
        font-size: 15px;
        min-width: calc(50% - 4px);
    }

    .config-select {
        padding: 14px;
        font-size: 15px;
    }

    .radio-label span {
        font-size: 15px;
    }

    /* Price Section */
    .price-section {
        flex-direction: column;
        gap: 15px;
        margin: 25px 0;
    }

    .product-price {
        font-size: 32px;
        order: 1;
    }

    .quantity-controls {
        order: 2;
        padding: 10px 20px;
    }

    .qty-value {
        font-size: 24px;
    }

    /* Add to Cart */
    .btn-add-to-cart {
        font-size: 24px;
        padding: 14px;
    }

    .login-message {
        font-size: 14px;
        margin-top: 12px;
    }

    /* Testimonials */
    .testimonials-section {
        margin-top: 50px;
    }

    .chaosboost-testimonials-slider {
        padding: 30px 50px;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 25px;
    }

    .testimonial-author {
        font-size: 20px;
    }

    .testimonial-title {
        font-size: 22px;
    }

    .testimonial-content {
        font-size: 16px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }

    /* Modals */
    .chaosboost-modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 10% auto;
    }

    .modal-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    /* Checkout */
    .chaosboost-checkout-container {
        padding: 25px 15px;
    }

    .checkout-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .checkout-cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
        gap: 15px;
    }

    .item-info {
        width: 100%;
    }

    .item-info h3 {
        font-size: 16px;
    }

    .item-meta p {
        font-size: 12px !important;
    }

    .item-quantity {
        width: 100%;
    }

    .quantity-selector {
        width: 160px;
    }

    .item-price {
        width: 100%;
        justify-content: space-between;
    }

    .item-price span {
        font-size: 18px;
    }

    .form-row input,
    .form-row select {
        height: 50px;
        font-size: 15px;
    }
}

/* ========== RESPONSIVE - SMALL MOBILE (480px) ========== */
@media (max-width: 480px) {
    /* Container */
    .chaosboost-product-container {
        padding: 15px 12px;
    }

    /* Navigation */
    .chaosboost-nav-tabs .tab-icon {
        height: 50px;
        font-size: 18px;
        padding: 0 12px;
    }

    .chaosboost-nav-tabs .tab-icon img {
        width: 20px;
        height: 20px;
    }

    .chaosboost-sub-tabs .sub-tab {
        font-size: 13px;
        padding: 8px 14px;
    }

    /* Title */
    .product-title {
        font-size: 28px;
    }

    /* Description */
    .product-description {
        font-size: 16px !important;
    }

    p {
        font-size: 16px !important;
    }

    /* Tabs */
    .chaosboost-tab-trigger {
        font-size: 18px;
        padding: 10px 15px;
    }

    /* Content */
    .item-content h3 {
        font-size: 20px;
    }

    .item-content p {
        font-size: 13px !important;
    }

    /* FAQ */
    .section-title {
        font-size: 24px;
    }

    .faq-question {
        font-size: 18px;
        padding: 18px 16px;
    }

    .faq-answer {
        padding: 0 16px 18px 16px;
        font-size: 14px;
    }

    /* Sidebar */
    .product-configurator {
        padding: 20px 15px;
    }

    .btn-auth {
        font-size: 16px;
        padding: 9px 12px;
    }

    .config-label {
        font-size: 14px;
    }

    .region-btn {
        padding: 10px;
        font-size: 14px;
    }

    .config-select {
        padding: 12px;
        font-size: 14px;
    }

    /* Price */
    .product-price {
        font-size: 28px;
    }

    .qty-value {
        font-size: 22px;
    }

    .btn-add-to-cart {
        font-size: 22px;
        padding: 13px;
    }

    /* Testimonials */
    .chaosboost-testimonials-slider {
        padding: 20px 40px;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 20px;
    }

    .testimonial-author {
        font-size: 18px;
    }

    .testimonial-title {
        font-size: 20px;
    }

    .testimonial-content {
        font-size: 15px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Checkout */
    .checkout-title {
        font-size: 24px;
    }

    .checkout-cart-item {
        padding: 15px 0;
    }

    .item-info h3 {
        font-size: 15px;
    }

    .quantity-selector {
        width: 140px;
        height: 40px;
    }

    .qty {
        font-size: 16px;
    }

    .item-price span {
        font-size: 16px;
    }
}

/* ========== RESPONSIVE - EXTRA SMALL (360px) ========== */
@media (max-width: 360px) {
    .chaosboost-product-container {
        padding: 12px 10px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-description {
        font-size: 15px !important;
    }

    .chaosboost-tab-trigger {
        font-size: 16px;
        padding: 8px 12px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px 14px;
    }

    .product-price {
        font-size: 26px;
    }

    .btn-add-to-cart {
        font-size: 20px;
    }

    .testimonial-card {
        min-width: 240px;
        padding: 18px;
    }
}

/* ========== LANDSCAPE ORIENTATION ========== */
@media (max-width: 900px) and (orientation: landscape) {
    .chaosboost-main-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }

    .product-configurator {
        position: sticky;
        top: 10px;
    }

    .chaosboost-modal-content {
        margin: 5vh auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .chaosboost-nav-tabs,
    .chaosboost-sub-tabs,
    .chaosboost-sidebar,
    .testimonials-section,
    .slider-arrow {
        display: none !important;
    }

    .chaosboost-main-grid {
        grid-template-columns: 1fr;
    }

    body.chaosboost-product-page {
        background-color: #fff;
        color: #000;
    }
}