/**
 * Custom Site Styles
 * 
 * Add your custom CSS here
 * 
 * @package Custom_Site_Functions
 * @since 1.0
 */

/* Example custom styles - modify as needed */

/* Custom button styles */
.csf-button {
    background: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.csf-button:hover {
    background: #005a87;
}

/* Custom container styles */
.csf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Stock Status Pill */
.csf-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 12px;
    line-height: 1.4;
    vertical-align: middle;
    margin-left: 6px;
}

.csf-stock-pill .csf-stock-dot {
    font-size: 8px;
    line-height: 1;
}

.csf-stock-pill .csf-stock-text {
    font-size: 11px;
    font-weight: 500;
}

/* Stock pill colors */
.csf-stock-pill.csf-dot-instock {
    background-color: rgba(70, 180, 80, 0.1);
    color: #46b450;
}

.csf-stock-pill.csf-dot-outofstock {
    background-color: rgba(220, 50, 50, 0.1);
    color: #dc3232;
}

.csf-stock-pill.csf-dot-backorder {
    background-color: rgba(255, 185, 0, 0.1);
    color: #b38600;
}

.csf-stock-pill.csf-dot-unknown {
    background-color: rgba(153, 153, 153, 0.1);
    color: #999;
}

/* Stock Status Text (for single product page) */
.csf-stock-status {
    font-size: 14px;
    font-weight: 500;
    margin: 5px 0;
    padding: 0;
}

.csf-stock-status.single-stock {
    color: #333;
    font-size: 16px;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .csf-container {
        padding: 0 15px;
    }
    
    .csf-stock-pill {
        padding: 2px 6px;
        margin-left: 4px;
        gap: 3px;
    }
    
    .csf-stock-pill .csf-stock-text {
        font-size: 10px;
    }
    
    .csf-stock-status {
        font-size: 13px;
    }
}
