/* Hide the large accordion section (MOLECULAR CONSUMABLES - ABDOS) */
.elementor-1297 .elementor-element-azlxom92h {
    display: none !important;
}

/* Base styles for the new products inside the card */
.vf-new-products-wrapper {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.vf-product-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.vf-product-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vf-product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--e-global-color-primary, #333);
}

.vf-product-company {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.vf-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

/* Custom button styles to match existing Elementor buttons */
.vf-btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.vf-btn-primary {
    background-color: var(--e-global-color-accent, #1a73e8);
    color: #fff;
}
.vf-btn-primary:hover {
    background-color: var(--e-global-color-primary, #1557b0);
    color: #fff;
}

.vf-btn-secondary {
    background-color: transparent;
    color: var(--e-global-color-accent, #1a73e8);
    border: 1px solid var(--e-global-color-accent, #1a73e8);
}
.vf-btn-secondary:hover {
    background-color: var(--e-global-color-accent, #1a73e8);
    color: #fff;
}

.vf-btn-icon {
    margin-right: 8px;
}

/* View Details Expand/Collapse */
.vf-product-details {
    display: none; /* Hidden by default */
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--e-global-color-accent, #1a73e8);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-top: 10px;
    animation: vfFadeIn 0.3s ease;
}

.vf-product-details.is-active {
    display: block;
}

.vf-product-details ul {
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 20px;
}
.vf-product-details li {
    margin-bottom: 5px;
}

@keyframes vfFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Fix for existing ABDOS button */
.vf-existing-abdos-actions {
    margin-top: 15px;
}
