:root {
    --lt-ink: #201a1c;
    --lt-muted: #72686c;
    --lt-line: #eadfe3;
    --lt-surface: #ffffff;
    --lt-surface-soft: #fff8fa;
    --lt-brand: #b94f77;
    --lt-brand-strong: #923557;
    --lt-brand-soft: #f9e5ec;
    --lt-success: #217a4b;
    --lt-warning: #9a6400;
    --lt-danger: #b4233c;
    --lt-radius-sm: 12px;
    --lt-radius: 16px;
    --lt-radius-lg: 24px;
    --lt-shadow-sm: 0 8px 24px rgba(67, 37, 48, .07);
    --lt-shadow: 0 18px 50px rgba(67, 37, 48, .12);
    --lt-focus: 0 0 0 4px rgba(185, 79, 119, .2);
}

.lt-catalog-page,
.lt-product-page {
    color: var(--lt-ink);
    background: var(--lt-surface);
    font-family: "Nunito Sans", sans-serif;
}

.lt-catalog-page *,
.lt-product-page * {
    box-sizing: border-box;
}

.lt-catalog-page a,
.lt-product-page a {
    color: inherit;
}

.lt-catalog-page button,
.lt-catalog-page a,
.lt-product-page button,
.lt-product-page a,
.lt-product-page input {
    -webkit-tap-highlight-color: transparent;
}

.lt-catalog-page :focus-visible,
.lt-product-page :focus-visible {
    outline: 2px solid var(--lt-brand-strong);
    outline-offset: 3px;
    box-shadow: var(--lt-focus);
}

.lt-shell {
    width: min(1240px, calc(100% - 32px));
    margin-inline: auto;
}

.lt-page-hero {
    padding: 58px 0 34px;
    background:
        radial-gradient(circle at 88% 5%, rgba(241, 167, 193, .28), transparent 32%),
        linear-gradient(135deg, #fff 0%, #fff8fa 100%);
    border-bottom: 1px solid var(--lt-line);
}

.lt-page-hero__eyebrow,
.lt-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: var(--lt-brand-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.lt-page-hero h1,
.lt-product-title,
.lt-section-heading h2 {
    margin: 0;
    color: var(--lt-ink);
    font-family: "Playfair Display", serif;
    letter-spacing: -.025em;
}

.lt-page-hero h1 {
    max-width: 760px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.lt-page-hero__copy {
    max-width: 650px;
    margin: 14px 0 0;
    color: var(--lt-muted);
    font-size: 17px;
    line-height: 1.7;
}

.lt-category-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 48px;
    align-items: center;
}

.lt-category-hero__image {
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: var(--lt-radius-lg);
    box-shadow: var(--lt-shadow);
}

.lt-category-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: var(--lt-muted);
    font-size: 14px;
}

.lt-breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #b8aaaf;
}

.lt-breadcrumbs a:hover {
    color: var(--lt-brand-strong);
}

.lt-catalog-section {
    padding: 48px 0 80px;
}

.lt-shop-layout {
    display: grid;
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.lt-filter-panel {
    position: sticky;
    top: 112px;
    padding: 22px;
    border: 1px solid var(--lt-line);
    border-radius: var(--lt-radius);
    background: var(--lt-surface);
    box-shadow: var(--lt-shadow-sm);
}

.lt-filter-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--lt-ink);
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    list-style: none;
}

.lt-filter-panel summary::-webkit-details-marker,
.lt-sort-menu summary::-webkit-details-marker {
    display: none;
}

.lt-filter-panel summary::after {
    content: "+";
    color: var(--lt-brand);
    font-size: 24px;
    font-weight: 400;
}

.lt-filter-panel[open] summary::after {
    content: "−";
}

.lt-filter-list {
    display: grid;
    gap: 7px;
    margin-top: 18px;
}

.lt-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--lt-muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.lt-filter-link:hover,
.lt-filter-link.is-active {
    color: var(--lt-brand-strong);
    background: var(--lt-brand-soft);
    transform: translateX(3px);
}

.lt-filter-link.is-active::after {
    content: "✓";
    font-size: 12px;
}

.lt-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.lt-result-summary {
    margin: 0;
    color: var(--lt-muted);
    font-size: 15px;
}

.lt-result-summary strong {
    color: var(--lt-ink);
}

.lt-sort-menu {
    position: relative;
    z-index: 20;
}

.lt-sort-menu summary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 10px 15px;
    border: 1px solid var(--lt-line);
    border-radius: 12px;
    background: var(--lt-surface);
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

.lt-sort-menu__options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 210px;
    padding: 8px;
    border: 1px solid var(--lt-line);
    border-radius: 12px;
    background: var(--lt-surface);
    box-shadow: var(--lt-shadow);
}

.lt-sort-menu__options a {
    display: block;
    padding: 11px 12px;
    border-radius: 9px;
    color: var(--lt-muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
}

.lt-sort-menu__options a:hover,
.lt-sort-menu__options a.is-active {
    color: var(--lt-brand-strong);
    background: var(--lt-brand-soft);
}

.lt-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
}

.lt-product-card {
    position: relative;
    min-width: 0;
    border: 1px solid transparent;
    border-radius: var(--lt-radius);
    background: var(--lt-surface);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lt-product-card:hover,
.lt-product-card:focus-within {
    border-color: var(--lt-line);
    box-shadow: var(--lt-shadow);
    transform: translateY(-6px);
}

.lt-product-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: 15px;
    background: linear-gradient(100deg, #f7eff2 20%, #fff 38%, #f7eff2 56%);
    background-size: 220% 100%;
    animation: lt-shimmer 1.8s linear infinite;
}

.lt-product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.lt-product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.lt-product-card:hover .lt-product-card__media img {
    transform: scale(1.045);
}

.lt-product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
    pointer-events: none;
}

.lt-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--lt-ink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 5px 14px rgba(32, 26, 28, .15);
}

.lt-badge--sale { background: var(--lt-danger); }
.lt-badge--new { background: var(--lt-brand-strong); }
.lt-badge--soldout { background: #5e5659; }

.lt-product-card__actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.lt-product-card:hover .lt-product-card__actions,
.lt-product-card:focus-within .lt-product-card__actions {
    opacity: 1;
    transform: translateX(0);
}

@media (hover: none), (pointer: coarse) {
    .lt-product-card__actions {
        opacity: 1;
        transform: translateX(0);
    }
}

.lt-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    color: var(--lt-ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 22px rgba(32, 26, 28, .14);
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.lt-icon-button:hover,
.lt-icon-button[aria-pressed="true"] {
    color: #fff;
    background: var(--lt-brand-strong);
    transform: scale(1.06);
}

.lt-product-card__body {
    padding: 16px 12px 18px;
}

.lt-product-card__category {
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
    color: var(--lt-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.lt-product-card__title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 45px;
    margin: 0 0 9px;
    color: var(--lt-ink);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.lt-product-card__title a {
    text-decoration: none !important;
}

.lt-product-card__title a:hover {
    color: var(--lt-brand-strong);
}

.lt-product-card__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px 9px;
}

.lt-product-card__price-prefix {
    color: var(--lt-muted);
    font-size: 11px;
}

.lt-product-card__price {
    color: var(--lt-brand-strong);
    font-size: 17px;
    font-weight: 900;
}

.lt-product-card__compare-price {
    color: #9a9094;
    font-size: 12px;
}

.lt-product-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 11px;
    color: var(--lt-muted);
    font-size: 12px;
}

.lt-product-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--lt-ink);
    font-weight: 800;
}

.lt-product-card__rating i { color: #e5a000; }
.lt-product-card__meta-divider { color: #d8cbd0; }

.lt-empty-state {
    grid-column: 1 / -1;
    padding: 64px 24px;
    border: 1px dashed #d9c9cf;
    border-radius: var(--lt-radius-lg);
    text-align: center;
    background: var(--lt-surface-soft);
}

.lt-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--lt-brand-strong);
    background: var(--lt-brand-soft);
    font-size: 26px;
}

.lt-empty-state h2 {
    margin: 0 0 9px;
    font-family: "Playfair Display", serif;
    font-size: 27px;
}

.lt-empty-state p {
    max-width: 480px;
    margin: 0 auto 22px;
    color: var(--lt-muted);
}

.lt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #fff !important;
    background: var(--lt-ink);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.lt-btn:hover {
    background: var(--lt-brand-strong);
    box-shadow: var(--lt-shadow-sm);
    transform: translateY(-2px);
}

.lt-btn--brand { background: var(--lt-brand-strong); }
.lt-btn--outline {
    color: var(--lt-ink) !important;
    border-color: var(--lt-line);
    background: var(--lt-surface);
}

.lt-btn:disabled {
    color: #91878b !important;
    background: #eee9eb;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.lt-pagination-wrap {
    margin-top: 44px;
    text-align: center;
}

/* Collections */
.lt-collection-stack {
    display: grid;
    gap: 52px;
}

.lt-collection-block {
    overflow: hidden;
    border: 1px solid var(--lt-line);
    border-radius: var(--lt-radius-lg);
    background: var(--lt-surface);
    box-shadow: var(--lt-shadow-sm);
}

.lt-collection-hero {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: clamp(310px, 45vw, 540px);
    text-decoration: none !important;
}

.lt-collection-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 40%, rgba(24, 17, 20, .78) 100%);
}

.lt-collection-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.2, .7, .2, 1);
}

.lt-collection-hero:hover img { transform: scale(1.035); }

.lt-collection-hero__content {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}

.lt-collection-hero h2 {
    margin: 0 0 4px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4vw, 46px);
}

.lt-collection-hero p { margin: 0; opacity: .88; }

.lt-collection-hero__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.lt-collection-products {
    padding: 24px;
}

.lt-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.lt-section-heading h2 { font-size: clamp(27px, 3vw, 38px); }
.lt-section-heading p { margin: 6px 0 0; color: var(--lt-muted); }

.lt-scroll-products {
    display: grid;
    grid-auto-columns: minmax(220px, 25%);
    grid-auto-flow: column;
    gap: 18px;
    overflow-x: auto;
    padding: 2px 2px 18px;
    scroll-snap-type: x mandatory;
    scrollbar-color: #d8c7cd transparent;
    scrollbar-width: thin;
}

.lt-scroll-products > * { scroll-snap-align: start; }

/* Product detail */
.lt-product-page { padding: 36px 0 96px; }

.lt-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: start;
}

.lt-gallery {
    position: sticky;
    top: 108px;
}

.lt-gallery__stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border-radius: var(--lt-radius-lg);
    background: var(--lt-surface-soft);
}

.lt-gallery__stage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.lt-gallery__stage:hover img { transform: scale(1.025); }

.lt-gallery__zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
}

.lt-gallery__thumbs {
    display: grid;
    grid-auto-columns: 84px;
    grid-auto-flow: column;
    gap: 10px;
    overflow-x: auto;
    padding: 13px 1px 4px;
    scroll-snap-type: x mandatory;
}

.lt-gallery-thumb {
    overflow: hidden;
    width: 84px;
    height: 104px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--lt-surface-soft);
    cursor: pointer;
    scroll-snap-align: start;
}

.lt-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-gallery-thumb:hover,
.lt-gallery-thumb.is-active,
.lt-gallery-thumb[aria-current="true"] {
    border-color: var(--lt-brand);
}

.lt-gallery-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 84px;
    height: 104px;
    padding: 8px;
    border-radius: 12px;
    color: var(--lt-brand-strong) !important;
    background: var(--lt-brand-soft);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-decoration: none !important;
}

.lt-product-info { min-width: 0; }

.lt-product-category {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: var(--lt-brand-strong) !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.lt-product-title {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
}

.lt-product-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 14px;
    margin-top: 16px;
    color: var(--lt-muted);
    font-size: 14px;
}

.lt-product-utility {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.lt-product-utility button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid var(--lt-line);
    border-radius: 11px;
    color: var(--lt-muted);
    background: var(--lt-surface);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.lt-product-utility button:hover,
.lt-product-utility button[aria-pressed="true"] {
    color: var(--lt-brand-strong);
    border-color: var(--lt-brand);
    background: var(--lt-brand-soft);
}

.lt-stars { color: #e5a000; letter-spacing: 2px; }
.lt-review-link { color: var(--lt-ink) !important; font-weight: 800; }

.lt-product-price {
    margin-top: 22px;
    color: var(--lt-brand-strong);
    font-size: clamp(27px, 4vw, 36px);
    font-weight: 900;
    letter-spacing: -.02em;
}

.lt-stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    color: var(--lt-success);
    background: #eaf7f0;
    font-size: 12px;
    font-weight: 900;
}

.lt-stock-status::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.lt-divider {
    height: 1px;
    margin: 25px 0;
    border: 0;
    background: var(--lt-line);
}

.lt-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.lt-fieldset legend {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 13px;
    color: var(--lt-ink);
    font-size: 15px;
    font-weight: 900;
}

.lt-fieldset legend span {
    color: var(--lt-muted);
    font-size: 12px;
    font-weight: 600;
}

.lt-variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding: 2px;
}

.lt-variant-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 8px;
    border: 1px solid var(--lt-line);
    border-radius: 12px;
    color: var(--lt-ink);
    background: var(--lt-surface);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.lt-variant-card:hover,
.lt-variant-card.active {
    border-color: var(--lt-brand);
    background: var(--lt-brand-soft);
    transform: translateY(-2px);
}

.lt-variant-card.active { box-shadow: inset 0 0 0 1px var(--lt-brand); }

.lt-variant-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
    border-radius: 9px;
    object-fit: cover;
}

.lt-variant-card.variant-disabled {
    opacity: .46;
    cursor: not-allowed;
    filter: grayscale(.7);
}

.lt-variant-card.variant-disabled::after {
    position: absolute;
    inset: auto 6px 6px;
    padding: 3px 4px;
    border-radius: 6px;
    color: #fff;
    background: var(--lt-danger);
    content: "Habis";
    font-size: 9px;
    font-weight: 900;
    text-align: center;
}

.lt-purchase-panel {
    margin-top: 25px;
    padding: 18px;
    border: 1px solid var(--lt-line);
    border-radius: var(--lt-radius);
    background: var(--lt-surface-soft);
}

.lt-purchase-row {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
}

.lt-quantity label {
    display: block;
    margin-bottom: 6px;
    color: var(--lt-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.lt-quantity input {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--lt-line);
    border-radius: 12px;
    color: var(--lt-ink);
    background: var(--lt-surface);
    font-weight: 900;
    text-align: center;
}

.lt-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.lt-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    min-width: 0;
    padding: 12px;
    border-radius: 12px;
    background: var(--lt-surface-soft);
}

.lt-trust-item i {
    margin-top: 2px;
    color: var(--lt-brand-strong);
}

.lt-trust-item strong {
    display: block;
    color: var(--lt-ink);
    font-size: 12px;
}

.lt-trust-item span {
    display: block;
    margin-top: 2px;
    color: var(--lt-muted);
    font-size: 11px;
    line-height: 1.35;
}

.lt-detail-sections {
    display: grid;
    gap: 16px;
    margin-top: 70px;
}

.lt-detail-panel {
    overflow: hidden;
    border: 1px solid var(--lt-line);
    border-radius: var(--lt-radius);
    background: var(--lt-surface);
}

.lt-detail-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 62px;
    padding: 17px 21px;
    color: var(--lt-ink);
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    list-style: none;
}

.lt-detail-panel summary::-webkit-details-marker { display: none; }
.lt-detail-panel summary::after { content: "+"; color: var(--lt-brand); font-size: 24px; font-weight: 400; }
.lt-detail-panel[open] summary::after { content: "−"; }

.lt-detail-panel__body {
    padding: 0 21px 22px;
    color: var(--lt-muted);
    font-size: 15px;
    line-height: 1.8;
}

.lt-detail-panel__body img { max-width: 100%; height: auto; }

.lt-spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.lt-spec-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 14px;
    border-radius: 10px;
    background: var(--lt-surface-soft);
}

.lt-spec-list dt { color: var(--lt-muted); font-weight: 700; }
.lt-spec-list dd { margin: 0; color: var(--lt-ink); font-weight: 900; text-align: right; }

.lt-reviews-section,
.lt-recommendation-section,
.lt-related-cta {
    margin-top: 70px;
}

.lt-recommendation-section + .lt-recommendation-section {
    margin-top: 62px;
}

.lt-recommendation-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.lt-review-summary {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid var(--lt-line);
    border-radius: var(--lt-radius);
    background: var(--lt-surface-soft);
}

.lt-review-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lt-review-score strong {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1;
}

.lt-rating-bars { display: grid; gap: 8px; }
.lt-rating-bar { display: grid; grid-template-columns: 52px 1fr 30px; align-items: center; gap: 10px; color: var(--lt-muted); font-size: 12px; }
.lt-rating-bar__track { overflow: hidden; height: 7px; border-radius: 999px; background: #eadfe3; }
.lt-rating-bar__value { height: 100%; border-radius: inherit; background: #e5a000; }

.lt-review-list { display: grid; gap: 13px; }

.lt-review-card {
    padding: 20px;
    border: 1px solid var(--lt-line);
    border-radius: var(--lt-radius);
    background: var(--lt-surface);
}

.lt-review-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.lt-review-card h3 { margin: 0 0 5px; font-size: 15px; font-weight: 900; }
.lt-review-card time { color: var(--lt-muted); font-size: 12px; }
.lt-review-card p { margin: 13px 0 0; color: var(--lt-muted); line-height: 1.7; }
.lt-review-card__image { width: 92px; height: 92px; margin-top: 14px; border-radius: 12px; object-fit: cover; }

.lt-related-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(24px, 5vw, 46px);
    border-radius: var(--lt-radius-lg);
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .5), transparent 30%),
        var(--lt-brand-soft);
}

.lt-related-cta h2 {
    margin: 0 0 7px;
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 4vw, 38px);
}

.lt-related-cta p { margin: 0; color: var(--lt-muted); }

.variant-error { border-color: var(--lt-danger) !important; animation: lt-shake .3s; }
.swal2-container, .swal2-toast { z-index: 999999 !important; }
.swal-top { margin-top: 80px; }

@keyframes lt-shimmer { to { background-position-x: -220%; } }
@keyframes lt-shake { 25% { transform: translateX(-4px); } 50% { transform: translateX(4px); } 75% { transform: translateX(-4px); } }

@media (max-width: 1100px) {
    .lt-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lt-product-layout { grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr); gap: 34px; }
    .lt-trust-grid { grid-template-columns: 1fr; }
    .lt-recommendation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .lt-page-hero { padding-top: 40px; }
    .lt-shop-layout { grid-template-columns: 1fr; gap: 20px; }
    .lt-filter-panel { position: static; padding: 16px; }
    .lt-filter-panel:not([open]) .lt-filter-list { display: none; }
    .lt-product-layout { grid-template-columns: 1fr; }
    .lt-gallery { position: static; }
    .lt-purchase-panel { position: sticky; bottom: calc(72px + env(safe-area-inset-bottom)); z-index: 50; margin-inline: -16px; border-radius: 16px 16px 0 0; box-shadow: 0 -10px 35px rgba(67, 37, 48, .13); }
    .lt-scroll-products { grid-auto-columns: minmax(210px, 42%); }
    .lt-category-hero__grid { grid-template-columns: 1fr; gap: 28px; }
    .lt-category-hero__image { aspect-ratio: 16 / 9; }
}

@media (min-width: 821px) {
    .lt-filter-panel > summary { pointer-events: none; }
    .lt-filter-panel > summary::after { display: none; }
}

@media (max-width: 575px) {
    .lt-shell { width: min(100% - 24px, 1240px); }
    .lt-page-hero h1 { font-size: 34px; }
    .lt-page-hero__copy { font-size: 15px; }
    .lt-catalog-section { padding: 32px 0 60px; }
    .lt-catalog-toolbar { align-items: flex-start; }
    .lt-result-summary { font-size: 13px; }
    .lt-sort-menu summary { min-height: 44px; padding-inline: 12px; }
    .lt-product-grid { gap: 22px 10px; }
    .lt-product-card__actions { top: 8px; right: 8px; opacity: 1; transform: none; }
    .lt-product-card__actions .js-compare,
    .lt-product-card__actions .js-quick-view { display: none; }
    .lt-icon-button { width: 40px; height: 40px; }
    .lt-product-card__badges { top: 8px; left: 8px; }
    .lt-badge { min-height: 22px; padding: 4px 7px; font-size: 8px; }
    .lt-product-card__body { padding: 12px 5px 14px; }
    .lt-product-card__category { font-size: 9px; }
    .lt-product-card__title { min-height: 39px; font-size: 14px; line-height: 1.35; }
    .lt-product-card__price-prefix { display: none; }
    .lt-product-card__price { font-size: 15px; }
    .lt-product-card__compare-price { font-size: 10px; }
    .lt-product-card__meta { gap: 5px; font-size: 10px; }
    .lt-collection-products { padding: 18px 12px; }
    .lt-scroll-products { grid-auto-columns: 68%; gap: 12px; }
    .lt-collection-hero { min-height: 330px; }
    .lt-collection-hero__content { right: 17px; bottom: 17px; left: 17px; align-items: flex-start; flex-direction: column; gap: 10px; }
    .lt-gallery__stage { margin-inline: -12px; border-radius: 0; }
    .lt-product-page { padding-top: 20px; }
    .lt-product-title { font-size: 34px; }
    .lt-purchase-row { grid-template-columns: 84px 1fr 1fr; gap: 7px; }
    .lt-purchase-row .lt-btn { min-width: 0; padding-inline: 8px; font-size: 12px; }
    .lt-purchase-row .lt-btn i { display: none; }
    .lt-trust-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
    .lt-trust-item { flex: 0 0 72%; scroll-snap-align: start; }
    .lt-spec-list { grid-template-columns: 1fr; }
    .lt-review-summary { grid-template-columns: 1fr; gap: 20px; }
    .lt-related-cta { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .lt-catalog-page *,
    .lt-product-page * {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

[data-theme="dark"] .lt-catalog-page,
[data-theme="dark"] .lt-product-page {
    --lt-ink: #fff7fa;
    --lt-muted: #c7b9be;
    --lt-line: #493b40;
    --lt-surface: #1d181a;
    --lt-surface-soft: #292124;
    --lt-brand: #f0a4be;
    --lt-brand-strong: #f5b6cb;
    --lt-brand-soft: #3c2830;
}
