.tab-content {
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tab-content.active {
    display: flex;
}

#tab-videos {
    width: 100%;
}

#tab-videos iframe {
    margin-bottom: 15px; /* spacing between videos */
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Container */
.product-tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;  /* spacing below tabs */
    display: flex;
    border-bottom: 2px solid #ddd; /* base border */
    font-family: Arial, sans-serif;
}

/* Tab items */
.product-tabs li {
    margin-right: 20px;
}

/* Links */
.product-tabs .tab-link {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;  /* inactive text color */
    font-weight: 600;
    border-bottom: 3px solid transparent; /* placeholder for active */
    transition: all 0.3s ease;
    border-radius: 4px 4px 0 0; /* smooth top corners */
}

/* Hover state */
.product-tabs .tab-link:hover {
    color: var(--primary-color);
    background-color: #f9f9f9;
}

/* Active tab */
.product-tabs .tab-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    background-color: #fff;
}

.product-template .product-gallery #product-gallery-main .item {
    max-height: 100% !important;
}

.quick-view-lot-number{
    color: #fff;
	width: 100%;
	padding: 2%;
}