/* assets/styles.css */
/* Version 4.0.0 - Clean priority-based styles */

/* Container for unit price - positioned before add to cart */
#wc-unit-price-container,
.wc-unit-price-container {
    width: 100%;
    clear: both;
    margin: 0 0 15px 0; /* Bottom margin to separate from button */
}

/* Unit price display */
.unit-price-display {
    margin-top: 10px;
    padding: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e6e9f0 100%);
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    animation: fadeIn 0.4s ease;
}

/* Price per unit */
.price-per-unit {
    display: block;
    font-size: 1.15em;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 5px;
}

/* Package size info */
.package-size {
    display: block;
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure visibility in Shoptimizer */
.single-product #wc-unit-price-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .unit-price-display {
        padding: 10px;
        margin-top: 8px;
    }
    
    .price-per-unit {
        font-size: 1.05em;
    }
    
    .package-size {
        font-size: 0.85em;
    }
}

