.sezer-wpg-wrap,
.sezer-wpg-wrap * {
    box-sizing: border-box;
}

.sezer-wpg-grid {
    display: grid;
    grid-template-columns: repeat(var(--sezer-wpg-cols, 4), minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 46px;
    width: 100%;
}

.sezer-wpg-card {
    position: relative;
    min-width: 0;
    text-align: center;
}

.sezer-wpg-image-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 535px;
    background: #f7f7f7;
}

.sezer-wpg-image {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.sezer-wpg-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0;
    transition: transform .45s ease;
}

.sezer-wpg-card:hover .sezer-wpg-image img {
    transform: scale(1.025);
}

.sezer-wpg-badge {
    position: absolute;
    z-index: 4;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 9px;
    border-radius: 999px;
    background: #8b7a55;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.2px;
    white-space: nowrap;
}

.sezer-wpg-add-wrap {
    position: absolute;
    z-index: 5;
    left: 10px;
    right: 10px;
    bottom: 10px;
    transform: translateY(calc(100% + 16px));
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

.sezer-wpg-card:hover .sezer-wpg-add-wrap,
.sezer-wpg-card:focus-within .sezer-wpg-add-wrap {
    transform: translateY(0);
    opacity: 1;
}

.sezer-wpg-add-wrap .button,
.sezer-wpg-add-wrap a.button,
.sezer-wpg-add-wrap .sezer-wpg-product-link-button,
.sezer-wpg-add-wrap .added_to_cart {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 30px;
    margin: 0;
    padding: 8px 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #4a4a4a !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    text-transform: uppercase;
    box-shadow: none !important;
    transition: filter .2s ease;
}

.sezer-wpg-add-wrap .button:hover,
.sezer-wpg-add-wrap .button:focus,
.sezer-wpg-add-wrap .sezer-wpg-product-link-button:hover,
.sezer-wpg-add-wrap .sezer-wpg-product-link-button:focus {
    filter: brightness(.92);
    color: #fff !important;
    background: #4a4a4a !important;
}

.sezer-wpg-add-wrap .added_to_cart {
    margin-top: 5px;
}

.sezer-wpg-info {
    padding-top: 26px;
}

.sezer-wpg-title {
    margin: 0 0 12px 0;
    padding: 0;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.sezer-wpg-title a {
    color: #000;
    text-decoration: none;
}

.sezer-wpg-title a:hover,
.sezer-wpg-title a:focus {
    color: #000;
    text-decoration: none;
}

.sezer-wpg-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.sezer-wpg-price del {
    color: #8d7757;
    opacity: 1;
    font-weight: 400;
}

.sezer-wpg-price ins {
    color: #000;
    font-weight: 800;
    text-decoration: none;
}

.sezer-wpg-price .amount {
    white-space: nowrap;
}

.sezer-wpg-empty {
    padding: 24px;
    text-align: center;
    background: #f7f7f7;
    color: #111;
}

@media (max-width: 1024px) {
    .sezer-wpg-grid {
        grid-template-columns: repeat(var(--sezer-wpg-tablet-cols, 2), minmax(0, 1fr));
        column-gap: 32px;
    }

    .sezer-wpg-image-wrap {
        height: 430px;
    }
}

@media (max-width: 767px) {
    .sezer-wpg-grid {
        grid-template-columns: repeat(var(--sezer-wpg-mobile-cols, 1), minmax(0, 1fr));
        column-gap: 18px;
        row-gap: 34px;
    }

    .sezer-wpg-image-wrap {
        height: 390px;
    }

    .sezer-wpg-info {
        padding-top: 18px;
    }

    .sezer-wpg-title {
        font-size: 14px;
    }

    .sezer-wpg-price {
        font-size: 15px;
        gap: 8px;
    }

    .sezer-wpg-add-wrap {
        transform: translateY(0);
        opacity: 1;
    }
}

.sezer-wpg-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 38px auto 0;
    text-align: center;
}

.sezer-wpg-pagination a,
.sezer-wpg-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d8d2c4;
    background: #fff;
    color: #111;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: none !important;
}

.sezer-wpg-pagination a:hover,
.sezer-wpg-pagination a:focus {
    background: #f4f1ea;
    color: #111;
    border-color: #c7bea8;
}

.sezer-wpg-pagination .current {
    background: #4a4a4a;
    border-color: #4a4a4a;
    color: #fff;
}

@media (max-width: 767px) {
    .sezer-wpg-pagination {
        gap: 6px;
        margin-top: 28px;
        flex-wrap: wrap;
    }

    .sezer-wpg-pagination a,
    .sezer-wpg-pagination span {
        min-width: 32px;
        height: 32px;
        padding: 0 10px;
    }
}
