/**
 * 6valley Modern UI — design tokens & components
 * Scoped under .modern-ui to avoid clashing with legacy Bootstrap styles.
 */

.modern-ui {
    --mv-font: "Cairo", system-ui, -apple-system, sans-serif;
    --mv-bg: #f7f8fb;
    --mv-surface: #ffffff;
    --mv-text: #0f172a;
    --mv-muted: #64748b;
    --mv-border: rgba(15, 23, 42, 0.08);
    --mv-primary: var(--web-primary, #6366f1);
    --mv-primary-rgb: var(--bs-base-rgb, 99, 102, 241);
    --mv-radius: 16px;
    --mv-radius-lg: 24px;
    --mv-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --mv-shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.12);
    --mv-glass: rgba(255, 255, 255, 0.72);
    --mv-glass-border: rgba(255, 255, 255, 0.45);
    --mv-nav-height: 72px;
    --mv-container: min(1280px, calc(100% - 2rem));
    --mv-ease: cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--mv-font);
    color: var(--mv-text);
    background: var(--mv-bg);
}

.modern-ui *,
.modern-ui *::before,
.modern-ui *::after {
    box-sizing: border-box;
}

.modern-ui img {
    max-width: 100%;
    height: auto;
}

.modern-ui .mv-container {
    width: var(--mv-container);
    margin-inline: auto;
}

.modern-ui main#mv-main {
    min-height: 60vh;
}

/* ——— Glass navigation ——— */
.mv-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    height: var(--mv-nav-height);
    width: 100%;
    transition: box-shadow 0.35s var(--mv-ease), background 0.35s var(--mv-ease);
}

[dir="rtl"] .mv-header__content {
    flex-direction: row;
}

.mv-header.is-scrolled {
    box-shadow: var(--mv-shadow);
}

.mv-header__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: var(--mv-nav-height);
}

.mv-header__glass {
    position: absolute;
    inset: 0;
    background: var(--mv-glass);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--mv-glass-border);
}

.mv-header__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: var(--mv-container);
    margin-inline: auto;
    height: 100%;
    padding-inline: 1rem;
}

.mv-nav-wrap {
    flex: 1 1 auto;
    min-width: 0;
}

.modern-ui .mv-header ul,
.modern-ui .mv-header li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modern-ui .mv-header .dropdown-menu {
    z-index: 1050;
}

.mv-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.mv-nav-toggle {
    display: none;
    border: 0;
    background: var(--mv-surface);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--mv-shadow);
}

.mv-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.mv-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 10px;
    color: var(--mv-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap;
    transition: background 0.25s var(--mv-ease), color 0.25s var(--mv-ease);
}

/* Reset theme/Bootstrap defaults on <button> nav items (e.g. Categories) */
.modern-ui .mv-header button.mv-nav__link,
.modern-ui .mv-header button.mv-header__dropdown-btn {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    outline: none;
    font-family: inherit;
    cursor: pointer;
}

.modern-ui .mv-header button.mv-header__dropdown-btn {
    background: var(--mv-surface);
    border: 1px solid var(--mv-border);
}

.modern-ui .mv-header button.mv-nav__link:hover,
.modern-ui .mv-header button.mv-nav__link:focus,
.modern-ui .mv-header button.mv-nav__link:active {
    border: none;
    box-shadow: none;
}

.modern-ui .mv-header button.mv-nav__link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(var(--mv-primary-rgb), 0.25);
}

.modern-ui .mv-nav__item--mega.is-open > button.mv-nav__link {
    background: rgba(var(--mv-primary-rgb), 0.1);
    color: var(--mv-primary);
}

.mv-nav__link i {
    font-size: 0.75rem;
    opacity: 0.75;
    line-height: 1;
}

.mv-nav__link:hover,
.mv-nav__link.is-active,
.modern-ui .mv-header button.mv-nav__link:hover {
    background: rgba(var(--mv-primary-rgb), 0.1);
    color: var(--mv-primary);
}

.mv-nav__item--mega {
    position: relative;
}

.mv-mega {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline-start: 0;
    min-width: 520px;
    padding: 1.25rem;
    background: var(--mv-surface);
    border-radius: var(--mv-radius);
    box-shadow: var(--mv-shadow-lg);
    border: 1px solid var(--mv-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s var(--mv-ease), transform 0.35s var(--mv-ease), visibility 0.35s;
    pointer-events: none;
}

.mv-nav__item--mega:hover .mv-mega,
.mv-nav__item--mega:focus-within .mv-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mv-mega__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.mv-mega__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--mv-text);
    font-size: 0.875rem;
    font-weight: 500;
    transition: background 0.2s var(--mv-ease);
}

.mv-mega__link:hover {
    background: rgba(var(--mv-primary-rgb), 0.08);
}

.mv-mega__link img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.mv-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-inline-start: auto;
    flex-shrink: 0;
}

.mv-header__dropdown-btn {
    border: 1px solid var(--mv-border);
    background: var(--mv-surface);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mv-text);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
    font-family: inherit;
}

.mv-icon-btn {
    position: relative;
}

/* User account dropdown */
.mv-user-menu .dropdown-toggle::after {
    display: none;
}

.mv-user-menu__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.mv-user-menu__dropdown {
    min-width: 220px;
    margin-top: 0.5rem;
    padding: 0.35rem 0;
    border: 1px solid var(--mv-border);
    border-radius: var(--mv-radius);
    box-shadow: var(--mv-shadow-lg);
}

.mv-user-menu__head {
    pointer-events: none;
}

.mv-user-menu__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--mv-text);
}

.mv-user-menu__email {
    font-size: 0.75rem;
    color: var(--mv-muted);
    margin-top: 0.15rem;
    word-break: break-all;
}

.mv-user-menu__dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--mv-text);
}

.mv-user-menu__dropdown .dropdown-item i {
    width: 1.1rem;
    text-align: center;
    opacity: 0.7;
}

.mv-user-menu__dropdown .dropdown-item:hover {
    background: rgba(var(--mv-primary-rgb), 0.08);
    color: var(--mv-primary);
}

.mv-user-menu__dropdown .dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
}

.modern-ui .mv-user-menu button.mv-icon-btn.dropdown-toggle {
    padding: 0;
    overflow: hidden;
}

.mv-icon-btn__badge {
    position: absolute;
    top: 2px;
    inset-inline-end: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--mv-primary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.mv-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--mv-border);
    background: var(--mv-surface);
    color: var(--mv-text);
    text-decoration: none;
    transition: transform 0.25s var(--mv-ease), box-shadow 0.25s var(--mv-ease);
}

.mv-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--mv-shadow);
    color: var(--mv-primary);
}

.mv-search {
    flex: 1;
    max-width: 360px;
    position: relative;
}

.mv-search input {
    width: 100%;
    height: 44px;
    padding: 0 1rem 0 2.75rem;
    border-radius: 999px;
    border: 1px solid var(--mv-border);
    background: var(--mv-surface);
    font-family: inherit;
    font-size: 0.875rem;
}

.mv-search i {
    position: absolute;
    inset-inline-start: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mv-muted);
}

/* ——— Hero ——— */
.mv-hero {
    position: relative;
    padding: clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
}

.mv-hero__scene {
    position: relative;
    border-radius: var(--mv-radius-lg);
    min-height: clamp(320px, 52vh, 520px);
    background: linear-gradient(135deg, rgba(var(--mv-primary-rgb), 0.12), rgba(15, 23, 42, 0.04));
    transform-style: preserve-3d;
    perspective: 1200px;
}

.mv-hero__slides {
    position: relative;
    height: 100%;
    min-height: inherit;
}

.mv-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s var(--mv-ease);
    border-radius: inherit;
    overflow: hidden;
}

.mv-hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.mv-hero__slide a {
    display: block;
    height: 100%;
}

.mv-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.mv-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.mv-hero__orb--1 {
    width: 280px;
    height: 280px;
    background: rgba(var(--mv-primary-rgb), 0.35);
    top: -60px;
    inset-inline-end: 10%;
}

.mv-hero__orb--2 {
    width: 200px;
    height: 200px;
    background: rgba(56, 189, 248, 0.25);
    bottom: -40px;
    inset-inline-start: 8%;
}

.mv-hero__content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    inset-inline: 0;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.55));
    color: #fff;
    border-radius: 0 0 var(--mv-radius-lg) var(--mv-radius-lg);
}

.mv-hero__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.mv-hero__dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.mv-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(15, 23, 42, 0.2);
    cursor: pointer;
    transition: width 0.3s var(--mv-ease), background 0.3s;
}

.mv-hero__dot.is-active {
    width: 28px;
    background: var(--mv-primary);
}

/* ——— Product card ——— */
.mv-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.mv-product-card {
    position: relative;
    background: var(--mv-surface);
    border-radius: var(--mv-radius);
    border: 1px solid var(--mv-border);
    overflow: hidden;
    box-shadow: var(--mv-shadow);
    transition: box-shadow 0.4s var(--mv-ease), transform 0.4s var(--mv-ease);
}

.mv-product-card:hover {
    box-shadow: var(--mv-shadow-lg);
}

.mv-product-card__media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f1f5f9;
}

.mv-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--mv-ease);
}

.mv-product-card:hover .mv-product-card__media img {
    transform: scale(1.06);
}

.mv-product-card__badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    z-index: 2;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: var(--mv-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.mv-product-card__actions {
    position: absolute;
    inset-inline-end: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 3;
}

.mv-product-card__action {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: var(--mv-surface);
    color: var(--mv-text);
    box-shadow: var(--mv-shadow);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transform: translateX(12px);
    transition: color 0.2s, background 0.2s;
}

[dir="rtl"] .mv-product-card__action {
    transform: translateX(-12px);
}

.mv-product-card__action:hover {
    background: var(--mv-primary);
    color: #fff;
}

.mv-product-card__action.is-wishlisted {
    color: #ef4444;
}

@media (hover: none) {
    .mv-product-card__action {
        opacity: 1;
        transform: translateX(0);
    }
}

.mv-product-card__body {
    padding: 1rem 1.1rem 1.15rem;
}

.mv-product-card__title {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

.mv-product-card__title a {
    color: inherit;
    text-decoration: none;
}

.mv-product-card__title a:hover {
    color: var(--mv-primary);
}

.mv-product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.05rem;
}

.mv-product-card__price del {
    color: var(--mv-muted);
    font-weight: 500;
    font-size: 0.85rem;
}

.mv-product-card__rating {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--mv-muted);
}

.mv-section {
    padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.mv-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mv-section__title {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mv-link {
    color: var(--mv-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.mv-link:hover {
    text-decoration: underline;
}

/* Stagger reveal (before GSAP runs) */
.mv-reveal {
    opacity: 0;
    transform: translateY(24px);
}

/* ——— Embedded sections (duo columns, etc.) ——— */
.modern-ui .mv-section--embedded {
    padding: 0;
}

.modern-ui .mv-section--embedded .mv-section__head {
    margin-bottom: 1rem;
}

/* ——— Product details, checkout, cart ——— */
.modern-ui .__inline-23 .container,
.modern-ui .checkout_details,
.modern-ui .__inline-56,
.modern-ui .shop-cart-view,
.modern-ui .product-list-filter .container {
    max-width: var(--mv-container);
}

.modern-ui .card.__card,
.modern-ui .__inline-23 .card.card-body {
    border-radius: var(--mv-radius);
    border: 1px solid var(--mv-border);
    box-shadow: var(--mv-shadow);
}

.modern-ui .btn--primary,
.modern-ui .btn.btn--primary {
    border-radius: 999px;
    font-weight: 700;
}

.modern-ui .form-control,
.modern-ui .selectpicker {
    border-radius: 12px;
    border-color: var(--mv-border);
}

.modern-ui .__checkout-steps .active {
    color: var(--mv-primary);
}

/* ——— Home page ——— */
.modern-ui .mv-home {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modern-ui .mv-legacy-strip {
    padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

.modern-ui .mv-legacy-strip .container {
    max-width: var(--mv-container);
}

.modern-ui .mv-ajax-products-wrap {
    display: block;
    width: 100%;
}

.modern-ui .mv-pagination .pagination {
    justify-content: center;
    gap: 0.35rem;
}

/* Announcement bar */
.mv-announcement {
    background: var(--mv-announcement-bg, var(--mv-primary));
    color: var(--mv-announcement-color, #fff);
    font-size: 0.875rem;
    font-weight: 600;
}

.mv-announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.65rem 0;
    text-align: center;
}

.mv-announcement__close {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
}

/* Category grid */
.mv-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.mv-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    border-radius: var(--mv-radius);
    background: var(--mv-surface);
    border: 1px solid var(--mv-border);
    text-decoration: none;
    color: var(--mv-text);
    transition: transform 0.25s var(--mv-ease), box-shadow 0.25s var(--mv-ease);
}

.mv-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mv-shadow);
    color: var(--mv-primary);
}

.mv-category-card__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.mv-category-card__name {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Flash deal */
.mv-flash-deal {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: 2rem;
    align-items: start;
    padding: 1.5rem;
    border-radius: var(--mv-radius-lg);
    background: linear-gradient(135deg, rgba(var(--mv-primary-rgb), 0.08), var(--mv-surface));
    border: 1px solid var(--mv-border);
}

.mv-flash-deal__text {
    color: var(--mv-muted);
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
}

.mv-flash-deal__countdown.cz-countdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.mv-product-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

/* Promo banners */
.mv-promo-banner {
    display: block;
    border-radius: var(--mv-radius-lg);
    overflow: hidden;
    box-shadow: var(--mv-shadow);
}

.mv-promo-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.mv-promo-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mv-promo-row--scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.mv-promo-row--scroll .mv-promo-banner--tile {
    flex: 0 0 min(85%, 420px);
    scroll-snap-align: start;
}

/* Brands */
.mv-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.mv-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: var(--mv-surface);
    border-radius: var(--mv-radius);
    border: 1px solid var(--mv-border);
    transition: box-shadow 0.25s var(--mv-ease);
}

.mv-brand-card:hover {
    box-shadow: var(--mv-shadow);
}

.mv-brand-card img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

/* Duo product columns */
.mv-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

.mv-duo-grid__col .mv-section {
    padding: 0;
}

.mv-duo-grid__col .mv-container {
    width: 100%;
    margin: 0;
}

/* Footer — inset card with rounded corners */
.mv-footer {
    background: var(--mv-text);
    color: rgba(255, 255, 255, 0.88);
    margin: 15px;
    padding: clamp(2rem, 4vw, 3rem) 0 1.25rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--mv-shadow-lg);
}

.modern-ui .mv-footer .mv-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: clamp(1.25rem, 3vw, 2rem);
}

.mv-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.mv-footer__tagline,
.mv-footer__text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.75rem 0 0;
}

.mv-footer__heading {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff;
}

.mv-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-footer__links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 2;
}

.mv-footer__links a:hover {
    color: #fff;
}

.mv-footer__newsletter {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.mv-footer__newsletter input {
    flex: 1;
    min-width: 0;
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-family: inherit;
}

.mv-footer__newsletter button {
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 1.25rem;
    background: var(--mv-primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.mv-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

.mv-footer__social {
    display: flex;
    gap: 0.75rem;
}

.mv-footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.mv-footer__apps {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media (max-width: 991px) {
    .mv-flash-deal {
        grid-template-columns: 1fr;
    }

    .mv-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .mv-duo-grid {
        grid-template-columns: 1fr;
    }

    .mv-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mv-nav-wrap {
        position: fixed;
        inset: var(--mv-nav-height) 0 0 0;
        background: var(--mv-surface);
        padding: 1rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--mv-ease);
        overflow-y: auto;
        z-index: 1039;
    }

    [dir="rtl"] .mv-nav-wrap {
        transform: translateX(-100%);
    }

    .mv-nav-wrap.is-open {
        transform: translateX(0);
    }

    .mv-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .mv-mega {
        position: static;
        min-width: 0;
        box-shadow: none;
        border: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0.5rem 0 0 1rem;
    }

    .mv-nav__item--mega.is-open .mv-mega {
        display: block;
    }

    .mv-mega__grid {
        grid-template-columns: 1fr;
    }

    .mv-search {
        display: none;
    }
}
