:root {
    --lt-primary: #4A6572;
    --lt-primary-dark: #344750;
    --lt-accent: #899BA3;
    --lt-bg: #F9FAFA;
    --lt-surface: #FFFFFF;
    --lt-text: #212D33;
    --lt-muted: #576C76;
    --lt-border: #E4E8EA;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

.lt-body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--lt-bg);
    color: var(--lt-text);
    overflow-x: hidden;
    max-width: 100%;
}

@media (max-width: 575.98px) {
    .lt-body .container {
        padding-left: 0.5rem;
        padding-right: 1.5rem;
    }
}

.lt-body a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Header ---------- */
.lt-header {
    background: var(--lt-surface);
    border-bottom: 1px solid var(--lt-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(33, 45, 51, 0.05);
}

.lt-header-logo {
    height: 60px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .lt-header-logo {
        height: 44px;
    }
}

/* ---------- Quick links strip ---------- */
.lt-quicklinks {
    background: var(--lt-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lt-quicklinks__track {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    overflow-x: auto;
    padding: 0.6rem 0;
    scrollbar-width: none;
}

.lt-quicklinks__track::-webkit-scrollbar {
    display: none;
}

.lt-body a.lt-quicklinks__item {
    flex: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color .15s ease;
}

.lt-body a.lt-quicklinks__item:hover {
    color: var(--lt-accent);
}

.lt-logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--lt-primary);
    letter-spacing: 0.5px;
}

.lt-nav .nav-link {
    color: var(--lt-text);
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.lt-nav .nav-link:hover,
.lt-nav .nav-link.active {
    color: var(--lt-primary);
}

.lt-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    color: var(--lt-primary);
    font-size: 1.2rem;
    border: 1.5px solid var(--lt-border);
    background: var(--lt-surface);
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}

.lt-icon-btn:hover,
.lt-icon-btn:focus-visible,
.lt-icon-btn[aria-expanded="true"] {
    background: var(--lt-primary);
    border-color: var(--lt-primary);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(74, 101, 114, 0.22);
}

.lt-icon-btn:active {
    transform: translateY(0);
}

.lt-icon-badge {
    position: absolute;
    top: -0.3rem;
    right: -0.3rem;
    background: var(--lt-accent);
    color: var(--lt-text);
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 999px;
    min-width: 1.15rem;
    height: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.3rem;
    line-height: 1;
    border: 2px solid var(--lt-surface);
}

/* ---------- Account dropdown ---------- */
.lt-account-dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    pointer-events: none;
}

.lt-account-dropdown .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lt-account-menu {
    min-width: 14rem;
    padding: 0.4rem;
    margin-top: 0.6rem !important;
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(43, 35, 32, 0.14);
}

.lt-account-menu__header {
    padding: 0.5rem 0.75rem 0.6rem;
    margin-bottom: 0.3rem;
    border-bottom: 1px solid var(--lt-border);
    font-weight: 700;
    color: var(--lt-text);
    font-size: 0.9rem;
}

.lt-account-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--lt-text);
}

.lt-account-menu .dropdown-item i {
    color: var(--lt-primary);
    font-size: 1rem;
    width: 1.1rem;
    text-align: center;
}

.lt-account-menu .dropdown-item:hover,
.lt-account-menu .dropdown-item:focus {
    background: var(--lt-bg);
    color: var(--lt-primary);
}

/* ---------- Buttons ---------- */
.btn-lt-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lt-primary);
    border: 1px solid var(--lt-primary);
    color: #fff !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.6rem 1.4rem;
    transition: background .2s ease;
}

.btn-lt-primary:hover {
    background: var(--lt-primary-dark);
    border-color: var(--lt-primary-dark);
    color: #fff;
}

.btn-lt-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid var(--lt-primary);
    color: var(--lt-primary);
    font-weight: 700;
    border-radius: 8px;
    padding: 0.55rem 1.4rem;
    transition: all .2s ease;
}

.btn-lt-outline:hover {
    background: var(--lt-primary);
    color: #fff;
}

.btn-lt-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border: 1px solid #25D366;
    color: #fff;
    font-weight: 800;
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
}

.btn-lt-accent:hover {
    background: #1DA851;
    color: #fff;
}

/* ---------- Hero ---------- */
.lt-hero {
    background: linear-gradient(135deg, var(--lt-primary) 0%, var(--lt-primary-dark) 100%);
}

.lt-hero .carousel-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .lt-hero .carousel-item img {
        height: 220px;
    }
}

/* ---------- Section titles ---------- */
.lt-section {
    padding: 2rem 0;
}

.lt-section-title {
    font-weight: 800;
    color: var(--lt-primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.lt-section-title--sub {
    font-size: 1.5rem;
    text-align: left;
}

.lt-section-title--sub + .lt-divider {
    margin: 0.6rem 0 1.5rem;
}

.lt-page-section {
    padding-top: 2.5rem;
    border-top: 1px solid var(--lt-border);
}

.lt-section-subtitle {
    text-align: center;
    color: var(--lt-muted);
    margin-bottom: 2.5rem;
}

.lt-divider {
    width: 60px;
    height: 3px;
    background: var(--lt-accent);
    margin: 0.75rem auto 2rem;
    border-radius: 3px;
}

/* ---------- Product Card ---------- */
.lt-product-card {
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lt-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(74, 101, 114, 0.12);
}

.lt-product-card__media {
    position: relative;
}

.lt-product-card__image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: var(--lt-bg);
}

.lt-product-card__rating {
    position: absolute;
    left: 0.6rem;
    bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--lt-text);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.lt-product-card__rating i {
    color: #f5a623;
    font-size: 0.7rem;
}

.lt-product-card__rating-count {
    color: var(--lt-muted);
    font-weight: 600;
}

.lt-product-card__body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lt-product-card__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lt-muted);
}

.lt-product-card__name {
    font-weight: 700;
    margin: 0.25rem 0 0.4rem;
    color: var(--lt-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lt-product-card__price {
    font-weight: 800;
    color: var(--lt-primary);
    /* margin-bottom: 0.75rem; */
}

.lt-product-card__mrp {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--lt-muted);
    text-decoration: line-through;
    margin-left: 0.4rem;
}

.lt-product-card__discount {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: var(--lt-primary);
    color: #fff;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.2px;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.lt-product-card__actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
}

.lt-product-card__actions .btn-lt-outline,
.lt-product-card__actions .btn-lt-primary {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

.lt-wishlist-btn {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lt-text);
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform .15s ease, color .15s ease;
    z-index: 2;
}

.lt-wishlist-btn:hover {
    transform: scale(1.1);
}

.lt-wishlist-btn.active {
    color: #C81E3A;
}

/* ---------- Category pills ---------- */
.lt-category-pill {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid var(--lt-border);
    color: var(--lt-text);
    font-weight: 600;
    margin: 0 0.5rem 0.5rem 0;
    background: var(--lt-surface);
}

.lt-category-pill.active,
.lt-category-pill:hover {
    background: var(--lt-primary);
    border-color: var(--lt-primary);
    color: #fff;
}

/* ---------- Shop: filter sidebar + toolbar ---------- */
.lt-filters-toggle {
    display: none;
}

.lt-filters {
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.lt-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.lt-filters__header h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lt-primary);
    margin: 0;
}

.lt-filters__clear {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lt-muted);
    text-decoration: underline;
}

.lt-filters__clear:hover {
    color: var(--lt-primary);
}

.lt-filter-group {
    border-top: 1px solid var(--lt-border);
    padding: 0.9rem 0;
}

.lt-filter-group:last-of-type {
    border-bottom: 1px solid var(--lt-border);
}

.lt-filter-group__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font-weight: 700;
    color: var(--lt-text);
    text-align: left;
}

.lt-filter-group__toggle i {
    color: var(--lt-muted);
    transition: transform .2s ease;
    font-size: 0.9rem;
}

.lt-filter-group__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.lt-filter-group__body {
    padding-top: 0.85rem;
    max-height: 220px;
    overflow-y: auto;
}

.lt-filter-group__body::-webkit-scrollbar {
    width: 5px;
}

.lt-filter-group__body::-webkit-scrollbar-thumb {
    background: var(--lt-border);
    border-radius: 3px;
}

.lt-filter-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lt-filter-price input {
    padding: 0.5rem 0.7rem;
}

.lt-filter-hint {
    font-size: 0.75rem;
    color: var(--lt-muted);
    margin-top: 0.5rem;
}

.lt-filter-check {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--lt-text);
    cursor: pointer;
}

.lt-filter-check input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--lt-primary);
    cursor: pointer;
}

.lt-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.lt-shop-toolbar__count {
    font-weight: 700;
    color: var(--lt-text);
}

.lt-shop-toolbar__count span {
    color: var(--lt-muted);
    font-weight: 500;
}

.lt-shop-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--lt-muted);
    font-weight: 600;
}

.lt-shop-toolbar__sort select {
    width: auto;
    min-width: 170px;
    padding: 0.5rem 2.2rem 0.5rem 0.9rem;
}

@media (max-width: 991px) {
    .lt-filters-toggle {
        display: flex;
        width: 100%;
        margin-bottom: 1rem;
    }

    .lt-filters.collapse:not(.show) {
        display: none;
    }

    .lt-filters {
        margin-bottom: 1.5rem;
    }
}

/* ---------- Why choose us ---------- */
.lt-feature {
    text-align: center;
    padding: 1.5rem;
}

.lt-feature__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(74, 101, 114, 0.08);
    color: var(--lt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

/* ---------- Footer ---------- */
.lt-footer {
    background: var(--lt-text);
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 1.75rem;
    border-top: 3px solid var(--lt-primary);
}

.lt-footer p {
    line-height: 1.7;
    max-width: 34rem;
}

.lt-footer a {
    color: rgba(255, 255, 255, 0.75);
    transition: color .15s ease;
}

.lt-footer a:hover {
    color: var(--lt-accent);
}

.lt-footer h6 {
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    margin-bottom: 1.25rem;
}

.lt-footer ul.list-unstyled li {
    line-height: 1.5;
}

.lt-footer .lt-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    margin-right: 0.6rem;
    font-size: 1.1rem;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}

.lt-footer .lt-social-icon:hover {
    background: var(--lt-accent);
    color: var(--lt-text);
    transform: translateY(-2px);
}

.lt-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 1rem;
    padding-top: 1.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- Cart ---------- */
.lt-cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--lt-border);
}

.lt-cart-item__image {
    width: 80px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--lt-bg);
}

.lt-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--lt-border);
    border-radius: 8px;
    overflow: hidden;
}

.lt-qty-control button {
    background: var(--lt-bg);
    border: none;
    width: 32px;
    height: 32px;
    font-weight: 700;
    color: var(--lt-primary);
}

.lt-qty-control input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
}

/* ---------- Forms ---------- */
.lt-form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--lt-border);
    border-radius: 8px;
    background: var(--lt-surface);
    color: var(--lt-text);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.lt-form-control:focus {
    outline: none;
    border-color: var(--lt-primary);
    box-shadow: 0 0 0 3px rgba(74, 101, 114, 0.1);
}

select.lt-form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237A6F65' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 0.8rem;
    padding-right: 2.4rem;
}

.lt-panel {
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(43, 35, 32, 0.06);
}

.lt-panel .form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--lt-text);
    margin-bottom: 0.35rem;
}

/* ---------- Orders table ---------- */
.lt-order-table thead th {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--lt-muted);
    font-weight: 700;
    border-bottom-color: var(--lt-border);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.lt-order-table td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    vertical-align: middle;
    border-bottom-color: var(--lt-border);
}

.lt-order-row {
    cursor: pointer;
    transition: background-color .15s ease;
}

.lt-order-row:hover {
    background-color: var(--lt-bg);
}

.lt-order-row__chevron {
    color: var(--lt-muted);
    font-size: 0.9rem;
    width: 2.5rem;
}

.lt-order-row:hover .lt-order-row__chevron {
    color: var(--lt-primary);
}

.lt-panel__header {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--lt-border);
}

.lt-panel__header i {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--lt-bg);
    color: var(--lt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex: none;
}

.lt-panel__header h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--lt-text);
    margin-bottom: 0.15rem;
}

.lt-panel__header p {
    font-size: 0.85rem;
    color: var(--lt-muted);
    margin-bottom: 0;
}

/* ---------- Reviews ---------- */
.lt-review-card {
    display: flex;
    gap: 1.1rem;
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(43, 35, 32, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.lt-review-card:hover {
    box-shadow: 0 14px 32px rgba(43, 35, 32, 0.1);
    transform: translateY(-2px);
}

.lt-review-card__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lt-primary), var(--lt-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    flex: none;
    box-shadow: 0 6px 14px rgba(74, 101, 114, 0.28);
}

.lt-review-card__body {
    flex: 1 1 auto;
    min-width: 0;
}

.lt-review-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.lt-review-card__name {
    display: block;
    color: var(--lt-text);
    font-size: 1rem;
}

.lt-review-card__stars {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-top: 0.3rem;
    color: var(--lt-accent);
    font-size: 0.78rem;
}

.lt-review-card__date {
    font-size: 0.75rem;
    color: var(--lt-muted);
    background: var(--lt-bg);
    border: 1px solid var(--lt-border);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    white-space: nowrap;
}

.lt-review-card__title {
    font-weight: 700;
    color: var(--lt-text);
    margin-top: 0.85rem;
}

.lt-review-card__text {
    margin: 0.35rem 0 0;
    color: var(--lt-muted);
    line-height: 1.65;
}

@media (max-width: 575px) {
    .lt-review-card { padding: 1.1rem; gap: 0.85rem; }
    .lt-review-card__avatar { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
}

/* ---------- Account ---------- */
[x-cloak] {
    display: none !important;
}

.lt-account-sidebar {
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(43, 35, 32, 0.06);
    padding: 1.5rem 1.25rem;
}

@media (min-width: 992px) {
    .lt-account-sidebar {
        position: sticky;
        top: 96px;
    }
}

.lt-account-sidebar__profile {
    text-align: center;
    padding-bottom: 1.25rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--lt-border);
}

.lt-account-avatar {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lt-primary) 0%, var(--lt-primary-dark) 100%);
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    margin: 0 auto 0.75rem;
}

.lt-account-avatar--photo {
    object-fit: cover;
    border: 3px solid var(--lt-bg);
}

.lt-account-sidebar__name {
    font-weight: 800;
    color: var(--lt-text);
}

.lt-account-sidebar__email {
    font-size: 0.85rem;
    color: var(--lt-muted);
    word-break: break-word;
}

.lt-account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.lt-account-nav--danger {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--lt-border);
}

.lt-account-nav__item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--lt-text);
    transition: background .15s ease, color .15s ease;
}

.lt-account-nav__item i {
    font-size: 1rem;
    width: 1.1rem;
    text-align: center;
}

.lt-account-nav__item:hover {
    background: var(--lt-bg);
}

.lt-account-nav__item.active {
    background: var(--lt-primary);
    color: #fff;
}

.lt-account-nav__item--danger {
    color: #C0392B;
}

.lt-account-nav__item--danger:hover {
    background: #FBE7E7;
}

.lt-avatar-upload {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.lt-avatar-upload__preview {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--lt-bg);
    flex: none;
}

.lt-file-input {
    padding: 0.4rem;
}

.lt-file-input::file-selector-button {
    border: none;
    background: var(--lt-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-right: 0.75rem;
    cursor: pointer;
    transition: background .15s ease;
}

.lt-file-input::file-selector-button:hover {
    background: var(--lt-primary-dark);
}

/* ---------- Alerts ---------- */
.lt-body .alert,
.lt-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
}

.lt-alert i {
    font-size: 1.1rem;
    margin-top: 0.05rem;
}

.lt-alert ul {
    margin-bottom: 0;
    padding-left: 1.1rem;
}

.lt-body .alert-success,
.lt-alert--success {
    background: #E4F5E9;
    color: #1DA851;
    border-color: #c9ecd7;
}

.lt-body .alert-danger,
.lt-alert--danger {
    background: #FBE7E7;
    color: #C0392B;
    border-color: #f6cfcf;
}

.lt-alert--info {
    background: #FCF6E3;
    color: #8A6D1D;
    border-color: #F0E2B6;
}

/* ---------- Availability badges ---------- */
.lt-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.lt-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    margin-right: 0.4rem;
    flex: none;
}

.lt-badge--in-stock { background: #E4F5E9; color: #1DA851; }
.lt-badge--out-of-stock { background: #FBE7E7; color: #C0392B; }
.lt-badge--made-to-order { background: #FDF3D9; color: #A8790C; }

/* ---------- Order status badges ---------- */
.lt-badge--pending { background: #FDF3D9; color: #A8790C; }
.lt-badge--confirmed { background: #E3EEFB; color: #1D6FC9; }
.lt-badge--packed { background: #EDE7F6; color: #6A3FB0; }
.lt-badge--shipped { background: #E0F2F7; color: #0E7C99; }
.lt-badge--delivered { background: #E4F5E9; color: #1DA851; }
.lt-badge--cancelled { background: #FBE7E7; color: #C0392B; }
.lt-badge--paid { background: #E4F5E9; color: #1DA851; }
.lt-badge--unpaid { background: #FBE7E7; color: #C0392B; }
.lt-badge--refunded { background: #EAECEF; color: #55606D; }

/* ---------- Order status stepper ---------- */
.lt-order-stepper {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0 0.5rem;
    position: relative;
}

.lt-order-stepper::before {
    content: '';
    position: absolute;
    top: 0.55rem;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--lt-border);
    z-index: 0;
}

.lt-order-stepper__step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lt-order-stepper__dot {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: var(--lt-surface);
    border: 2px solid var(--lt-border);
    margin: 0 auto 0.5rem;
    transition: background .2s ease, border-color .2s ease;
}

.lt-order-stepper__step.done .lt-order-stepper__dot {
    background: var(--lt-primary);
    border-color: var(--lt-primary);
}

.lt-order-stepper__label {
    font-size: 0.75rem;
    color: var(--lt-muted);
    font-weight: 700;
}

.lt-order-stepper__step.done .lt-order-stepper__label {
    color: var(--lt-text);
}

/* ---------- Product detail ---------- */
.lt-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--lt-muted);
}

.lt-breadcrumb a {
    color: var(--lt-muted);
    font-weight: 600;
    transition: color .15s ease;
}

.lt-breadcrumb a:hover {
    color: var(--lt-primary);
}

.lt-breadcrumb i {
    font-size: 0.7rem;
    color: var(--lt-muted);
}

.lt-breadcrumb span {
    color: var(--lt-text);
    font-weight: 700;
}

.lt-gallery__main {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    box-shadow: 0 16px 40px rgba(43, 35, 32, 0.08);
}

.lt-gallery__main img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.lt-gallery__main:hover img {
    transform: scale(1.04);
}

.lt-gallery__zoom {
    position: absolute;
    bottom: 0.9rem;
    right: 0.9rem;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--lt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lt-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

.lt-gallery__thumb {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--lt-border);
    transition: border-color .15s ease, transform .15s ease;
}

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

.lt-gallery__thumb:hover {
    border-color: var(--lt-primary);
    transform: translateY(-2px);
}

.lt-tag {
    display: inline-block;
    background: var(--lt-bg);
    color: var(--lt-primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}

.lt-product-detail__title {
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1.2;
    color: var(--lt-text);
    margin-bottom: 0.4rem;
}

.lt-product-detail__code {
    color: var(--lt-muted);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    margin-bottom: 1.1rem;
}

.lt-product-detail__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--lt-primary);
}

.lt-product-detail__mrp {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--lt-muted);
    text-decoration: line-through;
    margin-left: 0.6rem;
}

.lt-product-detail__tax-note {
    color: var(--lt-muted);
    font-size: 0.8rem;
    margin-top: 0.35rem;
    margin-bottom: 0;
}

.lt-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.lt-spec {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.lt-spec i {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: var(--lt-bg);
    color: var(--lt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex: none;
}

.lt-spec div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.lt-spec span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--lt-muted);
}

.lt-spec strong {
    font-size: 0.9rem;
    color: var(--lt-text);
}

.lt-product-detail__description h2 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lt-text);
    margin-bottom: 0.5rem;
}

.lt-product-detail__description p {
    color: var(--lt-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.lt-tabs__nav {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    background: var(--lt-bg);
    border: 1px solid var(--lt-border);
    border-radius: 999px;
    padding: 0.35rem;
    max-width: 100%;
}

.lt-tabs__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: none;
    padding: 0.65rem 1.3rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--lt-muted);
    cursor: pointer;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.lt-tabs__btn i {
    font-size: 0.95rem;
}

.lt-tabs__btn:hover {
    color: var(--lt-primary);
}

.lt-tabs__btn.active {
    background: var(--lt-primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(74, 101, 114, 0.28);
}

.lt-tabs__btn.active:hover {
    color: #fff;
}

.lt-tabs__count {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0.05rem 0.5rem;
    font-size: 0.7rem;
}

.lt-tabs__btn.active .lt-tabs__count {
    background: rgba(255, 255, 255, 0.22);
}

.lt-tabs__body {
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(43, 35, 32, 0.06);
    padding: 1.75rem;
    margin-top: 1.25rem;
}

.lt-tabs__panel {
    max-width: 860px;
}

.lt-spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
}

.lt-spec-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.9rem 0.25rem;
    border-bottom: 1px dashed var(--lt-border);
    transition: background 0.15s ease;
}

.lt-spec-row:hover {
    background: var(--lt-bg);
}

.lt-spec-row__label {
    color: var(--lt-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    flex: 0 0 auto;
}

.lt-spec-row__value {
    color: var(--lt-text);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: right;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
    .lt-spec-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

@media (max-width: 575.98px) {
    .lt-tabs__nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.35rem;
        width: 100%;
        border-radius: 14px;
    }

    .lt-tabs__btn {
        justify-content: center;
        padding: 0.55rem 0.4rem;
        font-size: 0.72rem;
        gap: 0.3rem;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .lt-tabs__body {
        padding: 1.25rem;
    }
}

.lt-variant-picker {
    margin-bottom: 1.1rem;
}

.lt-variant-picker__label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--lt-muted);
    margin-bottom: 0.5rem;
}

.lt-variant-picker__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lt-variant-chip {
    background: var(--lt-surface);
    border: 1.5px solid var(--lt-border);
    color: var(--lt-text);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    transition: all .15s ease;
}

.lt-variant-chip:hover {
    border-color: var(--lt-primary);
}

.lt-variant-chip.active {
    background: var(--lt-primary);
    border-color: var(--lt-primary);
    color: #fff;
}

.lt-addon-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.lt-addon-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--lt-surface);
    border: 1.5px solid var(--lt-border);
    border-radius: 10px;
    padding: 0.65rem 1rem;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.lt-addon-item:hover {
    border-color: var(--lt-primary);
}

.lt-addon-item.active {
    border-color: var(--lt-primary);
    background: rgba(74, 101, 114, 0.05);
}

.lt-addon-item__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.lt-addon-item__check {
    flex: none;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 6px;
    border: 1.5px solid var(--lt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    transition: background .15s ease, border-color .15s ease;
}

.lt-addon-item__check i {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity .15s ease, transform .15s ease;
}

.lt-addon-item.active .lt-addon-item__check {
    background: var(--lt-primary);
    border-color: var(--lt-primary);
}

.lt-addon-item.active .lt-addon-item__check i {
    opacity: 1;
    transform: scale(1);
}

.lt-addon-item__name {
    flex: 1;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--lt-text);
}

.lt-addon-item__price {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--lt-primary);
    white-space: nowrap;
}

.lt-product-detail__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.lt-btn-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-radius: 10px;
}

.lt-btn-lg:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.lt-icon-btn--lg {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.35rem;
    flex: none;
}

.lt-icon-btn.active {
    color: #C81E3A;
    border-color: #C81E3A;
}

@media (max-width: 767.98px) {
    .lt-breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 1rem !important;
    }

    .lt-gallery__main {
        border-radius: 12px;
    }

    .lt-gallery__thumb {
        width: 3.75rem;
        height: 3.75rem;
    }

    .lt-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.65rem;
        margin-bottom: 0.75rem;
    }

    .lt-product-detail__title {
        font-size: 1.35rem;
        margin-bottom: 0.3rem;
    }

    .lt-product-detail__code {
        font-size: 0.8rem;
        margin-bottom: 0.85rem;
    }

    .lt-product-detail__price {
        font-size: 1.4rem;
    }

    .lt-product-detail__mrp {
        font-size: 0.9rem;
        margin-left: 0.4rem;
    }

    .lt-product-detail__tax-note {
        font-size: 0.75rem;
    }

    .lt-spec-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
        margin: 1.1rem 0;
    }

    .lt-spec {
        padding: 0.6rem 0.7rem;
        gap: 0.5rem;
        border-radius: 10px;
    }

    .lt-spec i {
        width: 1.9rem;
        height: 1.9rem;
        font-size: 0.9rem;
    }

    .lt-spec span {
        font-size: 0.62rem;
    }

    .lt-spec strong {
        font-size: 0.8rem;
    }

    .lt-product-detail__description h2 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .lt-product-detail__description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .lt-product-detail__actions {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .lt-btn-lg {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .lt-icon-btn--lg {
        width: 2.9rem;
        height: 2.9rem;
        font-size: 1.15rem;
    }
}

/* ---------- Misc ---------- */
.lt-map-frame {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 12px;
}

/* ---------- Contact page ---------- */
.lt-contact-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-left: 4px solid var(--lt-primary);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 10px 30px rgba(33, 45, 51, 0.06);
}

.lt-contact-panel .lt-map-frame,
.lt-contact-panel .lt-contact-map-placeholder {
    flex: 1 1 auto;
    height: auto;
    min-height: 320px;
}

.lt-contact-panel__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.lt-contact-panel__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--lt-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex: none;
}

.lt-contact-panel__header--plain {
    align-items: flex-start;
}

.lt-contact-panel__pin {
    color: var(--lt-primary);
    font-size: 1.5rem;
    line-height: 1;
    flex: none;
    margin-top: 0.15rem;
}

.lt-contact-list__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0.6rem;
    margin: 0 -0.6rem;
    border-bottom: 1px dashed var(--lt-border);
    border-radius: 8px;
    transition: background .15s ease;
}

.lt-contact-list__item:hover {
    background: var(--lt-bg);
}

.lt-contact-list__item--last {
    border-bottom: 0;
    padding-bottom: 0;
}

.lt-contact-list__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--lt-bg);
    color: var(--lt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex: none;
}

.lt-contact-list__label {
    display: block;
    font-weight: 700;
    color: var(--lt-text);
}

a.lt-contact-list__label:hover {
    color: var(--lt-primary);
}

.lt-contact-list__sub {
    margin: 0.1rem 0 0;
    font-size: 0.85rem;
    color: var(--lt-muted);
}

.lt-contact-map-placeholder {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    background:
        linear-gradient(0deg, rgba(74, 101, 114, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 101, 114, 0.05) 1px, transparent 1px),
        var(--lt-bg);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-contact-map-placeholder i {
    color: var(--lt-primary);
    font-size: 2.5rem;
}

.lt-contact-note {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    background: var(--lt-bg);
    border-radius: 10px;
}

.lt-contact-note i {
    color: var(--lt-primary);
    font-size: 1.1rem;
    flex: none;
}

.lt-contact-note strong {
    display: block;
    color: var(--lt-text);
    font-size: 0.92rem;
}

.lt-contact-note span {
    display: block;
    color: var(--lt-muted);
    font-size: 0.85rem;
}

.lt-empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--lt-muted);
}

/* ---------- FAQ page ---------- */
.lt-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lt-faq-accordion__item {
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(43, 35, 32, 0.06);
}

.lt-faq-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--lt-surface);
    border: none;
    padding: 1.1rem 1.5rem;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--lt-primary);
    text-align: left;
}

.lt-faq-accordion__button:not(.collapsed) {
    background: var(--lt-bg);
    box-shadow: none;
}

.lt-faq-accordion__button:focus {
    box-shadow: none;
}

.lt-faq-accordion__button::after {
    filter: invert(13%) sepia(72%) saturate(3000%) hue-rotate(325deg) brightness(75%);
}

.lt-faq-accordion__body {
    padding: 0.25rem 1.5rem 1.5rem;
}

.lt-faq-item {
    padding: 1rem 0;
    border-top: 1px solid var(--lt-border);
}

.lt-faq-item:first-child {
    border-top: none;
    padding-top: 0.25rem;
}

.lt-faq-item__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
}

.lt-faq-item__badge--q {
    background: var(--lt-primary);
    color: #fff;
}

.lt-faq-item__badge--a {
    background: transparent;
    border: 1.5px solid var(--lt-accent);
    color: var(--lt-accent);
}

.lt-faq-item__question {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--lt-text);
    margin-bottom: 0.6rem;
}

.lt-faq-item__question .lt-faq-item__q-text {
    padding-top: 0.05rem;
}

.lt-faq-item__answer {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-left: 0.05rem;
    padding-left: 0.75rem;
    border-left: 2px solid var(--lt-border);
    color: var(--lt-muted);
    font-size: 0.92rem;
    font-weight: 400;
}

.lt-faq-item__answer .lt-faq-item__a-text {
    padding-top: 0.05rem;
}

.lt-faq-item__answer p:last-child {
    margin-bottom: 0;
}

.lt-faq-item__answer a {
    color: var(--lt-primary);
    text-decoration: underline;
}

.lt-faq-contact {
    margin-top: 2.5rem;
    color: var(--lt-muted);
}

/* ---------- Pagination ---------- */
.lt-body .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin: 0;
}

.lt-body .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 0.5rem;
    border-radius: 8px;
    border: 1.5px solid var(--lt-border);
    background: var(--lt-surface);
    color: var(--lt-text);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.lt-body .page-item .page-link:hover {
    background: var(--lt-primary);
    border-color: var(--lt-primary);
    color: #fff;
    transform: translateY(-1px);
}

.lt-body .page-item .page-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 101, 114, 0.15);
}

.lt-body .page-item.active .page-link {
    background: var(--lt-primary);
    border-color: var(--lt-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(74, 101, 114, 0.25);
}

.lt-body .page-item.disabled .page-link {
    background: var(--lt-bg);
    border-color: var(--lt-border);
    color: var(--lt-muted);
    opacity: 0.6;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

.lt-body nav .small.text-muted {
    color: var(--lt-muted) !important;
}

/* ================================================================
   Editorial homepage — bold, oversized-type, magazine-style layout
   Scoped to lt-* classes below; does not touch any shared component
   used elsewhere (lt-section-title, lt-divider, lt-panel, etc.)
   ================================================================ */

/* ---------- Marquee ticker ---------- */
.lt-marquee {
    background: var(--lt-text);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.65rem 0;
}

.lt-marquee__track {
    display: inline-flex;
    animation: lt-marquee-scroll 30s linear infinite;
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.lt-marquee__track span {
    margin: 0 1.75rem;
    flex-shrink: 0;
}

.lt-marquee__track span::after {
    content: '✦';
    margin-left: 1.75rem;
    color: var(--lt-primary);
}

@keyframes lt-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .lt-marquee__track { animation: none; }
}

/* ---------- Editorial hero ---------- */
.lt-hero-editorial {
    background: var(--lt-bg);
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
}

.lt-hero-editorial__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--lt-primary);
    margin-bottom: 1.1rem;
}

.lt-hero-editorial__eyebrow::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--lt-accent);
    display: inline-block;
}

.lt-hero-headline {
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: -1.5px;
    font-size: clamp(2.75rem, 6.5vw, 3.25rem);
    color: var(--lt-primary);
    margin-bottom: 1.25rem;
}

.lt-hero-headline .lt-accent-word {
    color: var(--lt-accent);
    font-size: clamp(2.75rem, 6.5vw, 2.5rem);
}

.lt-hero-editorial__copy {
    max-width: 420px;
    color: var(--lt-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.lt-hero-editorial__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lt-hero-editorial__visual {
    position: relative;
    min-height: 320px;
}

/* ---------- Full-bleed top banner ---------- */
.lt-top-banner {
    overflow: hidden;
}

.lt-top-banner__visual {
    position: relative;
}

.lt-top-banner .lt-hero-banner {
    border-radius: 0;
    box-shadow: none;
}

.lt-hero-banner {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(74, 101, 114, 0.35);
}

.lt-hero-banner .carousel-inner,
.lt-hero-banner .carousel-item {
    height: 100%;
}

.lt-hero-banner__link {
    display: block;
    line-height: 0;
}

.lt-hero-banner__img {
    width: 100%;
    aspect-ratio: 1200 / 600;
    height: auto;
    object-fit: cover;
}

.lt-hero-banner__img--static {
    border-radius: 18px;
    box-shadow: 0 30px 60px -20px rgba(74, 101, 114, 0.35);
}

.lt-hero-banner__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--lt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease;
}

.lt-hero-banner:hover .lt-hero-banner__nav {
    opacity: 1;
}

.lt-hero-banner__nav:hover {
    background: var(--lt-accent);
    color: var(--lt-text);
}

.lt-hero-banner__nav--prev { left: 16px; }
.lt-hero-banner__nav--next { right: 16px; }

.lt-hero-banner__dots {
    position: absolute;
    bottom: 18px;
    margin: 0;
}

.lt-hero-banner__dots [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: none;
    opacity: 1;
    text-indent: -9999px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.lt-hero-banner__dots [data-bs-target].active {
    background: var(--lt-accent);
    transform: scale(1.2);
}

.lt-hero-editorial__badge {
    position: absolute;
    top: -18px;
    left: -12px;
    z-index: 3;
    background: var(--lt-accent);
    color: var(--lt-text);
    font-weight: 800;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.15;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transform: rotate(-9deg);
}

@media (max-width: 991px) {
    .lt-hero-editorial__visual { min-height: 0; margin-top: 2.5rem; }
}

@media (hover: none) {
    .lt-hero-banner__nav { opacity: 1; }
}

/* ---------- App promo ---------- */
.lt-app-promo {
    background: var(--lt-bg);
    padding: 3rem 0;
    overflow: hidden;
}

.lt-app-promo__headline {
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--lt-primary);
    margin-bottom: 1.25rem;
}

.lt-app-promo__headline .lt-accent-word {
    color: var(--lt-accent);
}

.lt-app-promo__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.lt-app-promo__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.lt-app-promo__features i {
    flex: none;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background: var(--lt-surface);
    border: 1.5px solid var(--lt-border);
    color: var(--lt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.lt-app-promo__features strong {
    display: block;
    color: var(--lt-text);
    font-weight: 800;
    margin-bottom: 0.15rem;
}

.lt-app-promo__features span {
    color: var(--lt-muted);
    font-size: 0.9rem;
}

.lt-app-promo__stores {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.lt-body a.lt-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: #1c1c1c;
    color: #fff;
    border-radius: 10px;
    padding: 0.6rem 1.25rem;
    transition: transform .15s ease, background .15s ease;
}

.lt-body a.lt-store-btn:hover {
    background: var(--lt-primary);
    transform: translateY(-2px);
    color: #fff;
}

.lt-store-btn strong {
    color: #fff;
}

.lt-store-btn i {
    font-size: 1.6rem;
}

.lt-store-btn div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lt-store-btn span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.75);
}

.lt-store-btn strong {
    font-size: 1rem;
    font-weight: 700;
}

.lt-app-phone-wrap {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.lt-app-phone {
    background: #1c1c1c;
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 40px 70px -25px rgba(74, 101, 114, 0.4);
}

.lt-app-phone__notch {
    width: 90px;
    height: 18px;
    background: #1c1c1c;
    border-radius: 0 0 14px 14px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lt-app-phone__notch::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 46px;
    height: 6px;
    border-radius: 4px;
    background: #3a3a3a;
}

.lt-app-phone__screen {
    background: var(--lt-bg);
    border-radius: 28px;
    margin-top: -18px;
    padding: 1.5rem 1rem 1.75rem;
}

.lt-app-phone__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    color: var(--lt-primary);
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
}

.lt-app-phone__topbar i {
    color: var(--lt-muted);
}

.lt-app-phone__card {
    background: var(--lt-surface);
    border-radius: 14px;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 8px 20px rgba(43, 35, 32, 0.08);
    margin-bottom: 1rem;
}

.lt-app-phone__card-img {
    width: 3rem;
    height: 3.6rem;
    border-radius: 8px;
    flex: none;
    background: linear-gradient(135deg, var(--lt-primary), var(--lt-accent));
}

.lt-app-phone__card-body {
    flex: 1;
    min-width: 0;
}

.lt-app-phone__card-title {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--lt-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-app-phone__card-price {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--lt-primary);
}

.lt-app-phone__card-price span {
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--lt-muted);
    text-decoration: line-through;
    margin-left: 0.25rem;
}

.lt-app-phone__card > i {
    color: #C81E3A;
    font-size: 1rem;
}

.lt-app-phone__row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.lt-app-phone__chip {
    flex: 1;
    height: 1.6rem;
    border-radius: 999px;
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
}

.lt-app-phone__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.lt-app-phone__tile {
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    background: linear-gradient(160deg, var(--lt-surface), var(--lt-border));
}

.lt-app-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--lt-surface);
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 12px 28px rgba(43, 35, 32, 0.18);
    max-width: 190px;
    z-index: 3;
}

.lt-app-float i {
    font-size: 1.2rem;
    color: var(--lt-accent);
}

.lt-app-float strong {
    display: block;
    font-size: 0.8rem;
    color: var(--lt-text);
}

.lt-app-float span {
    display: block;
    font-size: 0.7rem;
    color: var(--lt-muted);
}

.lt-app-float--top {
    top: 17%;
    left: -10%;
}

.lt-app-float--bottom {
    bottom: 6%;
    right: -10%;
}

@media (max-width: 991px) {
    .lt-app-promo { padding: 3.5rem 0; }
    .lt-app-phone-wrap { margin-top: 2.5rem; }
    .lt-app-float--top { left: 0; }
    .lt-app-float--bottom { right: 0; }
}

@media (max-width: 420px) {
    .lt-app-float { display: none; }
}

/* ---------- Editorial section heading ---------- */
.lt-editorial-head {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.lt-editorial-head__num {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--lt-border);
    line-height: 0.8;
}

.lt-editorial-head__title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--lt-primary);
    margin: 0;
}

.lt-editorial-head__sub {
    color: var(--lt-muted);
    margin-left: auto;
    font-size: 0.95rem;
}

.lt-editorial-head__link {
    font-weight: 700;
    color: var(--lt-primary);
    white-space: nowrap;
    border-bottom: 2px solid var(--lt-accent);
    padding-bottom: 2px;
    margin-left: auto;
}

/* ---------- Magazine-style category tiles ---------- */
.lt-cat-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding-bottom: 0.75rem;
    margin-bottom: -0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--lt-border) transparent;
}

.lt-cat-scroll::-webkit-scrollbar {
    height: 6px;
}

.lt-cat-scroll::-webkit-scrollbar-thumb {
    background: var(--lt-border);
    border-radius: 999px;
}

.lt-cat-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.lt-cat-tile {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    flex: 0 0 260px;
    scroll-snap-align: start;
    isolation: isolate;
}

.lt-cat-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lt-cat-tile:hover img {
    transform: scale(1.08);
}

.lt-cat-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.78) 100%);
}

.lt-cat-tile__label {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    color: #fff;
}

.lt-cat-tile__name {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.lt-cat-tile__cta {
    font-size: 0.75rem;
    color: var(--lt-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .lt-cat-tile { height: 220px; flex-basis: 200px; }
}

/* ---------- Promo banner grid (Shop By Trend style) ---------- */
.lt-promo-tile {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 20px 40px -20px rgba(74, 101, 114, 0.25);
}

.lt-promo-tile img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lt-promo-tile:hover img {
    transform: scale(1.05);
}

.lt-promo-carousel {
    position: relative;
}

.lt-promo-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--lt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px -8px rgba(74, 101, 114, 0.35);
    transition: background 0.25s ease, color 0.25s ease;
}

.lt-promo-carousel__nav:hover {
    background: var(--lt-accent);
    color: var(--lt-text);
}

.lt-promo-carousel__nav--prev { left: -22px; }
.lt-promo-carousel__nav--next { right: -22px; }

@media (max-width: 767px) {
    .lt-promo-tile img { height: 240px; }
    .lt-promo-carousel__nav--prev { left: 6px; }
    .lt-promo-carousel__nav--next { right: 6px; }
}

/* ---------- Shop By Look (vertical video reel) ---------- */
.lt-video-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding: 0.25rem 1.5rem 0.75rem;
    margin-bottom: -0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--lt-border) transparent;
}

.lt-video-scroll::-webkit-scrollbar {
    height: 6px;
}

.lt-video-scroll::-webkit-scrollbar-thumb {
    background: var(--lt-border);
    border-radius: 999px;
}

.lt-video-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.lt-video-card {
    position: relative;
    flex: 0 0 240px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: #000;
    isolation: isolate;
    box-shadow: 0 20px 40px -20px rgba(74, 101, 114, 0.25);
}

.lt-video-card__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lt-video-card__sound {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    cursor: pointer;
}

.lt-video-card__info {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    color: inherit;
}

.lt-video-card__thumb {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
}

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

.lt-video-card__body {
    min-width: 0;
}

.lt-video-card__name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lt-ink, #1a1a1a);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lt-video-card__price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--lt-accent);
}

.lt-video-card__mrp {
    margin-left: 0.4rem;
    font-weight: 400;
    font-size: 0.72rem;
    color: #999;
    text-decoration: line-through;
}

.lt-video-card__off {
    margin-left: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a7a3c;
}

@media (max-width: 767px) {
    .lt-video-card { flex-basis: 190px; }
}

/* ---------- Product card hover polish (editorial grid) ---------- */
.lt-product-card__image {
    transition: transform 0.5s ease;
}

.lt-product-card:hover .lt-product-card__image {
    transform: scale(1.06);
}

/* ---------- Editorial testimonial quote ---------- */
.lt-quote {
    position: relative;
    padding: 2.25rem 1.5rem 1.5rem;
}

.lt-quote::before {
    content: '\201C';
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5rem;
    color: var(--lt-accent);
    position: absolute;
    top: -0.75rem;
    left: 0.5rem;
    line-height: 1;
    opacity: 0.55;
}

.lt-testimonial-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding: 0.25rem 0.25rem 0.75rem;
    margin-bottom: -0.75rem;
    scrollbar-width: thin;
    scrollbar-color: var(--lt-border) transparent;
}

.lt-testimonial-scroll::-webkit-scrollbar {
    height: 6px;
}

.lt-testimonial-scroll::-webkit-scrollbar-thumb {
    background: var(--lt-border);
    border-radius: 999px;
}

.lt-testimonial-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.lt-testimonial-scroll .lt-quote {
    flex: 0 0 320px;
    scroll-snap-align: start;
}

@media (max-width: 767px) {
    .lt-testimonial-scroll .lt-quote { flex-basis: 260px; }
}

/* ---------- Floating WhatsApp button ---------- */
.lt-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 1050;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lt-whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {
    .lt-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* ---------- Scroll-reveal ----------
   Elements are visible by default (no-JS / JS-disabled safe). JS adds
   .lt-reveal--pending on load, then swaps to .is-visible on scroll-into-view. */
.lt-reveal.lt-reveal--pending {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lt-reveal.lt-reveal--pending.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .lt-reveal.lt-reveal--pending { opacity: 1; transform: none; }
}

/* ================================================================
   Mobile responsiveness pass
   ================================================================ */

/* Header: compact "Sign In" pill so it fits next to the cart icon
   and hamburger toggle on small/medium screens (below lg). */
@media (max-width: 991.98px) {
    .lt-header-signin {
        padding: 0.45rem 0.9rem;
        font-size: 0.85rem;
    }

    .lt-nav .navbar-brand {
        min-width: 0;
        flex-shrink: 1;
        overflow: hidden;
    }

    .lt-nav > .d-flex {
        flex-shrink: 0;
    }

    .navbar-toggler {
        flex-shrink: 0;
        border-color: var(--lt-border);
    }
}

@media (max-width: 575.98px) {
    .lt-icon-btn {
        width: 2.3rem;
        height: 2.3rem;
        font-size: 1.05rem;
    }
}

@media (max-width: 767.98px) {
    /* Wider gutters so page content doesn't crowd the screen edges on phones */
    .container {
        margin-left: 10px;
        margin-right: 10px;
    }

    .lt-panel {
        margin-left: 10px;
        margin-right: 10px;
    }

    /* Tighter vertical rhythm so mobile users scroll less between sections */
    .lt-section {
        padding: 2.25rem 0;
        margin-left: 10px;
        margin-right: 10px;
    }

    /* Product card: two side-by-side buttons are too cramped in the
       2-up mobile grid — stack them full-width instead. */
    .lt-product-card__actions {
        flex-direction: column;
    }

    .lt-product-card__actions .btn-lt-outline,
    .lt-product-card__actions .btn-lt-primary {
        width: 100%;
    }

    /* Editorial section headings: scale down the oversized numerals/titles */
    .lt-editorial-head__num {
        font-size: 2.25rem;
    }

    .lt-editorial-head__title {
        font-size: 1.4rem;
    }

    /* Order tracker: 5 labelled steps need less type + spacing to avoid
       overlapping text on narrow phones. */
    .lt-order-stepper__dot {
        width: 0.85rem;
        height: 0.85rem;
        margin-bottom: 0.35rem;
    }

    .lt-order-stepper__label {
        font-size: 0.65rem;
    }
}

@media (max-width: 575.98px) {
    /* Cart line item: image + name/price + qty-stepper + delete button all
       in one row overflow on narrow phones — wrap onto two lines instead. */
    .lt-cart-item {
        flex-wrap: wrap;
    }

    .lt-cart-item__image {
        width: 64px;
        height: 78px;
    }

    .lt-cart-item > .flex-grow-1 {
        flex-basis: calc(100% - 64px - 1rem);
    }

    .lt-cart-item > .lt-qty-control {
        margin-left: calc(64px + 1rem);
    }

    .lt-hero-editorial__badge {
        width: 84px;
        height: 84px;
        font-size: 0.65rem;
        top: -10px;
        left: -8px;
    }
}

.mc-logo-img {
    height: 72px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    color: #fff;
}

/* ---------- Auth split layout (login / register) ---------- */
.lt-auth {
    padding: 3rem 0;
}

.lt-auth-card {
    background: var(--lt-surface);
    border: 1px solid var(--lt-border);
    border-radius: 20px;
    box-shadow: 0 24px 60px -20px rgba(43, 35, 32, 0.18);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 300px) 1fr;
    max-width: 760px;
    margin: 0 auto;
}

.lt-auth-card__visual {
    position: relative;
    display: block;
}

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

.lt-auth-card__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(74, 101, 114, 0) 35%, rgba(26, 41, 47, 0.88) 100%);
}

.lt-auth-card__visual-copy {
    position: absolute;
    left: 1.75rem;
    right: 1.75rem;
    bottom: 1.75rem;
    z-index: 2;
    color: #fff;
}

.lt-auth-card__visual-copy .lt-tag {
    background: rgba(255, 255, 255, 0.14);
    color: var(--lt-accent);
}

.lt-auth-card__visual-copy h2 {
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 0.4rem;
}

.lt-auth-card__visual-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.lt-auth-card__form {
    padding: 2.5rem 2.25rem;
}

.lt-auth-card__form h1 {
    font-weight: 800;
    color: var(--lt-text);
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.lt-auth-card__form > p {
    color: var(--lt-muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.lt-input-group {
    position: relative;
}

.lt-input-group i {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lt-muted);
    font-size: 0.95rem;
    pointer-events: none;
}

.lt-input-group .lt-form-control {
    padding-left: 2.5rem;
}

@media (max-width: 767.98px) {
    .lt-auth {
        padding: 1.5rem 0;
    }

    .lt-auth-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .lt-auth-card__visual {
        height: 180px;
    }

    .lt-auth-card__form {
        padding: 1.75rem 1.5rem;
    }
}

/* ---------- Mobile-OTP login flow ---------- */
.lt-auth-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 0;
    padding: 0;
    margin-bottom: 1.1rem;
    color: var(--lt-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.lt-auth-back:hover {
    color: var(--lt-accent);
}

.lt-auth-muted {
    color: var(--lt-muted);
    font-size: 0.9rem;
}

.lt-auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    color: var(--lt-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lt-auth-divider::before,
.lt-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lt-border);
}

.lt-input-group--phone .lt-input-group__prefix {
    position: absolute;
    left: 2.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--lt-text);
    font-weight: 600;
    font-size: 0.95rem;
    pointer-events: none;
}

.lt-input-group--phone .lt-form-control--phone {
    padding-left: 4.75rem;
}

.lt-otp-single {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.6em;
    text-indent: 0.6em;
    color: var(--lt-text);
    background: var(--lt-surface);
    border: 1.5px solid var(--lt-border);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lt-otp-single::placeholder {
    letter-spacing: 0.6em;
    color: var(--lt-border);
}

.lt-otp-single:focus {
    outline: none;
    border-color: var(--lt-accent);
    box-shadow: 0 0 0 3px rgba(74, 101, 114, 0.12);
}

@media (max-width: 575.98px) {
    .lt-otp-single {
        font-size: 1.3rem;
        letter-spacing: 0.5em;
        text-indent: 0.5em;
        border-radius: 10px;
    }
}