#product-page h1 {
    font: normal normal normal 32px/42px Montserrat;
    letter-spacing: -1.05px;
    color: #2e282a;
}

#product-page h3 {
    font: normal normal normal 24px/36px Montserrat;
    letter-spacing: 0px;
    color: #2e282a;
}

#product-page .property_type_title {
    font: normal normal normal 20px/29px Montserrat;
    letter-spacing: 0px;
    color: #2e282a;
}

#product-page .property {
    padding: 12px;
    border: 2px solid #e9e9e9;
    border-radius: 7px;
    margin-right: 20px;
    font: normal normal normal 20px/29px Montserrat;
    letter-spacing: 0px;
    color: #2e282a;
    white-space: nowrap;
    margin-bottom: 20px;
    display: inline-block;
}

#product-page .property:hover,
#product-page .property.active {
    border: 2px solid #0097ba;
    cursor: pointer;
    color: #2e282a;
}

#kedvezmenyContainer {
    display: none;
}

#product-page #qty {
    width: 70px;
    text-align: center;
    font: normal normal normal 20px/29px Montserrat;
    letter-spacing: 0px;
    color: #2e282a;
}

#product-page .availability {
    font: normal normal normal 13px/29px Montserrat;
    letter-spacing: 0px;
    color: #0097ba;
}

#product-page .total_price {
    font: normal normal normal 2rem Montserrat;
    letter-spacing: 0px;
    color: #b83393;
}

#product-page .net_price {
    font: normal normal normal 20px/29px Montserrat;
    letter-spacing: 0px;
    color: #2e282a;
}

#product-page .availability {
    display: flex;
    align-items: center;
}

#product-page .availability img {
    margin-right: 10px;
}

.product-check .checkdot {
    width: 22px;
    height: 22px;
    background: rgba(25, 135, 84, 0.08);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.25);
    font-size: 14px;
}

.product-check .bi {
    line-height: 1;
}

.product-check + .product-check {
    margin-top: 0.25rem;
}

.product-check span:last-child {
    letter-spacing: 0.2px;
}

@media (max-width: 1500px) {
    #features .col-md-2 {
        width: 33%;
    }
}

@media (max-width: 1200px) {
    #compare-table table tr th {
        width: 200px !important;
    }

    #features .col-md-2 {
        width: 50%;
    }

    #product-page h1 {
        font-size: 32px;
    }
    #product-page h3 {
        font-size: 20px;
    }

    #product-page .property {
        padding: 8px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .cart-button-holder {
        margin: 30px auto;
        text-align: center;
    }
}

@media (max-width: 700px) {
    #features .col-md-2 {
        width: 100%;
    }
}

#product-page .product-media-col {
    padding-right: 30px;
}

#product-page #mainImage {
    width: 100%;
    height: auto;
}

#compare-table table tr th.compare-col-active,
#compare-table table tr td.compare-col-active {
    background-color: #e9e8e8;
}

#product-page .property {
    border-color: #fff;
}

#product_page_properties {
    background: #fff;
    padding: 10px 30px;
    box-shadow: 0 .5rem 2rem rgb(105 93 93 / 15%) !important;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    width: calc(250px * 16);
    animation: product-awards-scroll 40s linear infinite;
}

.carousel-item-custom {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.carousel-item-custom img {
    max-height: 130px;
    width: auto;
    object-fit: contain;
}

@keyframes product-awards-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .carousel-item-custom {
        flex: 0 0 80vw;
    }
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s;
}

.popup {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.popup img {
    max-width: 100%;
    border-radius: 10px;
}

.popup h2 {
    font-size: 24px;
    margin: 10px 0;
    color: #B83393;
}

.popup p.short-description {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    margin: 10px 0;
}

.popup p.long-description {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

.popup button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.popup button:hover {
    background-color: #0056b3;
    color: #fff;
}

.popup .close-btn {
    position: absolute;
    color: #000;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.popup-container.visible {
    visibility: visible;
    opacity: 1;
}

.feature-card-img {
    width: 100%;
    max-width: 228px;
    height: auto;
    aspect-ratio: 228 / 144;
    object-fit: cover;
}

.feature-title {
    color: #b80e80;
}

.compare-col-title {
    color: #2980b9;
}

.compare-thumb {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.compare-icon {
    width: 20px;
    height: 20px;
}
