.owl-pg-section,
.owl-pg-section * {
    box-sizing: border-box;
}

.owl-pg-section {
    width: 100%;
    background: #fff;
    padding: 52px 20px;
}

.owl-pg-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.owl-pg-header {
    text-align: center;
    margin-bottom: 16px;
}

.owl-pg-eyebrow {
    margin-bottom: 8px;
    color: #8a6f62;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.owl-pg-title {
    margin: 0;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
}

.owl-pg-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    color: #111;
    font-size: 18px;
}

.owl-pg-header-icon svg {
    width: 1em;
    height: 1em;
}


.owl-pg-carousel {
    position: relative;
    width: 100%;
}

.owl-pg-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #d7e3e8;
    border-radius: 50%;
    background: #fff;
    color: #7d878b;
    box-shadow: 0 4px 14px rgba(30, 45, 52, .10);
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.owl-pg-nav-prev {
    left: -24px;
}

.owl-pg-nav-next {
    right: -24px;
}

.owl-pg-nav svg {
    display: block;
    width: 18px;
    height: 18px;
}

.owl-pg-nav:hover:not(:disabled) {
    box-shadow: 0 7px 20px rgba(30, 45, 52, .16);
    transform: translateY(-50%) scale(1.04);
}

.owl-pg-nav:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.owl-pg-nav:disabled {
    opacity: .35;
    cursor: default;
}

.owl-pg-nav.is-hidden {
    display: none;
}

.owl-pg-grid {
    --owl-pg-visible: 4;
    --owl-pg-gap: 18px;
    display: flex;
    width: 100%;
    gap: var(--owl-pg-gap);
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.owl-pg-grid::-webkit-scrollbar {
    display: none;
}

.owl-pg-grid > .owl-pg-product-card,
.owl-pg-grid > .owl-pg-view-all-card {
    flex: 0 0 calc((100% - ((var(--owl-pg-visible) - 1) * var(--owl-pg-gap))) / var(--owl-pg-visible));
    width: calc((100% - ((var(--owl-pg-visible) - 1) * var(--owl-pg-gap))) / var(--owl-pg-visible));
    scroll-snap-align: start;
    scroll-snap-stop: always;
}


.owl-pg-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ece7e2;
    border-radius: 10px;
    background: #fff;
}

.owl-pg-product-image {
    position: relative;
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f7f4f1;
}

.owl-pg-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform .35s ease;
}

.owl-pg-product-card:hover .owl-pg-product-image img {
    transform: scale(1.025);
}

.owl-pg-sale-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #efbdb6;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .02em;
}

.owl-pg-product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px 14px 16px;
}

.owl-pg-product-title {
    margin: 0 0 6px;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.owl-pg-product-title a {
    color: inherit;
    text-decoration: none;
}

.owl-pg-product-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.owl-pg-price {
    color: #111;
    font-size: 15px;
    line-height: 1.4;
}

.owl-pg-price del {
    margin-right: 5px;
    color: #777;
    opacity: 1;
}

.owl-pg-price ins {
    color: inherit;
    text-decoration: none;
}

.owl-pg-heart {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #2f4651;
}

.owl-pg-heart svg {
    display: block;
    width: 100%;
    height: 100%;
}

.owl-pg-view-all-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 398px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 18px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background: #f5f5f5;
    color: inherit;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.owl-pg-view-all-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(28, 35, 38, .08);
}

.owl-pg-view-all-text {
    width: 100%;
    color: #22282b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.owl-pg-view-all-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 2px solid #c8dff2;
    border-radius: 50%;
    background: #fff;
    color: #969b9e;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(35, 45, 50, .06);
}

.owl-pg-view-all-icon svg {
    width: 1em;
    height: 1em;
}

.owl-pg-button-wrap {
    margin-top: 28px;
    text-align: center;
}

.owl-pg-bottom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 6px;
    background: #c6d1cf;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .25s ease, transform .25s ease;
}

.owl-pg-bottom-button:hover {
    transform: translateY(-1px);
    background: #aebdbc;
    color: #fff;
}

.owl-pg-empty {
    flex: 0 0 100%;
    padding: 24px;
    border: 1px dashed #d8d8d8;
    color: #666;
    text-align: center;
}

@media (max-width: 1024px) {
    .owl-pg-grid {
        --owl-pg-visible: 2;
    }
}

@media (max-width: 767px) {
    .owl-pg-section {
        padding: 42px 16px;
    }

    .owl-pg-grid {
        --owl-pg-visible: 1;
    }

    .owl-pg-nav-prev {
        left: 6px;
    }

    .owl-pg-nav-next {
        right: 6px;
    }

    .owl-pg-nav {
        width: 38px;
        height: 38px;
    }

    .owl-pg-title {
        font-size: 38px;
    }

    .owl-pg-product-image {
        height: 340px;
    }

    .owl-pg-view-all-card {
        min-height: 280px;
    }
}
