/**
 * ErixPackBuilder Styles
 */

 .erixpack-container {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.erixpack-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.erixpack-products-list hr {
    margin: 15px 0;
    border-top: 1px solid #eaeaea;
}

.erixpack-products-list hr:last-child {
    display: none;
}

.erixpack-product-item {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.erixpack-product-img {
    width: 80px;
    flex-shrink: 0;
}

.erixpack-product-img img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #eaeaea;
}

.erixpack-no-img {
    width: 100%;
    height: 80px;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.erixpack-product-info {
    flex-grow: 1;
}

.erixpack-product-name {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 10px 0;
    color: #444;
}

.erixpack-attributes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.erixpack-attribute-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #666;
}

.erixpack-attribute-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    background-color: #fff;
}
