.owm-product-single {
    padding: 45px 0 80px;
    background: #fff;
    color: #222;
}

.owm-product-container {
    max-width: 100%;
    margin: 5% auto;
    padding: 0 22px;
}

.owm-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #777;
}

.owm-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.owm-breadcrumb a:hover {
    color: #111;
}

.owm-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: 48px;
    align-items: start;
}

.owm-main-photo {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: #f6f3ef;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    cursor: zoom-in;
}

.owm-main-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.owm-no-image {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 18px;
    color: #777;
}

.owm-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.owm-thumb {
    border: 1px solid #e7e0d8;
    background: #fff;
    padding: 6px;
    border-radius: 12px;
    cursor: pointer;
    transition: .2s ease;
}

.owm-thumb:hover,
.owm-thumb.is-active {
    border-color: #d99a32;
    transform: translateY(-1px);
}

.owm-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.owm-product-info {
    position: sticky;
    top: 30px;
}

.owm-product-category {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fff3df;
    color: #b2761d;
    font-size: 14px;
    font-weight: 700;
}

.owm-product-title {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
    margin: 0 0 24px;
    font-weight: 600;
    color: #1f1a17;
}

.owm-product-content {
    font-size: 18px;
    line-height: 1.75;
    color: #333;
}

.owm-product-content p {
    margin: 0 0 18px;
}

.owm-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.owm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: #e3a13e;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.owm-button:hover {
    background: #d99a32;
    border-color: #d99a32;
    color: #fff;
}

.owm-button-outline {
    background: #e3a13e;
    color: #1f1a17;
}

.owm-button-outline:hover {
    background: #d99a32;
    color: #1f1a17;
}

.owm-prev-next {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 48px 0 20px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.owm-prev-next a {
    color: #1f1a17;
    text-decoration: none;
    font-weight: 600;
}

.owm-related-products {
    margin-top: 54px;
}

.owm-related-products h2 {
    font-size: 30px;
    margin: 0 0 22px;
}

.owm-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.owm-related-card {
    display: block;
    text-decoration: none;
    color: #222;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: .2s ease;
}

.owm-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
}

.owm-related-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.owm-related-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 14px 16px 18px;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.owm-lightbox[aria-hidden="true"] {
    display: none;
}

.owm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999999;
    display: block;
}

.owm-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .92);
}

.owm-lightbox-stage {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 90px;
}

.owm-lightbox-figure {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(1400px, 100%);
    height: 100%;
    margin: 0;
    pointer-events: none;
}

.owm-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 76px);
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: auto;
    user-select: none;
    -webkit-user-drag: none;
}

.owm-lightbox-close,
.owm-lightbox-arrow {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.owm-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 30;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .42);
    font-size: 38px;
    font-weight: 300;
    line-height: 44px;
    text-align: center;
}

.owm-lightbox-close:hover,
.owm-lightbox-close:focus-visible {
    background: rgba(255, 255, 255, .16);
}

.owm-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 25;
    width: 62px;
    height: 86px;
    padding: 0;
    border-radius: 6px;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .38);
    font-size: 66px;
    font-weight: 300;
    line-height: 76px;
    text-align: center;
    transition: background .2s ease;
}

.owm-lightbox-arrow:hover,
.owm-lightbox-arrow:focus-visible {
    background: rgba(255, 255, 255, .16);
}

.owm-lightbox-arrow[hidden] {
    display: none !important;
}

.owm-lightbox-prev {
    left: 18px;
}

.owm-lightbox-next {
    right: 18px;
}

.owm-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    min-width: 62px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .58);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    pointer-events: none;
}

html.owm-lightbox-open,
body.owm-lightbox-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .owm-product-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .owm-product-info {
        position: static;
    }

    .owm-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .owm-related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .owm-lightbox-stage {
        padding: 58px 12px 70px;
    }

    .owm-lightbox-image {
        max-height: calc(100vh - 128px);
    }

    .owm-lightbox-arrow {
        top: auto;
        bottom: 12px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        transform: none;
        background: rgba(0, 0, 0, .58);
        font-size: 42px;
        line-height: 42px;
    }

    .owm-lightbox-prev {
        left: 16px;
    }

    .owm-lightbox-next {
        right: 16px;
    }

    .owm-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .owm-lightbox-counter {
        bottom: 26px;
    }
}

@media (max-width: 600px) {
    .owm-product-single {
        padding-top: 24px;
    }

    .owm-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .owm-related-grid {
        grid-template-columns: 1fr;
    }

    .owm-prev-next {
        flex-direction: column;
    }

    .owm-product-actions {
        flex-direction: column;
    }

    .owm-button {
        width: 100%;
    }
}
