.product-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-18);
    overflow: hidden;
    /* box-shadow: 0px 5px 9px 0px #00000040; */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 18px rgba(0,0,0,0.12); */
}

.product-thumbnail {
    padding: 0;
    background-color: #F7F7F7;
    clip-path: polygon(0 0, 100% 0, 100% 86%, 82% 100%, 0 100%);
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 50px 10px;
}

.product-thumbnail img {
    /* width: 100%;
    height: auto; */
    display: block;
    /* aspect-ratio: 3 / 2; */
    object-fit: contain;
    mix-blend-mode: darken;
    height: 100%;
    width: auto;
}

.product-content {
    padding: 12px;
    flex: 1;
}

.product-title {
    font-family: var(--primary-font);
    font-size: var(--font-20);
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 100%;
    line-height: 1.2em;
}

.page-id-299 .product-title,
.postid-154 .product-title,
.postid-155 .product-title {
    max-width: 100%;
}

.learn-more-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.learn-more-btn span {
    color: var(--primary-color);
    font-weight: 400;
}

.learn-more-btn img {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.product-card:hover .learn-more-btn img {
    transform: translateX(4px);
}

.before-description,
.after-description {
    max-width: 750px;
    margin: 0 auto;
    color: var(--light-black-color);
}

.before-description .custom-buttons-wrapper,
.after-description .custom-buttons-wrapper {
    justify-content: center;
}

.product-content .description-text {
    line-height: 133%;
    color: var(--light-black-color);
}

@media screen and (max-width: 768px) {
    .product-title,
    .page-id-299 .product-title,
    .postid-154 .product-title,
    .postid-155 .product-title {
        max-width: 100%;
    }
    .product-content {
        padding: 25px;
    }
}