/**
 * Product Sidebar Styles
 *
 * Styles for single product sidebar and widgets
 * @package Drewniane
 */

/* ============================================================================
   PRODUCT INFO WIDGET
   ========================================================================= */

.product-info-widget {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

/* Widget sections */
.product-info-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.product-info-section:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* Heading */
.product-info-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Info items - Fix alignment for checkboxes and labels */
.product-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

/* Label */
.product-info-label {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* Value */
.product-info-value {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* Stock status */
.product-info-value.in-stock {
    color: #28a745;
    font-weight: 600;
}

.product-info-value.out-of-stock {
    color: #dc3545;
    font-weight: 600;
}

/* Custom text area */
.product-info-custom {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    line-height: 1.6;
}

.product-info-custom p:first-child {
    margin-top: 0;
}

.product-info-custom p:last-child {
    margin-bottom: 0;
}
