/**
 * @category    Rxonline
 * @package     Rxonline_CartAttributes
 * @author      Rxonline
 * @copyright   Copyright (c) 2024 Rxonline
 */

.product-custom-attributes {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.custom-attribute-item {
    padding: 3px 0;
    color: #666;
    line-height: 1.4;
	font-style: italic;
}

.custom-attribute-item .attribute-label {
    font-weight: 600;
    color: #333;
    display: inline-block;
    min-width: 120px;
}

.custom-attribute-item .attribute-value {
    color: #555;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .product-custom-attributes {
        font-size: 13px;
    }
    
    .custom-attribute-item {
        padding: 2px 0;
    }
    
    .custom-attribute-item .attribute-label {
        min-width: auto;
        display: block;
        margin-bottom: 2px;
    }
    
    .custom-attribute-item .attribute-value {
        display: block;
        padding-left: 10px;
    }
}

