/* Beauty Hour Product Tab Styles */
.product-tabs-wrapper {
    margin: 30px 0;
}

/* Tab Navigation */
.product-tabs-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    border-bottom: 1px solid #e5e5e5;
}

.product-tabs-nav .tab-nav-item {
    padding: 12px 24px;
    margin-right: 4px;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.product-tabs-nav .tab-nav-item:hover {
    color: #333;
}

.product-tabs-nav .tab-nav-item.active {
    color: #000;
}

.product-tabs-nav .tab-nav-item.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

/* Ingredients specific styling */
.product-ingredients {
    font-size: 14px;
    line-height: 1.6;
}

/* Use specific styling */
.product-use {
    font-size: 14px;
    line-height: 1.6;
}
