.fusion-product-wrapper h3 {
    display: none;
}

.fusion-product-wrapper .price ins * {
    color: #F56144 !important;
}

.fusion-product-wrapper .show_details_button {
    display: none;
}

.fusion-product-wrapper .fusion-content-sep {
    margin-top: 5px !important;
    margin-bottom: 20px !important;
    height: 1px !important;
    background-color: rgb(0, 66, 67);

}

.fusion-product-wrapper .button {
    padding: 10px 30px;
    padding-left: 60px;
    background-color:  rgb(0, 66, 67);
    color: white !important;
    border-radius: 50px;
    font-size: 16px !important;
    max-width: unset;
    width: fit-content;
    text-wrap: nowrap;

}

.fusion-image-wrapper .fusion-rollover .fusion-rollover-content .fusion-product-buttons a::before, .product-buttons a::before {
    margin-left: -30px !important;
}

.product-buttons .add_to_cart_button:before, .product-buttons .product_type_auction:before, .product-buttons .product_type_external:before, .product-buttons .product_type_simple:before {
    content: "\aaad" !important;
    font-family: 'Sodahome' !important;
}

.fusion-product-wrapper {
    border: none !important;
}

.fusion-product-wrapper .awb-icon-check-square-o {
    display: none !important;
}

.product-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 30px;
    margin: 30px 0;
}

.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-images {
    position: relative;
    display: block;
    margin-bottom: 20px;
    border: 1px solid #004243;
    border-radius: 30px;
    overflow: hidden;
}

.product-images img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0px !important;
}

.product-images .main-image {
    opacity: 1;
}

.product-images .hover-image {
    display: none;
}

/* Hover-Effekte nur für Sirup-Produkte */
.sirup-product .product-images .hover-image {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sirup-product .product-images:hover .main-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sirup-product .product-images:hover .hover-image {
    opacity: 1;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 10px;
    min-height: 48px;

}

.product-header h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2 !important;
    margin: 0 !important;
    color: #004243;
    flex: 1;
    word-break: auto-phrase;
}

.product-header h3 a {
    color: #004243;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-header h3 a:hover {
    color: #F56144;
}

.product-rating {
    flex-shrink: 0;
}

.product-rating .star-rating {
    color: #ffd700;
}

.product-short-info {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.product-separator {
    height: 1px;
    background-color: #004243;
    margin: 15px 0;
}

.product-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-price .price {
    font-size: 20px;
    font-weight: 700;
    color: #004243;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price del {
    color: #999;
    font-weight: normal;
    text-decoration: line-through;
    margin: 0;
}

.product-price ins {
    text-decoration: none;
    color: #F56144;
    font-weight: 700;
    margin: 0;
}

.product-price .vat-info {
    font-size: 12px;
    color: #666;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid-4 {
        grid-template-columns: 1fr;
    }
}

.custom-product-grid img {
    border-radius: 10px;
    margin-bottom: 10px;
}