/* css/custom-upsell-products.css */


.upsell-description {
    font-family: "Poppins", Sans-serif;
    margin-bottom: 30px;
    font-size: 17px;
    font-weight: 300;
    line-height: 29px;
    color: #212121;
    text-align: center;
}

/* Terméklista tartó */
.custom-product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.product-item {
    text-align: center;
    transition: all 0.3s ease;
    background-color: white;
    overflow: hidden;
    padding: 14px;
    border-radius: 5px;
}

.product-namelista {
    color: #212121;
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1px;
    letter-spacing: -0.3px;
}
a.added_to_cart.wc-forward {
    display: none;
}

.product-price {
    margin-bottom: 20px;
    line-height: 30px;
    text-align: left;
    color: #242424;
    font-family: "Poppins", Sans-serif;
    font-size: 21px;
    font-weight: 700;
}

.product-info {
    text-align: left;
    margin-top: 5px;
    color: #050327;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 200;
    line-height: 24px;
}

.product-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
}

h3.product-title {
    margin-bottom: 0px;
}

.product-image {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 5px;
}

img.product-img {

    border-radius: 5px;
}


.product-price-add {
    display: flex;
    margin-top: 15px;
    flex-direction: column;
    width: 100%;
}

.product-item a {
    color: #212121;
}

/* Kosárba gomb */
.product-add-to-cart .button.add_to_cart_button, .product-add-to-cart .add-to-cart-button {
    margin-bottom: 0;
    background-color: #1f69b2;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 8px 6px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
}

/* Hover állapot */
.product-add-to-cart .button.add_to_cart_button:hover,
.product-add-to-cart .add-to-cart-button:hover {
    background-color: #F2ACBF !important;
}

/* Loading állapot */
.product-add-to-cart .button.add_to_cart_button.loading {
    opacity: 0.7;
    pointer-events: none;
}

svg#fi_10485973 {
    margin-right: 10px;
}

/* Kosár ikon hover */
.product-add-to-cart .add-to-cart-button:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

h2.upsell-title {
    text-align: center;
    color: #242424;
    font-family: "Poppins", Sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 1px;
}

.upsell-description {
    font-family: "Poppins", Sans-serif;
    font-size: 17px;
    font-weight: 200;
    line-height: 28px;
    color: #212121;
    text-align: center;
    margin-bottom: 35px;
}



/* Hover state */
.button.add_to_cart_button:hover {
    background-color: #9AC898;
    transform: translateY(-2px);
}

/* Loading state */
.button.add_to_cart_button.loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: not-allowed;
}

/* SVG icon in button */
.button.add_to_cart_button .svgkosar {
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

.product-add-to-cart {
    position: relative;
}

.product-add-to-cart .added_to_cart {
    display: inline-block;
    margin-top: 10px;
    font-family: "Barlow Condensed", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    padding: 5px 10px;
    background-color: #F2ACBF;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.product-add-to-cart .added_to_cart:hover {
    background-color: #e391a4;
    transform: translateY(-2px);
}

.cart-message {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.cart-message-success {
    background-color: #AFD9AD;
    color: #000000;
}

.cart-message-error {
    background-color: #F2ACBF;
    color: #000000;
}



/* Responsive styles */
@media (max-width: 768px) {
    .custom-product-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    h2.upsell-title {
        text-align: center;
        color: #242424;
        font-family: "Poppins", Sans-serif;
        font-size: 23px;
        font-weight: 700;
        line-height: 46px;
        letter-spacing: 1px;
    }

    .upsell-title {
        font-size: 35px;
    }

    .upsell-description {
        font-family: "Poppins", Sans-serif;
        margin-bottom: 30px;
        font-size: 16px;
        font-weight: 300;
        line-height: 27px;
        color: #212121;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .custom-product-list {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: auto;
    }
}

