.custom-product-action-buttons {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.product-element-top {
    position: relative;
}

.wd-entities-title a {
    color: #1E242B;
    font-family: "Bebas Neue";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    display: inline-block;
    white-space: nowrap;
}

.wd-entities-title a.scroll-animation {
    animation: scrollText 10s linear infinite alternate;
}

h3.wd-entities-title {
    text-align: left;
}

[class*="title-line-"] .wd-product .wd-entities-title {
    overflow: hidden;
    line-height: var(--title-line-height, 38px);
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.woocommerce-product-short-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 28px;
    max-height: 56px;
    text-overflow: ellipsis;
    color: #1E242B;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    text-align: left;
}

.wd-product-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-element-bottom {
    gap: 16px !important;
}

.wd-product :where(.product-wrapper,.product-element-bottom) {
    gap: 16px !important;
}

span.woocommerce-Price-amount.amount {
    color: #1E242B;
    font-family: "Bebas Neue";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

span.price {
    text-align: left;
}

.product-element-top {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    overflow: hidden;
    background: #fff;
    border-radius: 21px;
}

a.custom-detail-button {
    border-radius: 30px !important;
    border: 2px solid #FA5632;
    padding: 15px 15px 12px 16px;
    background: #fff !important;
    box-shadow: none !important;
    width: 50%;
}

a.custom-detail-button > span {
    color: #FA5632;
    font-family: "Bebas Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: none;
}

a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart.add-to-cart-loop {
    border-radius: 30px !important;
    border: 2px solid #FA5632;
    background: #FA5632 !important;
    box-shadow: none !important;
    width: 45%;
}

.wd-product.wd-hover-standard .wd-add-btn .add-to-cart-loop span {
    color: #fff;
    font-family: "Bebas Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    padding: 0 !important;
    text-transform: uppercase;
}

.wd-product-card-brands {
    width: 160px;
    margin-bottom: 0;
    color: #D0D0D9 !important;
    background: #FFFFFF;
    padding: 0 16px;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-start;
    border-radius: 20px;
    border: 1px solid #D0D0D9;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.wd-product-card-brands .marquee-wrapper a {
    color: #D0D0D9 !important;
}

.wd-product-card-brands .marquee-wrapper {
    display: inline-block;
    width: max-content;
    position: relative;
}

.wd-product-card-brands .marquee-wrapper.scroll-animation {
    animation: scrollText 10s linear infinite alternate;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}