.biodiv-single-product {
    background: #fff;
    padding: 0 15px;
}

.biodiv-product-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    padding: 40px 0;
}

@media (max-width: 991px) {
    .biodiv-product-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .biodiv-product-right {
        order: -1;
    }

    .biodiv-product-left {
        order: 1;
    }
}

.biodiv-product-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.biodiv-back-to-studies {
    margin-bottom: -20px;
}


.biodiv-product-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.biodiv-product-image-wrapper {
    width: 100%;
}

.biodiv-product-image-main {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    object-fit: contain;
    object-position: center center;
    background: #f9f9f9;
}

.biodiv-product-info-section h2,
.biodiv-product-location-section h2,
.biodiv-product-contact-section h2 {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin: 0 0 20px 0;
}

.biodiv-product-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.biodiv-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.biodiv-accordion-item:last-child {
    border-bottom: none;
}

.biodiv-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.biodiv-accordion-item:first-child .biodiv-accordion-header {
    border-radius: 12px 12px 0 0;
}

.biodiv-accordion-item:last-child .biodiv-accordion-header {
    border-radius: 0 0 12px 12px;
}

.biodiv-accordion-item:last-child.active .biodiv-accordion-header {
    border-radius: 0;
}

.biodiv-accordion-header:hover {
    background: #f5f5f5 !important;
    color: #000 !important;
}

.biodiv-accordion-header i {
    transition: transform 0.3s ease;
}

.biodiv-accordion-item.active .biodiv-accordion-header i {
    transform: rotate(180deg);
}

.biodiv-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.biodiv-accordion-content > div {
    padding: 12px 24px 24px;
}

.biodiv-ai-disclaimer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    color: #bbb;
}

.biodiv-ai-disclaimer small {
    font-size: 10px;
}

.biodiv-location-box {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.biodiv-location-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7fa;
    border-radius: 12px;
    color: #00719B;
    font-size: 24px;
}

.biodiv-location-content {
    flex: 1;
}

.biodiv-location-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #000;
}

.biodiv-location-content p {
    font-size: 16px;
    color: #000;
    margin: 0 0 16px 0;
    line-height: 1.6;
}

.biodiv-location-content p strong {
    color: #000;
    font-weight: 600;
}

.biodiv-location-content .button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px !important;
    padding: 12px 24px !important;
    line-height: 1.32 !important;
    font-size: 14px !important;
    transition: background-color .2s !important;
}

.button-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: #fff !important;
}

.button-whatsapp:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
}

.biodiv-product-price-box {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.biodiv-product-price-box h2 {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin: 0 0 20px 0;
}

.biodiv-product-price {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 20px !important;
}

.biodiv-price-regular {
    font-size: 32px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
    background: none !important;
}

.biodiv-price-original {
    display: block !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #999 !important;
    text-decoration: line-through !important;
    margin-bottom: 5px !important;
    opacity: 0.6 !important;
    background: none !important;
}

.biodiv-price-sale {
    display: block !important;
    font-size: 32px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
    background: none !important;
}

.biodiv-product-price-box .biodiv-product-actions {
    margin-bottom: 20px;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.biodiv-product-price-box .biodiv-product-actions .button,
.biodiv-related-products .biodiv-product-actions .button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    width: 100% !important;
    border-radius: 6px !important;
    line-height: 1.32 !important;
    transition: background-color .2s !important;
}

.biodiv-product-price-box .biodiv-product-actions .biodiv-buy-now,
.biodiv-related-products .biodiv-product-actions .biodiv-buy-now {
    width: 100% !important;
}

.biodiv-product-price-box .biodiv-product-actions .button.add-to-cart,
.biodiv-related-products .biodiv-product-actions .button.add-to-cart {
    background-color: #00719B !important;
    border-color: #00719B !important;
    color: #fff !important;
}

.biodiv-product-price-box .biodiv-product-actions .button.add-to-cart:hover,
.biodiv-related-products .biodiv-product-actions .button.add-to-cart:hover {
    background-color: #00B3F0 !important;
    border-color: #00B3F0 !important;
}

.biodiv-product-price-box .biodiv-product-actions .button.add-to-cart i,
.biodiv-related-products .biodiv-product-actions .button.add-to-cart i {
    color: #fff !important;
    font-size: 14px !important;
}

.biodiv-product-price-box .biodiv-product-actions .button.add-to-cart span,
.biodiv-related-products .biodiv-product-actions .button.add-to-cart span {
    color: #fff !important;
}

.biodiv-product-price-box .biodiv-product-actions .button.add-to-cart.loading {
    opacity: 0.6 !important;
    pointer-events: none !important;
}

.biodiv-product-promotions {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.biodiv-product-promotions p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.biodiv-product-disclaimer {
    margin-top: 12px;
}

.biodiv-product-disclaimer small {
    font-size: 12px;
    color: #999;
}

.biodiv-product-additional-box {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.biodiv-product-additional-box h2 {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin: 0 0 20px 0;
}

.biodiv-info-tiles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.biodiv-info-tile {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 12px;
}

.biodiv-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7fa;
    border-radius: 12px;
    color: #00719B;
    font-size: 24px;
}

.biodiv-info-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px 0;
}

.biodiv-info-text p {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.biodiv-info-note {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.biodiv-related-products {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}

.biodiv-related-products h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0 0 30px 0;
    font-family: 'Cooper', serif !important;
}

.biodiv-related-products .biodiv-product-image {
    aspect-ratio: 4/3 !important;
}

.biodiv-related-products .biodiv-product-image,
.woocommerce .biodiv-related-products .biodiv-product-image,
.woocommerce-page .biodiv-related-products .biodiv-product-image {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}


@media (max-width: 991px) {
    .biodiv-related-products .biodiv-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575px) {
    .biodiv-related-products .biodiv-products-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .biodiv-product-hero-wrapper {
        border-radius: 8px;
        margin: 0 0 30px 0;
        height: 300px;
        max-height: 300px;
    }

    .biodiv-product-hero-wrapper h1 {
        font-size: 24px;
    }

    .biodiv-product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 0;
    }
}
