.lse-products-archive,
.lse-products-archive * {
    box-sizing: border-box;
}

.lse-products-archive {
    position: relative;
    width: 100%;
    background: #fbf7ed;
    color: #3b2416;
    padding: 54px 24px 34px;
}

.lse-products-grid-content {
    position: relative;
    width: 100%;
}

.lse-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 44px;
    align-items: stretch;
}

.lse-products-card {
    position: relative;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    text-align: center;
    color: #3b2416;
    background: transparent;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.lse-products-card:hover {
    transform: translateY(-2px);
}

.lse-products-bookmark {
    position: absolute;
    top: 0;
    right: 7px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #3b2416;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lse-products-bookmark:hover,
.lse-products-bookmark:focus-visible {
    background: #3b2416;
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}

.lse-products-image-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.lse-products-image-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 310px;
    margin: 0 0 24px;
}

.lse-products-image-wrap img {
    display: block;
    max-width: 84%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 220ms ease;
}

.lse-products-card:hover .lse-products-image-wrap img {
    transform: translateY(-5px);
}

.lse-products-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8px;
}

.lse-products-title {
    margin: 0 0 13px;
    color: #3b2416;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}

.lse-products-title a {
    color: inherit;
    text-decoration: none;
}

.lse-products-title a:hover,
.lse-products-title a:focus-visible {
    text-decoration: underline;
    outline: none;
}

.lse-products-description {
    max-width: 300px;
    margin: 0 auto 24px;
    color: #7b7169;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.lse-products-price {
    margin: auto 0 20px;
    color: #3b2416;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
}

.lse-products-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 12px 20px;
    border: 1px solid #3b2416;
    border-radius: 0;
    background: #3b2416;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.lse-products-add-to-cart:hover,
.lse-products-add-to-cart:focus-visible {
    background: #23140c;
    border-color: #23140c;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    outline: none;
}

.lse-products-add-to-cart.is-loading {
    opacity: 0.68;
    cursor: progress;
    pointer-events: none;
}

.lse-products-add-to-cart.is-loading .lse-products-add-text::after {
    content: '…';
}

.lse-products-pagination {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    width: 100%;
    margin-top: 34px;
}

.lse-products-dashes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lse-products-page-dash {
    display: block;
    width: 38px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #d9d2c9;
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.lse-products-page-dash.is-active {
    background: #3b2416;
}

.lse-products-page-dash:hover,
.lse-products-page-dash:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.lse-products-page-arrow {
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #b3aa9f;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 180ms ease, background-color 180ms ease;
}

.lse-products-page-prev {
    left: 6px;
}

.lse-products-page-next {
    right: 6px;
}

.lse-products-page-arrow:hover,
.lse-products-page-arrow:focus-visible {
    color: #3b2416;
    background: rgba(59, 36, 22, 0.08);
    outline: none;
}

.lse-products-page-arrow:disabled,
.lse-products-page-arrow[disabled] {
    opacity: 0.32;
    cursor: not-allowed;
    pointer-events: none;
}

.lse-products-empty,
.lse-products-grid-status {
    margin: 0;
    padding: 28px 18px;
    color: #3b2416;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.lse-products-archive.is-loading .lse-products-grid-content {
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .lse-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lse-products-image-wrap {
        height: 270px;
    }
}

@media (max-width: 640px) {
    .lse-products-archive {
        padding: 36px 16px 28px;
    }

    .lse-products-grid {
        grid-template-columns: 1fr;
        row-gap: 36px;
    }

    .lse-products-image-wrap {
        height: 250px;
    }

    .lse-products-page-arrow {
        display: none;
    }

    .lse-products-page-dash {
        width: 28px;
    }
}

/* Maison Rinae updates */
.lse-products-card {
    overflow: hidden;
}

.lse-products-image-link,
.lse-products-image-wrap {
    width: 100%;
}

.lse-products-image-wrap {
    align-items: stretch;
    margin: 0 0 24px;
    overflow: hidden;
}

.lse-products-image-wrap img {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.lse-products-card:hover .lse-products-image-wrap img {
    transform: scale(1.025);
}

.lse-products-bookmark svg path,
.lse-recommendation-add svg path {
    transition: fill 160ms ease, stroke 160ms ease;
}

.lse-products-bookmark.is-wishlisted,
.lse-recommendation-add.is-wishlisted {
    background: #3b2416;
    color: #fff;
}

.lse-products-bookmark.is-wishlisted svg path,
.lse-recommendation-add.is-wishlisted svg path {
    fill: currentColor;
}

.lse-products-bookmark.is-loading,
.lse-recommendation-add.is-loading {
    opacity: 0.6;
    cursor: progress;
}

.lse-products-add-to-cart {
    gap: 7px;
}

.lse-products-add-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.lse-products-add-icon svg {
    display: block;
    width: 13px;
    height: 13px;
}

.lse-maison-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.lse-maison-wishlist-card {
    text-align: center;
    background: #fbf7ed;
    padding: 0 0 18px;
}

.lse-maison-wishlist-image {
    display: block;
    height: 260px;
    overflow: hidden;
}

.lse-maison-wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lse-maison-wishlist-card h3 {
    margin: 18px 12px 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.lse-maison-wishlist-card h3 a {
    color: #3b2416;
    text-decoration: none;
}

.lse-maison-wishlist-price {
    margin: 0 0 16px;
    color: #3b2416;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.lse-wishlist-empty {
    color: #3b2416;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

@media (max-width: 768px) {
    .lse-maison-wishlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .lse-maison-wishlist-grid {
        grid-template-columns: 1fr;
    }
}


.lse-products-add-to-cart.is-animating {
    animation: lseProductsButtonPop 420ms cubic-bezier(.2, 1.45, .35, 1);
}

.lse-products-add-to-cart.is-animating .lse-products-add-icon {
    animation: lseProductsIconLift 420ms ease;
}

.lse-products-fly-ghost {
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    border-radius: 8px;
    filter: drop-shadow(0 14px 22px rgba(59, 36, 22, 0.18));
    will-change: transform, opacity;
}

@keyframes lseProductsButtonPop {
    0% { transform: translateY(0) scale(1); }
    45% { transform: translateY(-3px) scale(1.035); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes lseProductsIconLift {
    0% { transform: translateY(0); }
    45% { transform: translateY(-3px); }
    100% { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .lse-products-add-to-cart,
    .lse-products-add-to-cart.is-animating,
    .lse-products-add-to-cart.is-animating .lse-products-add-icon,
    .lse-products-fly-ghost {
        animation: none !important;
        transition: none !important;
    }
}

/* v1.6: fly animation now originates from the clicked Add to Cart button */
.lse-products-fly-ghost.lse-products-fly-from-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: inherit;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none !important;
}
