.gedbra-products-carousel {
    width: 100%;
    padding: 28px 20px 60px;
    box-sizing: border-box;
}

.gedbra-products-title {
    margin: 0 0 54px;
    text-align: center;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 400;
    color: #3f3b31;
    letter-spacing: 0.5px;
}

.gedbra-products-row {
    display: flex;
    align-items: center;
    gap: 70px;
    width: 100%;
}

.gedbra-products-window {
    overflow: hidden;
    width: 100%;
}

.gedbra-products-track {
    display: flex;
    gap: 20px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.gedbra-product-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-height: 400px;
    border: 1px solid #6f6f6f;
    box-sizing: border-box;
    padding: 26px 28px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: #fff;
}

.gedbra-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    text-decoration: none;
}

.gedbra-product-image img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.gedbra-product-name {
    min-height: 48px;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: #484848;
}

.gedbra-product-name a {
    color: inherit;
    text-decoration: none;
}

.gedbra-product-name a:hover {
    text-decoration: underline;
}

.gedbra-product-price {
    margin-bottom: 24px;
    font-size: 25px;
    line-height: 1.1;
    font-weight: 500;
    color: #bd9600;
}

.gedbra-product-price del {
    opacity: 0.55;
    font-size: 0.75em;
}

.gedbra-product-price ins {
    text-decoration: none;
}

.gedbra-product-button-wrap {
    margin-top: auto;
}

.gedbra-add-to-cart,
.gedbra-add-to-cart.button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 8px 16px !important;
    border-radius: 999px !important;
    border: 0 !important;
    background: #00b9aa !important;
    color: #fff !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.gedbra-add-to-cart:hover,
.gedbra-add-to-cart.button:hover {
    opacity: 0.9;
    background: #00b9aa !important;
    color: #fff !important;
}

.gedbra-products-arrow {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
    color: #00b9aa;
    font-size: 66px;
    flex: 0 0 auto;
}

.gedbra-products-arrow:hover {
    opacity: 0.85;
}

.gedbra-products-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gedbra-products-dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.gedbra-products-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #cfcfcf;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.gedbra-products-dot.is-active {
    background: #00b9aa;
    transform: scale(1.1);
}

.gedbra-products-error,
.gedbra-products-empty {
    text-align: center;
}

.added_to_cart {
    display: inline-block;
    margin-top: 12px;
}

@media (max-width: 1200px) {
    .gedbra-products-row {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .gedbra-product-card {
        flex-basis: calc((100% - 20px) / 2);
    }

    .gedbra-products-title {
        font-size: 34px;
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    .gedbra-products-carousel {
        padding: 24px 10px 44px;
    }

    .gedbra-products-row {
        gap: 12px;
    }

    .gedbra-products-track {
        gap: 0;
    }

    .gedbra-product-card {
        flex-basis: 100%;
        min-height: 340px !important;
        padding: 24px 20px 30px;
        margin: 5px 0;
    }

    .gedbra-products-arrow {
        display: none;
    }

    .gedbra-products-dots {
        display: flex;
    }

    .gedbra-products-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
}
