/* WooCommerce Usage Guide Frontend Styles */

.wug-usage-guide-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 15px;
    width: 100%;
}

.wug-guide-section {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wug-guide-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.05), 0 8px 8px -5px rgba(0, 0, 0, 0.02);
}

.wug-section-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px dashed #f0f0f0;
    padding-bottom: 12px;
}

.wug-section-icon {
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wug-section-content {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.wug-section-content p:last-child {
    margin-bottom: 0;
}

/* Light adjustments based on section types */
.wug-kitchen-section {
    border-left: 4px solid #f39c12;
}

.wug-skin-section {
    border-left: 4px solid #e84393;
}

.wug-health-section {
    border-left: 4px solid #2ecc71;
}
