/* Landing Design: Elegant — Shop Central premium storefront (screenshot-aligned) */

body.home-page.landing-design-home-elegant,
.landing-design--elegant {
    --ld-primary: var(--color-primary, #5b2bd9);
    --ld-primary-dark: var(--color-primary-hover, color-mix(in srgb, var(--ld-primary) 82%, #000000));
    --ld-primary-light: color-mix(in srgb, var(--ld-primary) 10%, #ffffff);
    --ld-secondary: var(--color-secondary, #1f2937);
    --ld-accent: var(--color-accent, #d9a441);
    --ld-text: #171717;
    --ld-text-secondary: #6b6b6b;
    --ld-text-muted: #999999;
    --ld-bg: #ffffff;
    --ld-bg-soft: color-mix(in srgb, var(--ld-secondary) 4%, #ffffff);
    --ld-section-bg: #ffffff;
    --ld-section-bg-soft: color-mix(in srgb, var(--ld-secondary) 7%, #ffffff);
    --ld-section-bg-tint: color-mix(in srgb, var(--ld-primary) 9%, #ffffff);
    --ld-border: #ececf1;
    --ld-success: #36b37e;
    --ld-danger: #ef476f;
    --ld-warning: #f5a623;
    --ld-gold: var(--ld-accent);
    --ld-star: #f5a623;
    --ld-hero-bg: color-mix(in srgb, var(--ld-primary) 10%, #ffffff);
    --ld-featured-bg: color-mix(in srgb, var(--ld-primary) 16%, #ffffff);
    --ld-story-bg: #f5ebdd;
    --ld-radius-sm: 10px;
    --ld-radius-md: 16px;
    --ld-radius-lg: 16px;
    --ld-radius-pill: 999px;
    --ld-shadow-soft: none;
    --ld-shadow-card: none;
    --ld-shadow-hover: 0 6px 18px rgba(20, 20, 40, 0.06);
    --ld-transition: 200ms ease;
    --ld-max: 1320px;
    --ld-content: 1200px;
    --ld-section-gap: 40px;
    --ld-section-header-gap: 24px;
    --ld-pad-x: 16px;
    --ld-header-primary-h: 72px;
    --ld-header-nav-h: 38px;
    --ld-hero-h: 330px;
    --ld-cat-size: 112px;
    --ld-story-h: 170px;
    --ld-newsletter-h: 88px;
    --ld-grid-gap: 16px;
}

.landing-design--elegant {
    color: var(--ld-text);
    background: var(--ld-bg);
    font-family: 'Vazirmatn', var(--font-sans, sans-serif);
    font-size: 14px;
}

body.home-page.landing-design-home-elegant {
    background: #ffffff;
    color: #171717;
    font-family: 'Vazirmatn', var(--font-sans, sans-serif);
    font-size: 14px;
    overflow-x: clip;
}

body.home-page.landing-design-home-elegant main.landing-design--elegant {
    overflow: visible;
}

.landing-design--elegant .container-shop,
body.home-page.landing-design-home-elegant .container-shop {
    max-width: var(--ld-max, 1320px);
    padding-inline: var(--ld-pad-x, 16px);
}

/* ── Motion ── */
@keyframes ld-elegant-fade-up {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-design--elegant .ld-elegant-animate {
    animation: ld-elegant-fade-up 0.45s ease both;
}

.landing-design--elegant .ld-elegant-animate-2 {
    animation-delay: 0.1s;
}

/* ── Header: two rows ── */
body.home-page.landing-design-home-elegant .ld-elegant-header {
    height: auto;
    background: #ffffff;
    border-bottom: 0;
}

body.home-page.landing-design-home-elegant .ld-elegant-header-primary {
    height: var(--ld-header-primary-h, 72px);
    background: #ffffff;
    border-bottom: 1px solid #ececf1;
}

body.home-page.landing-design-home-elegant .ld-elegant-header-primary-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    height: var(--ld-header-primary-h, 72px);
}

body.home-page.landing-design-home-elegant .ld-elegant-header-menu {
    grid-column: 1;
}

body.home-page.landing-design-home-elegant .ld-elegant-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--ld-primary);
    text-decoration: none;
}

body.home-page.landing-design-home-elegant .ld-elegant-brand-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--ld-primary-light);
    color: var(--ld-primary);
}

body.home-page.landing-design-home-elegant .ld-elegant-brand-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ld-primary);
    letter-spacing: -0.02em;
}

body.home-page.landing-design-home-elegant .ld-elegant-header-navigation {
    height: var(--ld-header-nav-h, 38px);
    background: var(--ld-section-bg-soft);
    border-bottom: 1px solid #ececf1;
}

body.home-page.landing-design-home-elegant .ld-elegant-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    height: var(--ld-header-nav-h, 38px);
    overflow-x: auto;
    scrollbar-width: none;
}

body.home-page.landing-design-home-elegant .ld-elegant-nav::-webkit-scrollbar {
    display: none;
}

body.home-page.landing-design-home-elegant .ld-elegant-nav-link {
    position: relative;
    padding: 0 10px;
    border-radius: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 500;
    line-height: var(--ld-header-nav-h, 38px);
    color: #6b6b6b;
    text-decoration: none;
    white-space: nowrap;
    transition: color 200ms ease;
}

body.home-page.landing-design-home-elegant .ld-elegant-nav-link:hover {
    color: var(--ld-primary);
    background: transparent;
}

body.home-page.landing-design-home-elegant .ld-elegant-nav-link.is-active {
    color: var(--ld-primary);
    font-weight: 700;
    background: transparent;
}

body.home-page.landing-design-home-elegant .ld-elegant-nav-link.is-active::after {
    content: "";
    position: absolute;
    right: 10px;
    left: 10px;
    bottom: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--ld-primary);
}

body.home-page.landing-design-home-elegant .ld-elegant-search {
    position: relative;
}

body.home-page.landing-design-home-elegant .ld-elegant-search--desktop {
    display: none;
    width: 360px;
    max-width: 100%;
    justify-self: center;
}

body.home-page.landing-design-home-elegant .ld-elegant-search--mobile {
    display: block;
    padding: 8px 0 12px;
    background: #ffffff;
    border-bottom: 1px solid #ececf1;
}

body.home-page.landing-design-home-elegant .ld-elegant-search-field {
    position: relative;
}

body.home-page.landing-design-home-elegant .ld-elegant-search-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    color: #999999;
    pointer-events: none;
}

body.home-page.landing-design-home-elegant .ld-elegant-search-input {
    width: 100%;
    height: 40px;
    padding: 0 40px 0 14px;
    border: 1px solid #ececf1;
    border-radius: 999px;
    background: var(--ld-bg-soft);
    color: #171717;
    font-size: 0.8125rem;
    outline: none;
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

body.home-page.landing-design-home-elegant .ld-elegant-search-input:focus {
    border-color: var(--ld-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ld-primary) 10%, transparent);
    background: #ffffff;
}

body.home-page.landing-design-home-elegant .ld-elegant-search-field:focus-within .ld-elegant-search-icon {
    color: var(--ld-primary);
}

body.home-page.landing-design-home-elegant .ld-elegant-header-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}

body.home-page.landing-design-home-elegant .ld-elegant-header-action,
body.home-page.landing-design-home-elegant .ld-elegant-header-icon,
body.home-page.landing-design-home-elegant .ld-elegant-header-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 40px;
    min-height: 40px;
    padding: 6px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #171717;
    text-decoration: none;
    cursor: pointer;
    transition: color 200ms ease, background 200ms ease;
}

body.home-page.landing-design-home-elegant .ld-elegant-header-action:hover,
body.home-page.landing-design-home-elegant .ld-elegant-header-icon:hover,
body.home-page.landing-design-home-elegant .ld-elegant-header-menu:hover {
    background: var(--ld-primary-light);
    color: var(--ld-primary);
}

body.home-page.landing-design-home-elegant .ld-elegant-header-action:active,
body.home-page.landing-design-home-elegant .ld-elegant-header-icon:active,
body.home-page.landing-design-home-elegant .ld-elegant-header-menu:active {
    background: var(--ld-section-bg-tint);
}

body.home-page.landing-design-home-elegant .ld-elegant-header-action-label {
    display: none;
}

body.home-page.landing-design-home-elegant .ld-elegant-header-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: var(--ld-primary);
    color: #ffffff;
    font-size: 0.5625rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    line-height: 1;
}

/* ── Buttons ── */
.landing-design--elegant .ld-elegant-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.landing-design--elegant .ld-elegant-btn:hover {
    transform: translateY(-1px);
}

.landing-design--elegant .ld-elegant-btn:active {
    transform: translateY(0);
}

.landing-design--elegant .ld-elegant-btn-primary {
    background: var(--ld-primary);
    color: #ffffff;
}

.landing-design--elegant .ld-elegant-btn-primary:hover {
    background: var(--ld-primary-dark);
}

.landing-design--elegant .ld-elegant-btn-secondary {
    background: #ffffff;
    color: #171717;
    border-color: #ececf1;
}

.landing-design--elegant .ld-elegant-btn-secondary:hover {
    border-color: var(--ld-primary);
    background: #ffffff;
    color: var(--ld-primary);
}

.landing-design--elegant .ld-elegant-btn-gold {
    background: var(--ld-gold);
    color: #171717;
    border-color: var(--ld-gold);
}

.landing-design--elegant .ld-elegant-btn-gold:hover {
    background: #c4922f;
}

.landing-design--elegant .ld-elegant-btn-newsletter {
    background: #ffffff;
    color: var(--ld-primary);
    min-height: 40px;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 700;
}

.landing-design--elegant .ld-elegant-btn-newsletter:hover {
    background: var(--ld-hero-bg);
}

.landing-design--elegant .ld-elegant-btn-block {
    width: 100%;
}

.landing-design--elegant .ld-elegant-btn:focus-visible,
body.home-page.landing-design-home-elegant .ld-elegant-nav-link:focus-visible,
body.home-page.landing-design-home-elegant .ld-elegant-search-input:focus-visible,
body.home-page.landing-design-home-elegant .ld-elegant-header-action:focus-visible,
body.home-page.landing-design-home-elegant .ld-elegant-header-icon:focus-visible,
body.home-page.landing-design-home-elegant .ld-elegant-header-menu:focus-visible {
    outline: 2px solid var(--ld-primary);
    outline-offset: 2px;
}

/* ── Hero slider: rounded card + lavender gradient, split image panel ── */
.landing-design--elegant .ld-elegant-hero--split {
    position: relative;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-block-start: 16px;
    background: transparent;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
}

.landing-design--elegant .ld-elegant-slider,
.landing-design--elegant .ld-elegant-hero--split > .container-shop > .ld-elegant-hero-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--ld-radius-md, 16px);
    background:
        radial-gradient(ellipse 72% 90% at 88% 18%, color-mix(in srgb, var(--ld-primary) 10%, transparent), transparent 58%),
        radial-gradient(ellipse 50% 70% at 12% 88%, color-mix(in srgb, var(--ld-secondary) 6%, transparent), transparent 62%),
        linear-gradient(
            105deg,
            color-mix(in srgb, var(--ld-primary) 14%, #ffffff) 0%,
            var(--ld-hero-bg) 46%,
            color-mix(in srgb, var(--ld-primary) 5%, #ffffff) 100%
        );
}

.landing-design--elegant .ld-elegant-hero-viewport {
    position: relative;
    width: 100%;
}

.landing-design--elegant .ld-elegant-hero-slide {
    position: absolute;
    inset: 0;
    min-height: var(--ld-hero-h, 330px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.landing-design--elegant .ld-elegant-hero-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.landing-design--elegant .ld-elegant-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    max-width: none;
    min-height: var(--ld-hero-h, 330px);
    margin-inline: 0;
    padding-inline: 0;
    padding-block: 0;
    gap: 0;
}

.landing-design--elegant .ld-elegant-hero-content {
    text-align: start;
    min-width: 0;
    padding: 24px 20px 40px;
}

.landing-design--elegant .ld-elegant-hero-eyebrow {
    margin: 0 0 14px;
    color: #8a8a96;
    font-size: 13px;
    font-weight: 500;
}

.landing-design--elegant .ld-elegant-hero-title {
    margin: 0;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.45;
    color: #171717;
}

.landing-design--elegant .ld-elegant-hero-title-sub {
    display: block;
    margin-top: 4px;
    color: #171717;
}

.landing-design--elegant .ld-elegant-hero-desc {
    margin: 16px 0 0;
    max-width: 28rem;
    color: #8a8a96;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-design--elegant .ld-elegant-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.landing-design--elegant .ld-elegant-hero-actions .ld-elegant-btn {
    border-radius: 999px;
    min-height: 48px;
    padding: 12px 26px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: none;
}

.landing-design--elegant .ld-elegant-hero-actions .ld-elegant-btn-primary {
    background: var(--ld-primary);
    color: #ffffff;
}

.landing-design--elegant .ld-elegant-hero-actions .ld-elegant-btn-secondary {
    background: #ffffff;
    color: #171717;
    border-color: transparent;
    box-shadow: 0 10px 28px color-mix(in srgb, var(--ld-primary) 10%, transparent);
}

.landing-design--elegant .ld-elegant-slide-media {
    position: relative;
    align-self: stretch;
    min-height: 180px;
    overflow: hidden;
    background: transparent;
}

.landing-design--elegant .ld-elegant-slide-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
}

.landing-design--elegant .ld-elegant-slide-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        to left,
        var(--ld-hero-bg) 0%,
        color-mix(in srgb, var(--ld-hero-bg) 78%, transparent) 24%,
        color-mix(in srgb, var(--ld-hero-bg) 28%, transparent) 52%,
        transparent 74%
    );
}

.landing-design--elegant .ld-elegant-hero-controls {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}

.landing-design--elegant .ld-elegant-hero-nav {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #6b6b6b;
    cursor: pointer;
}

.landing-design--elegant .ld-elegant-hero-nav:hover {
    color: var(--ld-primary);
}

.landing-design--elegant .ld-elegant-hero-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.landing-design--elegant .ld-elegant-hero-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ld-primary) 22%, transparent);
    cursor: pointer;
}

.landing-design--elegant .ld-elegant-hero-dot.is-active {
    width: 18px;
    background: var(--ld-primary);
}

.landing-design--elegant .ld-elegant-featured-media img,
.landing-design--elegant .ld-elegant-product-media img,
.landing-design--elegant .ld-elegant-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 200ms ease;
}

.landing-design--elegant .ld-elegant-product-card:hover img,
.landing-design--elegant .ld-elegant-featured:hover img,
.landing-design--elegant .ld-elegant-category-card:hover .ld-elegant-category-media {
    transform: scale(1.04);
}

/* ── Sections ── */
.landing-design--elegant .ld-elegant-section {
    padding-block: var(--ld-section-gap, 64px);
    background: var(--ld-section-bg, #ffffff);
}

.landing-design--elegant .ld-elegant-section--soft {
    background: var(--ld-section-bg-soft);
}

.landing-design--elegant .ld-elegant-section--tint {
    background: var(--ld-section-bg-tint);
}

.landing-design--elegant .ld-elegant-section--surface {
    background: var(--ld-section-bg, #ffffff);
}

.landing-design--elegant .ld-elegant-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: var(--ld-section-header-gap, 24px);
}

.landing-design--elegant .ld-elegant-heading {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #171717;
}

.landing-design--elegant .ld-elegant-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ld-primary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.landing-design--elegant .ld-elegant-link:hover {
    color: var(--ld-primary-dark);
}

.landing-design--elegant .ld-elegant-empty {
    margin: 0;
    padding: 32px 16px;
    text-align: center;
    color: #6b6b6b;
    border: 1px dashed #ececf1;
    border-radius: 16px;
}

/* ── Categories: compact 112px tiles ── */
.landing-design--elegant .ld-elegant-category-grid {
    display: grid;
    grid-template-columns: repeat(3, var(--ld-cat-size, 112px));
    justify-content: space-between;
    gap: 12px;
}

.landing-design--elegant .ld-elegant-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--ld-cat-size, 112px);
    height: var(--ld-cat-size, 112px);
    gap: 6px;
    padding: 10px 8px 8px;
    border: 0;
    border-radius: 16px;
    background: var(--ld-primary-light);
    box-shadow: none;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.landing-design--elegant .ld-elegant-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(20, 20, 40, 0.06);
}

.landing-design--elegant .ld-elegant-category-card.has-photo {
    background: #ffffff;
    border: 1px solid #ececf1;
}

.landing-design--elegant .ld-elegant-category-media {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
    color: var(--ld-primary);
    transition: transform 200ms ease;
}

.landing-design--elegant .ld-elegant-category-photo {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.landing-design--elegant .ld-elegant-category-letter {
    font-size: 1.35rem;
    font-weight: 800;
}

.landing-design--elegant .ld-elegant-category-title {
    font-size: 12px;
    font-weight: 600;
    color: #171717;
    text-align: center;
    line-height: 1.35;
}

/* ── Featured deals: large + 3 small ── */
.landing-design--elegant .ld-elegant-deals {
    display: grid;
    gap: var(--ld-grid-gap, 16px);
}

.landing-design--elegant .ld-elegant-featured {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: var(--ld-featured-bg);
    overflow: hidden;
    box-shadow: none;
}

.landing-design--elegant .ld-elegant-featured-media {
    display: grid;
    place-items: center;
    min-height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
}

.landing-design--elegant .ld-elegant-featured-title {
    margin: 0 0 8px;
    font-size: 1.125rem;
    font-weight: 800;
}

.landing-design--elegant .ld-elegant-featured-title a {
    color: #171717;
    text-decoration: none;
}

.landing-design--elegant .ld-elegant-featured-desc {
    margin: 0 0 12px;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.7;
}

.landing-design--elegant .ld-elegant-product-grid {
    display: grid;
    gap: var(--ld-grid-gap, 16px);
}

.landing-design--elegant .ld-elegant-product-grid--3,
.landing-design--elegant .ld-elegant-product-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-design--elegant .ld-elegant-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #ececf1;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.landing-design--elegant .ld-elegant-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(20, 20, 40, 0.06);
}

.landing-design--elegant .ld-elegant-product-media {
    position: relative;
    aspect-ratio: 1;
    background: var(--ld-bg-soft);
    overflow: hidden;
}

.landing-design--elegant .ld-elegant-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.landing-design--elegant .ld-elegant-product-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 120px;
    color: #999999;
}

.landing-design--elegant .ld-elegant-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    padding: 3px 8px;
    border-radius: 999px;
    background: #ef476f;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.landing-design--elegant .ld-elegant-wishlist-form {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    margin: 0;
}

.landing-design--elegant .ld-elegant-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ececf1;
    border-radius: 50%;
    background: #ffffff;
    color: var(--ld-primary);
    cursor: pointer;
    text-decoration: none;
}

.landing-design--elegant .ld-elegant-wishlist-form .ld-elegant-wishlist {
    position: static;
}

.landing-design--elegant .ld-elegant-product-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
}

.landing-design--elegant .ld-elegant-product-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
    color: #171717;
}

.landing-design--elegant .ld-elegant-product-title a {
    color: inherit;
    text-decoration: none;
}

.landing-design--elegant .ld-elegant-product-rating,
.landing-design--elegant .ld-elegant-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.landing-design--elegant .ld-elegant-star {
    width: 12px;
    height: 12px;
    color: #ececf1;
}

.landing-design--elegant .ld-elegant-star.is-on {
    color: #f5a623;
}

.landing-design--elegant .ld-elegant-rating-value,
.landing-design--elegant .ld-elegant-rating-count {
    font-size: 11px;
    color: #6b6b6b;
}

.landing-design--elegant .ld-elegant-product-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.landing-design--elegant .ld-elegant-product-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.landing-design--elegant .ld-elegant-price-old {
    color: #999999;
    font-size: 11px;
    text-decoration: line-through;
}

.landing-design--elegant .ld-elegant-price-current {
    color: #171717;
    font-size: 14px;
    font-weight: 800;
}

.landing-design--elegant .ld-elegant-mini-cart {
    margin: 0;
}

.landing-design--elegant .ld-elegant-mini-cart-btn {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ececf1;
    border-radius: 10px;
    background: #ffffff;
    color: var(--ld-primary);
    cursor: pointer;
}

.landing-design--elegant .ld-elegant-product-cart {
    padding: 0 12px 12px;
}

.landing-design--elegant .ld-elegant-product-card.is-compact .ld-elegant-product-media {
    aspect-ratio: 1.05;
}

.landing-design--elegant .ld-elegant-product-card.is-compact .ld-elegant-product-body {
    padding: 10px;
}

.landing-design--elegant .ld-elegant-product-card.is-compact .ld-elegant-product-title {
    font-size: 12px;
}

/* ── Brand story banner ── */
.landing-design--elegant .ld-elegant-story-wrap {
    padding-block: var(--ld-section-gap, 64px) 0;
    background: var(--ld-section-bg, #ffffff);
}

.landing-design--elegant .ld-elegant-story {
    display: grid;
    grid-template-columns: 1fr;
    min-height: var(--ld-story-h, 170px);
    border-radius: 16px;
    background: #f5ebdd;
    overflow: hidden;
}

.landing-design--elegant .ld-elegant-story-media {
    position: relative;
    min-height: 160px;
    overflow: hidden;
}

.landing-design--elegant .ld-elegant-story-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
}

.landing-design--elegant .ld-elegant-story-content {
    padding: 22px 24px;
}

.landing-design--elegant .ld-elegant-story-title {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.55;
    color: #171717;
}

.landing-design--elegant .ld-elegant-story-desc {
    margin: 0 0 14px;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Trust strip ── */
.landing-design--elegant .ld-elegant-trust-wrap {
    padding-block: 28px var(--ld-section-gap, 64px);
    background: var(--ld-section-bg-soft);
}

.landing-design--elegant .ld-elegant-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: #ffffff;
}

.landing-design--elegant .ld-elegant-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.landing-design--elegant .ld-elegant-trust-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ld-primary);
    flex-shrink: 0;
}

.landing-design--elegant .ld-elegant-trust-title {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
}

.landing-design--elegant .ld-elegant-trust-desc {
    margin: 0;
    color: #6b6b6b;
    font-size: 11px;
    line-height: 1.6;
}

/* ── Recommended rail ── */
.landing-design--elegant .ld-elegant-rail {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
}

.landing-design--elegant .ld-elegant-rail-btn {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ececf1;
    border-radius: 50%;
    background: #ffffff;
    color: #171717;
    cursor: pointer;
}

.landing-design--elegant .ld-elegant-rail.is-static {
    grid-template-columns: 1fr;
}

.landing-design--elegant .ld-elegant-rail.is-static .ld-elegant-rail-btn {
    display: none;
}

.landing-design--elegant .ld-elegant-carousel {
    display: flex;
    gap: var(--ld-grid-gap, 16px);
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.landing-design--elegant .ld-elegant-carousel::-webkit-scrollbar {
    display: none;
}

.landing-design--elegant .ld-elegant-carousel-item {
    flex: 0 0 calc((100% - 16px) / 2);
    scroll-snap-align: start;
    min-width: 0;
}

/* ── Reviews ── */
.landing-design--elegant .ld-elegant-reviews {
    display: grid;
    gap: var(--ld-grid-gap, 16px);
}

.landing-design--elegant .ld-elegant-review-card {
    position: relative;
    padding: 18px 18px 16px;
    border: 1px solid #ececf1;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
}

.landing-design--elegant .ld-elegant-quote {
    display: block;
    margin: 0 0 8px;
    font-size: 2rem;
    line-height: 0.7;
    color: var(--ld-primary);
    opacity: 0.28;
    font-family: Georgia, 'Times New Roman', serif;
}

.landing-design--elegant .ld-elegant-review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.landing-design--elegant .ld-elegant-avatar {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ld-primary-light);
    color: var(--ld-primary);
    font-size: 12px;
    font-weight: 700;
}

.landing-design--elegant .ld-elegant-review-name {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
}

.landing-design--elegant .ld-elegant-review-text {
    margin: 0;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.7;
}

/* ── Newsletter compact strip ── */
.landing-design--elegant .ld-elegant-newsletter-wrap {
    padding-block: 8px var(--ld-section-gap, 64px);
    background: var(--ld-section-bg, #ffffff);
}

.landing-design--elegant .ld-elegant-newsletter {
    display: grid;
    gap: 14px;
    align-items: center;
    min-height: var(--ld-newsletter-h, 88px);
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--ld-primary);
    color: #ffffff;
}

.landing-design--elegant .ld-elegant-newsletter-title {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
}

.landing-design--elegant .ld-elegant-newsletter-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
}

.landing-design--elegant .ld-elegant-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.landing-design--elegant .ld-elegant-newsletter-input {
    width: 100%;
    min-height: 40px;
    padding: 8px 14px;
    border: 0;
    border-radius: 10px;
    background: #ffffff;
    color: #171717;
    font-size: 13px;
}

.landing-design--elegant .ld-elegant-newsletter-input:focus {
    outline: 2px solid var(--ld-primary);
    outline-offset: 2px;
}

.landing-design--elegant .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Footer ── */
body.home-page.landing-design-home-elegant .ld-elegant-footer {
    background: #ffffff;
    border-top: 1px solid #ececf1;
}

body.home-page.landing-design-home-elegant .ld-elegant-footer-inner {
    padding-top: 40px;
    padding-bottom: 24px;
}

body.home-page.landing-design-home-elegant .ld-elegant-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

body.home-page.landing-design-home-elegant .ld-elegant-footer-title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: #171717;
}

body.home-page.landing-design-home-elegant .ld-elegant-footer-text,
body.home-page.landing-design-home-elegant .ld-elegant-footer-list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #6b6b6b;
    font-size: 12px;
    line-height: 1.9;
}

body.home-page.landing-design-home-elegant .ld-elegant-footer-list a {
    color: #6b6b6b;
    text-decoration: none;
}

body.home-page.landing-design-home-elegant .ld-elegant-footer-list a:hover {
    color: var(--ld-primary);
}

body.home-page.landing-design-home-elegant .ld-elegant-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body.home-page.landing-design-home-elegant .ld-elegant-trust-badge {
    padding: 8px 10px;
    border: 1px solid #ececf1;
    border-radius: 10px;
    background: var(--ld-bg-soft);
    color: #6b6b6b;
    font-size: 11px;
}

body.home-page.landing-design-home-elegant .ld-elegant-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #ececf1;
    color: #6b6b6b;
    font-size: 12px;
}

body.home-page.landing-design-home-elegant .ld-elegant-social {
    display: flex;
    gap: 10px;
}

body.home-page.landing-design-home-elegant .ld-elegant-social a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid #ececf1;
    border-radius: 50%;
    color: #6b6b6b;
    text-decoration: none;
    font-size: 11px;
}

body.home-page.landing-design-home-elegant .ld-elegant-social a:hover {
    color: var(--ld-primary);
    border-color: var(--ld-primary);
}

/* ── Plugin landing sections ── */
.landing-design--elegant .ld-elegant-section-desc {
    margin: -12px 0 24px;
    color: #8a8a96;
    font-size: 13px;
    line-height: 1.7;
}

.landing-design--elegant .ld-elegant-blog-grid {
    display: grid;
    gap: var(--ld-grid-gap, 16px);
    grid-template-columns: 1fr;
}

.landing-design--elegant .ld-elegant-article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #ececf1;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: none;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.landing-design--elegant .ld-elegant-article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(20, 20, 40, 0.06);
}

.landing-design--elegant .ld-elegant-article-media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--ld-bg-soft);
}

.landing-design--elegant .ld-elegant-article-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.landing-design--elegant .ld-elegant-article-card:hover .ld-elegant-article-media img {
    transform: scale(1.04);
}

.landing-design--elegant .ld-elegant-article-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 140px;
    color: #999999;
}

.landing-design--elegant .ld-elegant-article-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 16px 18px;
}

.landing-design--elegant .ld-elegant-article-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #8a8a96;
    font-size: 11px;
}

.landing-design--elegant .ld-elegant-article-title {
    margin: 8px 0 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.landing-design--elegant .ld-elegant-article-title a {
    color: #171717;
    text-decoration: none;
}

.landing-design--elegant .ld-elegant-article-title a:hover {
    color: var(--ld-primary);
}

.landing-design--elegant .ld-elegant-article-excerpt {
    display: -webkit-box;
    margin: 8px 0 0;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.75;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.landing-design--elegant .ld-elegant-article-more {
    margin-top: auto;
    padding-top: 14px;
}

.landing-design--elegant .ld-elegant-blog-empty {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 36px 24px;
    border: 1px solid #ececf1;
    border-radius: 16px;
    background: var(--ld-section-bg-tint);
    text-align: center;
}

.landing-design--elegant .ld-elegant-blog-empty-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 6px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--ld-primary);
}

.landing-design--elegant .ld-elegant-blog-empty-title {
    margin: 0;
    color: #171717;
    font-size: 15px;
    font-weight: 700;
}

.landing-design--elegant .ld-elegant-blog-empty-desc {
    margin: 0 0 10px;
    max-width: 28rem;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.7;
}

.landing-design--elegant .ld-landing-portfolio {
    padding-block: var(--ld-section-gap, 64px);
}

/* ── Tablet ── */
@media (min-width: 768px) {
    .landing-design--elegant {
        --ld-section-gap: 50px;
        --ld-pad-x: 32px;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-header-menu {
        display: none;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-header-primary-inner {
        grid-template-columns: 1fr auto 1fr;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-brand {
        justify-self: start;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-search--desktop {
        display: block;
        justify-self: center;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-header-actions {
        justify-self: end;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-search--mobile {
        display: none;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-nav {
        justify-content: center;
        overflow: visible;
    }

    .landing-design--elegant .ld-elegant-hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
        height: var(--ld-hero-h, 330px);
        min-height: var(--ld-hero-h, 330px);
        padding-block: 0;
        gap: 0;
    }

    .landing-design--elegant .ld-elegant-hero-content {
        padding: 28px 36px 28px 24px;
    }

    .landing-design--elegant .ld-elegant-slide-media {
        min-height: 100%;
        height: 100%;
        order: 1;
    }

    .landing-design--elegant .ld-elegant-category-grid {
        grid-template-columns: repeat(4, var(--ld-cat-size, 112px));
    }

    .landing-design--elegant .ld-elegant-deals {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .landing-design--elegant .ld-elegant-product-grid--3,
    .landing-design--elegant .ld-elegant-product-grid--4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-design--elegant .ld-elegant-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-design--elegant .ld-elegant-story {
        grid-template-columns: 1.1fr 0.9fr;
        height: var(--ld-story-h, 170px);
        min-height: var(--ld-story-h, 170px);
    }

    .landing-design--elegant .ld-elegant-story-media {
        min-height: 100%;
        order: 1;
    }

    .landing-design--elegant .ld-elegant-story-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: none;
        padding: 20px 28px;
    }

    .landing-design--elegant .ld-elegant-reviews {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-design--elegant .ld-elegant-newsletter {
        grid-template-columns: 1.1fr 0.9fr;
        padding-inline: 28px;
    }

    .landing-design--elegant .ld-elegant-newsletter-form {
        flex-direction: row;
        align-items: center;
    }

    .landing-design--elegant .ld-elegant-newsletter-input {
        flex: 1;
    }

    .landing-design--elegant .ld-elegant-carousel-item {
        flex-basis: calc((100% - 48px) / 4);
    }

    body.home-page.landing-design-home-elegant .ld-elegant-footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.home-page.landing-design-home-elegant .ld-elegant-footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ── Desktop ── */
@media (min-width: 1200px) {
    .landing-design--elegant {
        --ld-section-gap: 64px;
        --ld-pad-x: 60px;
    }

    .landing-design--elegant .ld-elegant-hero--split {
        min-height: 0;
        padding-block-start: 20px;
    }

    .landing-design--elegant .ld-elegant-hero-inner {
        min-height: var(--ld-hero-h, 330px);
        height: var(--ld-hero-h, 330px);
        padding-inline: 0;
    }

    .landing-design--elegant .ld-elegant-hero-content {
        padding-inline: 48px 32px;
    }

    .landing-design--elegant .ld-elegant-hero-title {
        font-size: 32px;
    }

    .landing-design--elegant .ld-elegant-hero-desc {
        font-size: 14px;
    }

    .landing-design--elegant .ld-elegant-category-grid {
        grid-template-columns: repeat(6, var(--ld-cat-size, 112px));
    }

    .landing-design--elegant .ld-elegant-deals {
        grid-template-columns: 2.5fr 3fr;
    }

    .landing-design--elegant .ld-elegant-featured {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        min-height: 100%;
    }

    .landing-design--elegant .ld-elegant-product-grid--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-design--elegant .ld-elegant-product-grid--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .landing-design--elegant .ld-elegant-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-design--elegant .ld-elegant-article-card.is-featured {
        display: grid;
        grid-column: span 2;
        grid-template-columns: 1.15fr 0.85fr;
        align-items: stretch;
    }

    .landing-design--elegant .ld-elegant-article-card.is-featured .ld-elegant-article-media {
        order: 1;
        aspect-ratio: auto;
        min-height: 100%;
        height: 100%;
    }

    .landing-design--elegant .ld-elegant-article-card.is-featured .ld-elegant-article-body {
        justify-content: center;
        padding: 24px 22px;
    }

    .landing-design--elegant .ld-elegant-article-card.is-featured .ld-elegant-article-title {
        font-size: 1.25rem;
    }

    .landing-design--elegant .ld-elegant-article-card.is-featured .ld-elegant-article-excerpt {
        -webkit-line-clamp: 3;
    }

    .landing-design--elegant .ld-elegant-trust {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .landing-design--elegant .ld-elegant-trust-item {
        padding: 8px 18px;
        border-inline-end: 1px solid #ececf1;
    }

    .landing-design--elegant .ld-elegant-trust-item:last-child {
        border-inline-end: 0;
    }

    .landing-design--elegant .ld-elegant-reviews {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-design--elegant .ld-elegant-carousel-item {
        flex-basis: calc((100% - 64px) / 5);
    }

    .landing-design--elegant .ld-elegant-story-title {
        font-size: 1.45rem;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-footer-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .landing-design--elegant {
        --ld-section-gap: 40px;
        --ld-pad-x: 16px;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-header-primary {
        height: auto;
        min-height: 56px;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-header-primary-inner {
        grid-template-columns: auto 1fr auto;
        height: 56px;
    }

    body.home-page.landing-design-home-elegant .ld-elegant-search--desktop {
        display: none;
    }

    .landing-design--elegant .ld-elegant-hero-inner {
        min-height: 0;
        padding-block: 0;
        padding-inline: 0;
        gap: 0;
    }

    .landing-design--elegant .ld-elegant-hero-content {
        padding: 20px 16px 32px;
    }

    .landing-design--elegant .ld-elegant-slide-media {
        min-height: 160px;
        order: -1;
    }

    .landing-design--elegant .ld-elegant-slide-media::after {
        background: linear-gradient(
            to top,
            var(--ld-hero-bg) 0%,
            color-mix(in srgb, var(--ld-hero-bg) 72%, transparent) 28%,
            color-mix(in srgb, var(--ld-hero-bg) 20%, transparent) 58%,
            transparent 78%
        );
    }

    .landing-design--elegant .ld-elegant-hero-actions .ld-elegant-btn {
        min-height: 42px;
        padding: 10px 16px;
        font-size: 0.75rem;
    }

    .landing-design--elegant .ld-elegant-story {
        min-height: 0;
    }

    .landing-design--elegant .ld-elegant-story-media {
        min-height: 160px;
    }

    .landing-design--elegant .ld-elegant-rail {
        grid-template-columns: 1fr;
    }

    .landing-design--elegant .ld-elegant-rail-btn {
        display: none;
    }

    .landing-design--elegant .ld-elegant-carousel-item {
        flex-basis: 46%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-design--elegant .ld-elegant-hero-slide,
    .landing-design--elegant .ld-elegant-product-card,
    .landing-design--elegant .ld-elegant-article-card,
    .landing-design--elegant .ld-elegant-article-media img,
    .landing-design--elegant .ld-elegant-category-card,
    .landing-design--elegant .ld-elegant-btn {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}
