/**
 * King Baldwin Elementor - Product List Widget
 * Simple alphabetical product list styling
 */

/* Product List Wrapper */
.kbe-product-list-wrapper {
    width: 100%;
    padding: 20px 0;
}

/* List Title */
.kbe-list-title {
    font-size: 24px;
    font-weight: 700;
    color: #FF5722;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Product List */
.kbe-product-list {
    padding: 0;
    margin: 0;
}

/* Product List Item */
.kbe-product-list-item {
    margin-bottom: 8px;
    line-height: 1.5;
}

.kbe-product-list-item a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.kbe-product-list-item a:hover {
    color: #FF5722;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .kbe-list-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .kbe-product-list-item {
        margin-bottom: 6px;
    }

    .kbe-product-list-item a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .kbe-product-list-wrapper {
        padding: 15px 0;
    }

    .kbe-list-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .kbe-product-list-item {
        margin-bottom: 5px;
    }
}
