/*
Theme Name: Woostify Child
Template: woostify
*/
.color-selector-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
    overflow: hidden;
}
.selected-color-name {
    margin-bottom: 8px;
    font-size: 15px;
    text-align: left;
    width: 100%;
    display: block;
    font-family: 'Inter', sans-serif !important;
}
.color-selector-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}
.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #999;
    cursor: pointer;
    background-color: #ccc;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}
.color-swatch.selected {
    border: 1.5px solid #000;
    box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000;
}

.mobile-color-swatches .color-swatch {
    width: 16px;
    height: 16px;
}

@media (max-width: 991px) {
    .single-product .color-selector-container--mobile,
    .single-product .color-selector-container {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
        align-content: flex-start !important;
        gap: 8px 10px !important;
        max-height: 48px !important;
        overflow: hidden !important;
    }

    .single-product .color-selector-container .color-swatch {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        max-width: 20px !important;
        min-height: 20px !important;
        max-height: 20px !important;
        flex: 0 0 20px !important;
        border-width: 1.5px !important;
    }

    .single-product .color-selector-container .color-swatch.selected {
        box-shadow: 0 0 0 1px #fff, 0 0 0 2px #000 !important;
    }
}

/* Product details do*/
/* ===== MODERN PRODUCT HEADER ===== */
.medi-product-header {
    margin-bottom: 30px;
}

.medi-product-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #111;
}

.medi-product-price {
    font-size: 22px;
    font-weight: 700;
    color: #00a99d;
}
/* ===== MODERN PRODUCT TABS ===== */
.woocommerce-tabs {
    margin-top: 60px;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 40px;
    border-bottom: 2px solid #eee;
}

.woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
}

.woocommerce-tabs ul.tabs li a {
    font-size: 16px;
    font-weight: 600;
    color: #777;
    padding-bottom: 10px;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #00a99d;
    border-bottom: 3px solid #00a99d;
}

.woocommerce-Tabs-panel {
    padding-top: 30px;
    line-height: 1.7;
    color: #444;
}

