.amq-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.amq-product-tile {
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}
.amq-product-tile:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.amq-product-image {
    text-align: center;
    margin-bottom: 15px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.amq-product-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}
.amq-product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.amq-product-attributes {
    border-top: 1px solid #eaeaea;
    padding-top: 12px;
}
.amq-attribute {
    display: flex;
    margin-bottom: 6px;
    align-items: baseline;
    font-size: 14px;
    line-height: 1.4;
}
.amq-attribute-label {
    font-weight: 600;
    min-width: 120px;
    margin-right: 8px;
    color: #555;
    flex-shrink: 0;
}
.amq-attribute-value {
    flex-grow: 1;
    color: #333;
}
.amq-attribute-group {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px dashed #eaeaea;
}
.amq-attribute-group-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
    padding-bottom: 5px;
    border-bottom: 2px solid #f0f0f0;
}
.amq-product-price {
    font-weight: bold;
    margin-top: auto;
    font-size: 16px;
    border-top: 2px solid #f0f0f0;
    padding-top: 10px;
}
.amq-product-price-subfix {
    font-size: 12px;
    font-weight: normal;
    margin-left: 5px;
}
.amq-add-all-to-cart {
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
.amq-add-all-to-cart:hover {
    background-color: #45a049;
}
.amq-product-subtitle {
    font-size: 14px;
    border-top: 1px solid #eaeaea;
    line-height: 1.4;
    padding-top: 8px;
}
.amq-product-half {
    font-weight: 600;
}

.amq-product-parts{
    margin-left: 18px;
    font-size: 14px;
    margin-top: 5px;
}

.custom-error {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

.custom-warning {
    background-color: #fff3cd;
    color: #664d03;
    border: 1px solid #ffecb5;
    padding: 10px;
    border-radius: 5px;
    margin: 10px 0;
}