.lumedra-product-catalog {
    --lumedra-product-columns: 4;
    --lumedra-border: #e7e0d7;
    --lumedra-text: #0e1c2f;
    --lumedra-muted: #8a8a8a;
    --lumedra-accent: #1788ff;
    display: grid;
    grid-template-columns: repeat(var(--lumedra-product-columns), minmax(0, 1fr));
    max-width: 1368px;
    margin: 0 auto;
    border: 1px solid var(--lumedra-border);
    background: #ffffff;
}

.lumedra-product-card {
    display: flex;
    min-width: 0;
    min-height: 430px;
    flex-direction: column;
    background: #ffffff;
    border-right: 1px solid var(--lumedra-border);
}

.lumedra-product-card:nth-child(4n),
.lumedra-product-card:last-child {
    border-right: 0;
}

.lumedra-product-card__media {
    position: relative;
    display: block;
    min-height: 190px;
    aspect-ratio: 1.36 / 1;
    overflow: hidden;
    background: #f5f2ed;
    text-decoration: none;
}

.lumedra-product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.lumedra-product-card__media:hover .lumedra-product-card__image {
    transform: scale(1.035);
}

.lumedra-product-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 13px 4px;
    border-radius: 0 0 12px 0;
    background: var(--lumedra-badge-bg, #0b1b30);
    color: var(--lumedra-badge-color, #ffffff);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lumedra-product-card__body {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    padding: 24px 20px 26px;
}

.lumedra-product-card__subtitle {
    margin: 0 0 10px;
    color: var(--lumedra-accent);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: uppercase;
}

.lumedra-product-card__title {
    margin: 0 0 8px;
    color: #0a0a0a;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

.lumedra-product-card__title a {
    color: #0a0a0a !important;
    text-decoration: none;
}

.lumedra-product-card__description {
    color: rgba(10, 10, 10, 0.5);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.lumedra-product-card__description p {
    margin: 0 0 10px;
}

.lumedra-product-card__description p:last-child {
    margin-bottom: 0;
}

.lumedra-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--lumedra-border);
}

.lumedra-product-card__price {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    color: #0b1b30;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
    white-space: normal;
}

.lumedra-product-card__price del {
    display: block;
    color: var(--lumedra-muted);
    font-size: 15px;
    font-weight: 500;
}

.lumedra-product-card__price ins {
    text-decoration: none;
}

.lumedra-product-card__price-amount::after {
    content: " z\0142";
}

.lumedra-product-card__button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    min-height: 36px;
    padding: 9px 15px;
    border: 1px solid var(--lumedra-text);
    border-radius: 6px;
    color: var(--lumedra-text);
    background: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    white-space: nowrap;
}

.lumedra-product-card__button:hover,
.lumedra-product-card__button:focus-visible {
    background: var(--lumedra-text);
    color: #ffffff;
    transform: translateY(-1px);
}

.lumedra-shop {
    --lumedra-shop-sidebar: 220px;
    --lumedra-shop-gap: 44px;
    display: grid;
    grid-template-columns: var(--lumedra-shop-sidebar) minmax(0, 1fr);
    gap: var(--lumedra-shop-gap);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    color: var(--lumedra-text);
}

.lumedra-shop__sidebar {
    min-width: 0;
}

.lumedra-shop__filters {
    position: sticky;
    top: 24px;
}

.lumedra-shop__filter-heading {
    margin: 0 0 34px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(11, 27, 48, 0.12);
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.lumedra-shop__filter-group {
    padding-bottom: 31px;
    margin-bottom: 31px;
    border-bottom: 1px solid rgba(11, 27, 48, 0.12);
}

.lumedra-shop__filter-title {
    margin: 0 0 14px;
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
}

.lumedra-shop__checkbox {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 13px;
    color: rgba(10, 10, 10, 0.52);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.25;
    cursor: pointer;
}

.lumedra-shop__checkbox input {
    width: 13px;
    height: 13px;
    margin: 0;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    accent-color: #0b1b30;
}

.lumedra-shop__apply {
    display: none;
}

.lumedra-search-products {
    width: 100%;
    max-width: 100%;
    color: #0a0a0a;
}

.lumedra-search-products__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 18px;
    align-items: end;
    margin-bottom: 24px;
}

.lumedra-search-products__eyebrow {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--lumedra-accent);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lumedra-search-products__header h2 {
    margin: 0;
    color: #0a0a0a;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.12;
}

.lumedra-search-products__header span {
    color: rgba(10, 10, 10, 0.5);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.lumedra-search-products__grid.lumedra-product-catalog {
    grid-template-columns: repeat(var(--lumedra-product-columns), minmax(0, 1fr));
    max-width: 100%;
    margin: 0;
}

.lumedra-search-products__grid .lumedra-product-card {
    min-height: 390px;
    border-right: 1px solid var(--lumedra-border);
}

.lumedra-search-products__grid .lumedra-product-card:nth-child(4n) {
    border-right: 1px solid var(--lumedra-border);
}

.lumedra-search-products__grid .lumedra-product-card:nth-child(3n),
.lumedra-search-products__grid .lumedra-product-card:last-child {
    border-right: 0;
}

.lumedra-search-products__empty {
    padding: 28px;
    border: 1px solid var(--lumedra-border);
    border-radius: 7px;
    background: #ffffff;
    color: rgba(10, 10, 10, 0.58);
    font-size: 14px;
    line-height: 1.5;
}

.lumedra-search-products__pagination {
    margin-top: 24px;
}

.lumedra-shop__content {
    min-width: 0;
}

.lumedra-shop__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 19px;
}

.lumedra-shop__count {
    margin: 0;
    color: rgba(10, 10, 10, 0.38);
    font-size: 13px;
    line-height: 1;
}

.lumedra-shop__sort {
    margin: 0;
}

.lumedra-shop__sort select {
    min-width: 112px;
    min-height: 30px;
    padding: 6px 29px 6px 12px;
    border: 1px solid var(--lumedra-border);
    border-radius: 0;
    background: #ffffff;
    color: rgba(10, 10, 10, 0.58);
    font-size: 12px;
    line-height: 1;
}

.lumedra-shop__grid.lumedra-product-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    margin: 0;
}

.lumedra-shop__grid .lumedra-product-card {
    min-height: 0;
    border-right: 1px solid var(--lumedra-border);
}

.lumedra-shop__grid .lumedra-product-card:nth-child(4n) {
    border-right: 1px solid var(--lumedra-border);
}

.lumedra-shop__grid .lumedra-product-card:nth-child(3n),
.lumedra-shop__grid .lumedra-product-card:last-child {
    border-right: 0;
}

.lumedra-shop__grid .lumedra-product-card:nth-child(n + 4) {
    border-top: 1px solid var(--lumedra-border);
}

.lumedra-product-card--shop .lumedra-product-card__media {
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.lumedra-product-card--shop .lumedra-product-card__body {
    padding: 22px 23px 24px;
}

.lumedra-product-card--shop .lumedra-product-card__subtitle {
    margin-bottom: 9px;
    font-size: 11px;
}

.lumedra-product-card--shop .lumedra-product-card__title {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.12;
}

.lumedra-product-card--shop .lumedra-product-card__footer {
    margin-top: 8px;
    padding-top: 15px;
}

.lumedra-product-card--shop .lumedra-product-card__price {
    font-size: 20px;
}

.lumedra-product-card--shop .lumedra-product-card__button {
    min-width: 93px;
    min-height: 34px;
    padding: 8px 14px;
    font-size: 12px;
}

.lumedra-shop__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.lumedra-shop__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    border: 1px solid var(--lumedra-border);
    color: #0b1b30;
    background: #ffffff;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
}

.lumedra-shop__pagination .page-numbers.current,
.lumedra-shop__pagination .page-numbers:hover {
    border-color: #0b1b30;
    background: #0b1b30;
    color: #ffffff;
}

.lumedra-shop__empty {
    margin: 40px 0 0;
    color: rgba(10, 10, 10, 0.52);
    font-size: 14px;
}

@media (max-width: 1180px) {
    .lumedra-product-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lumedra-product-card:nth-child(4n) {
        border-right: 1px solid var(--lumedra-border);
    }

    .lumedra-product-card:nth-child(2n) {
        border-right: 0;
    }

    .lumedra-product-card:nth-child(n + 3) {
        border-top: 1px solid var(--lumedra-border);
    }

    .lumedra-shop {
        --lumedra-shop-gap: 30px;
        --lumedra-shop-sidebar: 200px;
    }

    .lumedra-product-card--shop .lumedra-product-card__body {
        padding: 20px 18px 22px;
    }

    .lumedra-product-card--shop .lumedra-product-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .lumedra-product-card--shop .lumedra-product-card__button {
        width: 100%;
    }

    .lumedra-search-products__grid.lumedra-product-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lumedra-search-products__grid .lumedra-product-card:nth-child(3n) {
        border-right: 1px solid var(--lumedra-border);
    }

    .lumedra-search-products__grid .lumedra-product-card:nth-child(2n),
    .lumedra-search-products__grid .lumedra-product-card:last-child {
        border-right: 0;
    }

    .lumedra-search-products__grid .lumedra-product-card:nth-child(n + 3) {
        border-top: 1px solid var(--lumedra-border);
    }
}

@media (max-width: 980px) {
    .lumedra-shop {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .lumedra-shop__filters {
        position: static;
    }

    .lumedra-shop__filter-heading {
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    .lumedra-shop__filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .lumedra-shop__filter-heading,
    .lumedra-shop__apply {
        grid-column: 1 / -1;
    }

    .lumedra-shop__filter-group {
        margin-bottom: 0;
        padding-bottom: 22px;
    }

    .lumedra-shop__grid.lumedra-product-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lumedra-shop__grid .lumedra-product-card:nth-child(3n) {
        border-right: 1px solid var(--lumedra-border);
    }

    .lumedra-shop__grid .lumedra-product-card:nth-child(2n),
    .lumedra-shop__grid .lumedra-product-card:last-child {
        border-right: 0;
    }

    .lumedra-shop__grid .lumedra-product-card:nth-child(n + 3) {
        border-top: 1px solid var(--lumedra-border);
    }

    .lumedra-search-products__header {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 680px) {
    .lumedra-product-catalog {
        grid-template-columns: 1fr;
        border-left: 0;
        border-right: 0;
    }

    .lumedra-product-card,
    .lumedra-product-card:nth-child(4n),
    .lumedra-product-card:nth-child(2n) {
        min-height: auto;
        border-right: 0;
    }

    .lumedra-product-card + .lumedra-product-card {
        border-top: 1px solid var(--lumedra-border);
    }

    .lumedra-product-card__media {
        min-height: 210px;
        aspect-ratio: 1.2 / 1;
    }

    .lumedra-product-card__body {
        padding: 22px 18px 24px;
    }

    .lumedra-product-card__title {
        font-size: 20px;
    }

    .lumedra-product-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .lumedra-product-card__button {
        width: 100%;
    }

    .lumedra-shop {
        max-width: none;
    }

    .lumedra-shop__toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .lumedra-shop__sort,
    .lumedra-shop__sort select {
        width: 100%;
    }

    .lumedra-shop__filters {
        grid-template-columns: 1fr;
    }

    .lumedra-shop__grid.lumedra-product-catalog {
        grid-template-columns: 1fr;
    }

    .lumedra-shop__grid .lumedra-product-card,
    .lumedra-shop__grid .lumedra-product-card:nth-child(2n),
    .lumedra-shop__grid .lumedra-product-card:nth-child(3n),
    .lumedra-shop__grid .lumedra-product-card:nth-child(4n) {
        border-right: 0;
    }

    .lumedra-shop__grid .lumedra-product-card + .lumedra-product-card {
        border-top: 1px solid var(--lumedra-border);
    }

    .lumedra-product-card--shop .lumedra-product-card__media {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .lumedra-search-products__header h2 {
        font-size: 23px;
    }

    .lumedra-search-products__grid.lumedra-product-catalog {
        grid-template-columns: 1fr;
    }

    .lumedra-search-products__grid .lumedra-product-card,
    .lumedra-search-products__grid .lumedra-product-card:nth-child(2n),
    .lumedra-search-products__grid .lumedra-product-card:nth-child(3n),
    .lumedra-search-products__grid .lumedra-product-card:nth-child(4n) {
        border-right: 0;
    }

    .lumedra-search-products__grid .lumedra-product-card + .lumedra-product-card {
        border-top: 1px solid var(--lumedra-border);
    }
}
