/*
 * Shared storefront visual system.
 * Theme styles remain responsible for personality; this layer supplies a
 * consistent, modern shell and reusable interaction language for all themes.
 */
:root {
  --storefront-ink: #172033;
  --storefront-muted: #687085;
  --storefront-surface: #fff;
  --storefront-soft: #f6f7fb;
  --storefront-line: #e8eaf0;
  --storefront-radius-sm: 12px;
  --storefront-radius: 18px;
  --storefront-radius-lg: 26px;
  --storefront-shadow-sm: 0 8px 24px rgba(23, 32, 51, .06);
  --storefront-shadow: 0 18px 50px rgba(23, 32, 51, .1);
  --storefront-ease: cubic-bezier(.2, .75, .25, 1);
}

body.storefront {
  color: var(--storefront-ink);
  background: var(--storefront-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.storefront .container { max-width: 1320px; }
.storefront .main-panel { overflow: clip; }
.storefront .page-inner { padding: 0; }

/* Announcement */
.storefront .xxx-header-notion {
  position: relative;
  z-index: 1002;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 20px !important;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
}

/* Header shell */
.storefront .header {
  position: relative;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 var(--storefront-line);
}

.storefront .header-top {
  display: none;
  min-height: 42px;
  color: var(--storefront-muted);
  background: #fafbfc;
  border-color: var(--storefront-line) !important;
}

.storefront .header-top .row { align-items: center; min-height: 42px; }
.storefront .header-top li,
.storefront .header-top a,
.storefront .header-top p { font-size: 12px; font-weight: 500; }
.storefront .header-top i { color: var(--color-primary); }
.storefront .header-top .menu > .menu-item > a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.storefront .header-middle { padding: 19px 0; }
.storefront .header-middle > .container {
  display: grid;
  grid-template-columns: minmax(130px, 180px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.storefront .header-middle .header-left,
.storefront .header-middle .header-center,
.storefront .header-middle .header-right { width: auto; }
.storefront .brand-logo img { max-height: 54px; max-width: 190px; object-fit: contain; }
.storefront .header-middle .header-search { display: none !important; }
.storefront .header-middle .header-center { min-width: 0; }
.storefront .header-middle .header-center nav.menu { width: 100%; }
.storefront .header-middle .header-center .menu-right {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(8px, 1.25vw, 20px);
  margin: 0 !important;
}
.storefront .header-middle .header-center .nav-item { flex: 0 0 auto; }
.storefront .header-middle .header-center .nav-link { padding-inline: 4px; white-space: nowrap; }
.storefront--no-logo .brand-logo img,
.storefront--no-logo .mobile-navbar .logo img,
.storefront--no-logo .mobile-menu .logo img { display: none !important; }
.storefront--no-footer-logo .footer-widget .navbar-brand img { display: none !important; }
.storefront--no-logo .brand-logo a,
.storefront--no-logo .mobile-navbar .logo,
.storefront--no-logo .mobile-menu .logo { color: var(--storefront-ink); font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.storefront .storefront-brand-name { display: inline-flex; align-items: center; color: var(--storefront-ink); font-size: 22px; font-weight: 800; letter-spacing: -.03em; }

.storefront .admin-header-chip {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: 0;
  border: 1px solid var(--storefront-line);
  border-radius: 8px;
  color: var(--storefront-muted);
  background: #fff;
  box-shadow: none;
}
.storefront .admin-header-chip--locale { width: auto; min-width: 40px; padding: 0 .7rem; }
.storefront .admin-header-chip:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(var(--color-primary-rgb), .07); }
.storefront .admin-header-chip-flag { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.storefront .admin-header-chip-label { min-width: 1.1rem; color: inherit; text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .05em; line-height: 1; }
.storefront .header-middle .storefront-locale-action .admin-header-chip { min-height: 36px; height: 36px; padding-inline: 8px; flex-direction: row; }

.storefront .header-search-form {
  min-height: 52px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--storefront-line) !important;
  border-radius: 16px !important;
  background: var(--storefront-soft);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.storefront .header-search-form:focus-within {
  border-color: var(--color-primary) !important;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), .1);
}
.storefront .header-search-form .select-custom {
  min-width: 150px;
  border-inline-end: 1px solid var(--storefront-line);
}
.storefront .header-search-form select,
.storefront .header-search-form input.form-control {
  height: 50px;
  border: 0 !important;
  background: transparent !important;
  color: var(--storefront-ink);
  box-shadow: none !important;
}
.storefront .header-search-form .btn-icon {
  width: 50px;
  min-width: 50px;
  height: 44px;
  margin: 3px;
  border-radius: 13px !important;
  color: #fff !important;
  background: var(--color-primary) !important;
}

.storefront .header-middle .header-right > .menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
}
.storefront .header-middle .header-right .menu-link {
  min-width: 46px;
  min-height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 6px;
  border-radius: 11px;
  color: var(--storefront-ink);
  font-size: 10px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.storefront .header-middle .header-right .menu-link:hover {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), .07);
  transform: translateY(-2px);
}
.storefront .header-middle .menu-link > i { position: relative; font-size: 18px; }
.storefront .header-middle .menu-link .badge {
  position: absolute;
  inset-block-start: -9px;
  inset-inline-end: -11px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 20px;
  color: #fff;
  background: var(--color-primary);
  font: 700 10px/1 sans-serif;
}

.storefront .header-bottom {
  min-height: 56px;
  border-top: 1px solid var(--storefront-line);
  border-bottom: 0;
  background: #fff !important;
}
.storefront .header-bottom .main-nav { min-height: 56px; display: flex; align-items: center; flex-wrap: nowrap; }
.storefront .header-bottom .main-nav > nav.mobile-nav { flex: 1 1 auto; min-width: 0; }
.storefront .header-bottom .menu-right { display: flex; flex-wrap: nowrap; justify-content: center; }
.storefront .header-bottom .menu-right > li { flex: 0 0 auto; }
.storefront .header-bottom .menu-left .btn {
  min-height: 42px;
  padding: 9px 18px;
  border: 0;
  border-radius: 13px !important;
  box-shadow: 0 8px 18px rgba(var(--color-primary-rgb), .2);
}
.storefront .header-bottom .menu-right { gap: 4px; }
.storefront .header-bottom .menu-right > .nav-item > .nav-link {
  position: relative;
  padding: 18px 14px;
  color: var(--storefront-ink);
  font-size: 14px;
  font-weight: 600;
}
.storefront .header-bottom .menu-right > .nav-item > .nav-link::after {
  content: '';
  position: absolute;
  inset-inline: 14px;
  inset-block-end: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.storefront .header-bottom .menu-right > .nav-item > .nav-link:hover,
.storefront .header-bottom .menu-right > .nav-item > .nav-link.active { color: var(--color-primary); }
.storefront .header-bottom .menu-right > .nav-item > .nav-link:hover::after,
.storefront .header-bottom .menu-right > .nav-item > .nav-link.active::after { transform: scaleX(1); }

.storefront .setting-dropdown,
.storefront .category-dropdown,
.storefront .submenu,
.storefront .cart-dropdown {
  border: 1px solid var(--storefront-line) !important;
  border-radius: var(--storefront-radius-sm) !important;
  box-shadow: var(--storefront-shadow) !important;
  overflow: hidden;
}

/* Hero and banners */
.storefront .home-slider { padding-top: 32px !important; }
.storefront .slider-item,
.storefront .banner-sm,
.storefront .image-inner,
.storefront .video-banner .bg-overlay {
  overflow: hidden;
  border-radius: var(--storefront-radius-lg) !important;
}
.storefront .slider-item { min-height: 460px; box-shadow: var(--storefront-shadow-sm); }
.storefront .slider-item::after,
.storefront .banner-sm::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10,15,28,.3), transparent 62%);
}
[dir="rtl"] .storefront .slider-item::after,
[dir="rtl"] .storefront .banner-sm::after { transform: scaleX(-1); }
.storefront .slider-content,
.storefront .banner-content { z-index: 1; }
.storefront .slider-content .title { letter-spacing: -.035em; line-height: 1.08; }
.storefront .slider-content .sub-title {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 99px;
  color: var(--color-primary);
  background: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
}

/* Section rhythm and headings */
.storefront section,
.storefront .banner-collection { position: relative; }
.storefront .section-title .title { color: var(--storefront-ink); letter-spacing: -.025em; }
.storefront .section-title .text { color: var(--storefront-muted); }
.storefront .section-title .sub-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

/* Cards shared across themes */
.storefront .product-default,
.storefront .product-item,
.storefront .category-item,
.storefront .featured-item,
.storefront .blog-item,
.storefront .testimonial-item {
  border: 1px solid var(--storefront-line) !important;
  border-radius: var(--storefront-radius) !important;
  background: var(--storefront-surface);
  box-shadow: 0 1px 2px rgba(23, 32, 51, .02);
  transition: transform .3s var(--storefront-ease), box-shadow .3s ease, border-color .3s ease;
}
.storefront .product-default:hover,
.storefront .product-item:hover,
.storefront .category-item:hover,
.storefront .featured-item:hover,
.storefront .blog-item:hover,
.storefront .testimonial-item:hover {
  z-index: 2;
  border-color: rgba(var(--color-primary-rgb), .22) !important;
  box-shadow: var(--storefront-shadow-sm);
  transform: translateY(-6px);
}
.storefront .product-default .product-img,
.storefront .product-item .product-img,
.storefront .category-item .category-img { overflow: hidden; border-radius: 15px; }
.storefront .product-default img,
.storefront .product-item img,
.storefront .category-item img,
.storefront .banner-sm img { transition: transform .6s var(--storefront-ease); }
.storefront .product-default:hover img,
.storefront .product-item:hover img,
.storefront .category-item:hover img,
.storefront .banner-sm:hover img { transform: scale(1.045); }
.storefront .product-title a,
.storefront .category-title { color: var(--storefront-ink); font-weight: 700; }
.storefront .new-price { font-weight: 800; }

.storefront .featured-item { height: 100%; padding: 22px; }
.storefront .featured-item .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 14px;
  background: rgba(var(--color-primary-rgb), .09);
}

.storefront .btn { font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.storefront .btn:hover { transform: translateY(-2px); }
.storefront .btn-primary { box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), .18); }
.storefront .nav-tabs { gap: 6px; padding: 5px; border: 0; border-radius: 14px; background: var(--storefront-soft); }
.storefront .nav-tabs .nav-link { border: 0 !important; border-radius: 10px !important; }
.storefront .nav-tabs .nav-link.active { color: #fff !important; background: var(--color-primary) !important; }

/* Footer */
.storefront .footer-area {
  position: relative;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  background: #111827;
  overflow: hidden;
}
.storefront .footer-area .bg-overlay { opacity: .1; }
.storefront .footer-area .footer-top { position: relative; padding-top: 76px; }
.storefront .footer-widget h3 { color: #fff; font-size: 16px; font-weight: 750; }
.storefront .footer-widget p,
.storefront .footer-links a,
.storefront .footer-links span { color: rgba(255,255,255,.68); }
.storefront .footer-links a:hover { color: #fff; padding-inline-start: 4px; }
.storefront .footer-links i { color: var(--color-primary); }
.storefront .footer-area .social-link { display: flex; gap: 8px; }
.storefront .footer-area .social-link a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  background: rgba(255,255,255,.06);
}
.storefront .footer-area .newsletter-form .input-group {
  padding: 5px !important;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.08);
}
.storefront .footer-area .newsletter-form input { min-height: 48px; color: #fff; border: 0; background: transparent; }
.storefront .copy-right-area { position: relative; border-color: rgba(255,255,255,.1) !important; }

.storefront .go-top {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: var(--storefront-shadow-sm);
}

/* Keep every theme recognisable without fragmenting the shared system. */
.storefront--kids { --storefront-radius: 22px; --storefront-radius-lg: 30px; }
.storefront--fashion { --storefront-radius: 10px; --storefront-radius-lg: 12px; }
.storefront--furniture { --storefront-soft: #f7f5f1; }
.storefront--vegetables { --storefront-soft: #f5f9f4; }
.storefront--electronics { --storefront-soft: #f4f7fb; }
.storefront--manti { --storefront-soft: #faf6f2; }

@media (max-width: 1199px) {
  .storefront .header { box-shadow: 0 6px 24px rgba(23,32,51,.08); }
  .storefront .mobile-navbar { padding: 12px 0; background: #fff; }
  .storefront .mobile-navbar-inner { min-height: 48px; }
  .storefront .mobile-navbar .logo img { max-height: 45px; max-width: 165px; object-fit: contain; }
  .storefront .mobile-menu-toggler {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 10px;
    border-radius: 13px;
    background: var(--storefront-soft);
  }
  .storefront .mobile-menu-toggler span { width: 100%; margin: 0; border-radius: 2px; }
  .storefront .header-top,
  .storefront .header-middle,
  .storefront .header-bottom { display: none; }
  .storefront .slider-item { min-height: 400px; }
}

@media (max-width: 767px) {
  :root { --storefront-radius: 15px; --storefront-radius-lg: 19px; }
  .storefront .container { padding-inline: 18px; }
  .storefront .home-slider { padding-top: 18px !important; }
  .storefront .slider-item { min-height: 340px; }
  .storefront .slider-content { padding-inline: 22px !important; }
  .storefront .slider-content .title { font-size: clamp(28px, 9vw, 42px); }
  .storefront .section-title { margin-bottom: 28px !important; }
  .storefront .section-title .title { font-size: 28px; }
  .storefront .featured-item { padding: 17px; }
  .storefront .footer-area .footer-top { padding-top: 56px; }
}

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

/* Shared header based on the approved omar-header.html reference. */
.storefront-shell-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid #ecebf0;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: box-shadow .35s ease;
}
.storefront-shell-header.is-scrolled { box-shadow: 0 8px 30px -14px rgba(20,21,26,.18); }
.storefront-shell-header__bar {
  width: min(100%, 1344px);
  min-height: 80px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0,1fr) auto;
  align-items: center;
  gap: 24px;
  transition: min-height .35s ease, padding .35s ease;
}
.storefront-shell-header.is-scrolled .storefront-shell-header__bar { min-height: 66px; padding-block: 11px; }
.storefront-shell-header__brand { min-width: 0; display: flex; align-items: center; gap: 10px; color: #14151a; text-decoration: none; }
.storefront-shell-header__brand:hover { color: #14151a; }
.storefront-shell-header__brand img { width: auto; max-width: 190px; height: 44px; object-fit: contain; }
.storefront-shell-header__mark { width: 30px; height: 30px; flex: 0 0 30px; display: grid; place-items: center; border-radius: 9px; background: linear-gradient(135deg,var(--color-primary),#8a7bff); box-shadow: 0 6px 16px -6px rgba(var(--color-primary-rgb),.55); }
.storefront-shell-header__mark span { width: 9px; height: 9px; border-radius: 3px; background: #fff; transform: rotate(45deg); }
.storefront-shell-header__name { overflow: hidden; color: #14151a; font-size: 19px; font-weight: 800; letter-spacing: .5px; text-overflow: ellipsis; white-space: nowrap; }
.storefront-shell-header__nav { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 4px; }
.storefront-shell-header__nav a { padding: 9px 13px; border-radius: 999px; color: #4b4b57; font-size: 14px; font-weight: 600; text-decoration: none; white-space: nowrap; transition: color .2s ease, background .2s ease; }
.storefront-shell-header__nav a:hover { color: #14151a; background: #f2f1f6; }
.storefront-shell-header__nav a.active { color: var(--color-primary); background: rgba(var(--color-primary-rgb),.09); }
.storefront-shell-header__utils { position: relative; display: flex; align-items: center; justify-content: flex-end; gap: 5px; white-space: nowrap; }
.storefront-shell-header__icon,
.storefront-shell-header__burger { position: relative; width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 999px; color: #14151a; background: transparent; cursor: pointer; transition: background .2s ease, transform .15s ease; }
.storefront-shell-header__icon:hover,
.storefront-shell-header__burger:hover { color: #14151a; background: #f2f1f6; }
.storefront-shell-header__icon:active,
.storefront-shell-header__burger:active { transform: scale(.92); }
.storefront-shell-header__icon svg,
.storefront-shell-header__burger svg { width: 18px; height: 18px; }
.storefront-shell-header__badge { position: absolute; top: 0; inset-inline-end: 0; min-width: 16px; height: 16px; padding: 0 3px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 999px; color: #fff; background: var(--color-primary); font: 700 9px/1 sans-serif; }
.storefront-shell-header__divider { width: 1px; height: 22px; margin: 0 4px; background: #ecebf0; }
.storefront-shell-header .storefront-locale-action { display: inline-flex; }
.storefront-shell-header .admin-header-chip--locale { height: 36px; min-width: 40px; padding: 0 10px; border: 0; border-radius: 999px; background: #f2f1f6; }
.storefront-shell-header__login { min-height: 38px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px; color: #fff; background: #14151a; font-size: 12px; font-weight: 700; text-decoration: none; transition: background .2s ease, transform .15s ease; }
.storefront-shell-header__login:hover { color: #fff; background: #000; }
.storefront-shell-header__login:active { transform: scale(.96); }
.storefront-shell-header__login svg { width: 15px; height: 15px; }
.storefront-shell-header__burger { display: none; }
.storefront-shell-header .cart-dropdown { inset-inline-end: 0; top: calc(100% + 12px); }
.storefront-shell-header .cart-dropdown.is-open { display: block; opacity: 1; visibility: visible; }

/* Shared storefront footer — isolated from legacy theme footer rules. */
.storefront .storefront-shell-footer {
  --footer-bg: #14151a;
  --footer-surface: #1e1f27;
  --footer-line: #2a2b34;
  --footer-text: #c9c9d1;
  --footer-muted: #898994;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  color: var(--footer-text);
  background: var(--footer-bg);
  text-align: start;
}
.storefront .storefront-shell-footer::before { content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .08; background-image: var(--storefront-footer-image); background-size: cover; background-position: center; filter: grayscale(1); }
.storefront-shell-footer__top,
.storefront-shell-footer__bottom { width: min(100% - 40px, 1280px); margin-inline: auto; }
.storefront-shell-footer__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(28px, 3vw, 48px); padding-block: 64px 44px; }
.storefront-shell-footer__brand p,
.storefront-shell-footer__newsletter > p { margin: 0; color: var(--footer-muted); font-size: 14px; line-height: 1.85; }
.storefront-shell-footer__brand p { max-width: 310px; }
.storefront-shell-footer__logo { width: fit-content; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 17px; color: #fff; text-decoration: none; }
.storefront-shell-footer__logo:hover { color: #fff; }
.storefront-shell-footer__logo img { display: block; width: auto; max-width: 180px; height: 44px; object-fit: contain; }
.storefront-shell-footer__logo strong { color: #fff; font-size: 19px; font-weight: 800; letter-spacing: .02em; }
.storefront-shell-footer__mark { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 62%, #fff)); box-shadow: 0 7px 18px rgba(var(--color-primary-rgb), .32); }
.storefront-shell-footer__mark span { width: 9px; height: 9px; border-radius: 3px; background: #fff; transform: rotate(45deg); }
.storefront-shell-footer__socials { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.storefront-shell-footer__socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--footer-line); border-radius: 50%; color: var(--footer-text); background: var(--footer-surface); text-decoration: none; transition: transform .2s ease, color .2s ease, border-color .2s ease, background .2s ease; }
.storefront-shell-footer__socials a:hover { color: #fff; border-color: var(--color-primary); background: var(--color-primary); transform: translateY(-2px); }
.storefront-shell-footer__column h2 { margin: 2px 0 19px; color: #fff; font-size: 15px; font-weight: 750; line-height: 1.4; }
.storefront-shell-footer__column ul { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.storefront-shell-footer__column li { margin: 0; color: var(--footer-text); font-size: 14px; line-height: 1.55; }
.storefront-shell-footer__column a { color: var(--footer-text); text-decoration: none; transition: color .2s ease, transform .2s ease; }
.storefront-shell-footer__column a:hover { color: #fff; }
.storefront-shell-footer__column li > a { display: inline-block; }
.storefront-shell-footer__column li > a:hover { transform: translateX(3px); }
[dir="rtl"] .storefront-shell-footer__column li > a:hover { transform: translateX(-3px); }
.storefront-shell-footer__empty { margin: 0; color: var(--footer-muted); font-size: 13px; line-height: 1.7; }
.storefront-shell-footer__contact li { display: flex; align-items: flex-start; gap: 10px; }
.storefront-shell-footer__contact li > i { width: 17px; margin-top: 3px; color: var(--color-primary); text-align: center; flex: 0 0 17px; }
.storefront-shell-footer__newsletter > p { margin-bottom: 16px; }
.storefront-shell-footer__subscribe { display: flex !important; align-items: stretch; gap: 4px; width: 100%; margin: 0; padding: 5px; border: 1px solid var(--footer-line); border-radius: 999px; background: var(--footer-surface); }
.storefront-shell-footer__subscribe input { width: 100%; min-width: 0; height: 44px; padding: 0 14px; border: 0; outline: 0; color: #fff; background: transparent; font-size: 13.5px; box-shadow: none; }
.storefront-shell-footer__subscribe input::placeholder { color: var(--footer-muted); }
.storefront-shell-footer__subscribe button { min-width: 112px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 17px; border: 0; border-radius: 999px; color: #fff; background: var(--color-primary); font-size: 13px; font-weight: 750; white-space: nowrap; transition: filter .2s ease, transform .15s ease; }
.storefront-shell-footer__subscribe button:hover { filter: brightness(.92); }
.storefront-shell-footer__subscribe button:active { transform: scale(.97); }
.storefront-shell-footer__divider { border-top: 1px solid var(--footer-line); }
.storefront-shell-footer__bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 20px; }
.storefront-shell-footer__bottom p { margin: 0; color: var(--footer-muted); font-size: 13px; }
.storefront-shell-footer__bottom strong { color: var(--footer-text); }
@media (max-width: 991px) {
  .storefront-shell-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .storefront-shell-footer__brand { grid-column: 1 / -1; }
  .storefront-shell-footer__brand p { max-width: 620px; }
}
@media (max-width: 575px) {
  .storefront-shell-footer__top,
  .storefront-shell-footer__bottom { width: min(100% - 32px, 1280px); }
  .storefront-shell-footer__top { grid-template-columns: 1fr; gap: 34px; padding-block: 46px 30px; }
  .storefront-shell-footer__brand { grid-column: auto; }
  .storefront-shell-footer__bottom { align-items: flex-start; flex-direction: column; }
  .storefront-shell-footer__subscribe button { min-width: 50px; width: 50px; padding: 0; }
  .storefront-shell-footer__subscribe button span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
}

/* Dashboard-powered timed hero cards. */
.storefront-cinematic-slot + .home-slider { display: none !important; }
.storefront-cinematic-slot { width: 100%; }
.storefront-cinematic-hero { width: min(100% - 40px, 1360px); margin: 28px auto 0; color: #fff; }
.storefront-cinematic-hero__stage { position: relative; height: clamp(560px, 69vh, 760px); min-height: 560px; overflow: hidden; isolation: isolate; border-radius: 28px; background: #171922; box-shadow: 0 32px 80px rgba(21,22,30,.18); }
.storefront-cinematic-hero__slide { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: 0; visibility: hidden; transform: scale(1.045); transition: opacity .65s ease, visibility .65s ease, transform 1.1s cubic-bezier(.2,.7,.2,1); }
.storefront-cinematic-hero__slide::before { content: ''; position: absolute; inset: -28px; opacity: 0; background-image: var(--cinematic-image); background-size: cover; background-position: center; filter: blur(24px) saturate(.85) brightness(.58); transform: scale(1.08); transition: opacity .3s ease; }
.storefront-cinematic-hero__slide.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1); }
.storefront-cinematic-hero__slide > img { position: relative; z-index: 1; width: 100%; height: 100%; display: block; object-fit: cover; transform: scale(1.04); transition: transform 6.4s linear; }
.storefront-cinematic-hero__slide.is-active > img { transform: scale(1); }
.storefront-cinematic-hero__slide.is-contained::before { opacity: 1; }
.storefront-cinematic-hero__slide.is-contained > img { object-fit: contain; }
.storefront-cinematic-hero__shade { position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg, rgba(9,11,17,.84) 0%, rgba(9,11,17,.47) 43%, rgba(9,11,17,.08) 72%), linear-gradient(0deg, rgba(9,11,17,.34), transparent 48%); }
.storefront-cinematic-hero__slide.is-image-led .storefront-cinematic-hero__shade { background: linear-gradient(0deg, rgba(9,11,17,.3), transparent 35%); }
[dir="rtl"] .storefront-cinematic-hero__shade { transform: scaleX(-1); }
.storefront-cinematic-hero__content { position: absolute; z-index: 2; inset-inline-start: clamp(28px, 6vw, 88px); top: 50%; width: min(520px, calc(100% - 56px)); transform: translateY(-50%); }
.storefront-cinematic-hero__content > * { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .55s cubic-bezier(.2,.8,.2,1); }
.storefront-cinematic-hero__slide.is-active .storefront-cinematic-hero__content > * { opacity: 1; transform: none; }
.storefront-cinematic-hero__slide.is-active .storefront-cinematic-hero__content > :nth-child(2) { transition-delay: .08s; }
.storefront-cinematic-hero__slide.is-active .storefront-cinematic-hero__content > :nth-child(3) { transition-delay: .14s; }
.storefront-cinematic-hero__slide.is-active .storefront-cinematic-hero__content > :nth-child(4) { transition-delay: .2s; }
.storefront-cinematic-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.storefront-cinematic-hero__eyebrow::before { content: ''; width: 26px; height: 3px; border-radius: 3px; background: var(--color-primary); }
.storefront-cinematic-hero__content h1 { max-width: 520px; margin: 0 0 18px; color: #fff; font-size: clamp(42px, 5.2vw, 78px); font-weight: 800; line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.storefront-cinematic-hero__content p { max-width: 470px; margin: 0 0 28px; color: rgba(255,255,255,.78); font-size: clamp(14px, 1.25vw, 17px); line-height: 1.8; }
.storefront-cinematic-hero__content a { min-height: 50px; width: fit-content; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 12px 23px; border: 1px solid rgba(255,255,255,.44); border-radius: 999px; color: #fff; background: rgba(255,255,255,.11); backdrop-filter: blur(10px); font-size: 13px; font-weight: 750; text-decoration: none; }
.storefront-cinematic-hero__content a:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.2); }
.storefront-cinematic-hero__cards { position: absolute; z-index: 4; inset-inline-end: clamp(26px, 4vw, 60px); bottom: 46px; max-width: min(58%, 650px); display: flex; align-items: flex-end; gap: 12px; overflow-x: auto; padding: 8px 2px 4px; scrollbar-width: none; }
.storefront-cinematic-hero__cards::-webkit-scrollbar { display: none; }
.storefront-cinematic-hero__card { position: relative; width: clamp(82px, 8.2vw, 116px); height: clamp(116px, 12vw, 166px); flex: 0 0 auto; overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.32); border-radius: 16px; color: #fff; background: #242631; box-shadow: 0 15px 34px rgba(0,0,0,.2); opacity: .76; transform: translateY(12px); transition: width .48s cubic-bezier(.2,.8,.2,1), height .48s cubic-bezier(.2,.8,.2,1), opacity .3s ease, transform .48s cubic-bezier(.2,.8,.2,1), border-color .3s ease; }
.storefront-cinematic-hero__card:hover { opacity: 1; transform: translateY(4px); }
.storefront-cinematic-hero__card.is-active { width: clamp(132px, 12.5vw, 178px); height: clamp(154px, 15.5vw, 208px); opacity: 1; transform: none; border-color: rgba(255,255,255,.85); }
.storefront-cinematic-hero__card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.storefront-cinematic-hero__card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,8,12,.78), transparent 64%); }
.storefront-cinematic-hero__card > span { position: absolute; z-index: 2; inset-inline: 11px; bottom: 15px; overflow: hidden; color: #fff; font-size: 10px; font-weight: 750; line-height: 1.3; text-align: start; text-overflow: ellipsis; white-space: nowrap; }
.storefront-cinematic-hero__card > i { position: absolute; z-index: 3; inset-inline: 10px; bottom: 7px; height: 2px; overflow: hidden; border-radius: 2px; background: rgba(255,255,255,.25); }
.storefront-cinematic-hero__card > i::after { content: ''; position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left center; }
[dir="rtl"] .storefront-cinematic-hero__card > i::after { transform-origin: right center; }
.storefront-cinematic-hero__card.is-active.is-timing > i::after { animation: cinematic-card-timer var(--cinematic-interval, 5800ms) linear forwards; }
.storefront-cinematic-hero__counter { position: absolute; z-index: 4; inset-inline-start: clamp(28px, 6vw, 88px); bottom: 42px; display: flex; align-items: baseline; gap: 7px; direction: ltr; color: rgba(255,255,255,.58); font-size: 12px; }
.storefront-cinematic-hero__counter strong { color: #fff; font-size: 24px; }
@keyframes cinematic-card-timer { to { transform: scaleX(1); } }
@media (max-width: 767px) {
  .storefront-cinematic-hero { width: calc(100% - 28px); margin-top: 14px; }
  .storefront-cinematic-hero__stage { height: min(720px, calc(100svh - 100px)); min-height: 610px; border-radius: 22px; }
  .storefront-cinematic-hero__shade { background: linear-gradient(0deg, rgba(9,11,17,.9) 0%, rgba(9,11,17,.5) 53%, rgba(9,11,17,.08) 84%); }
  .storefront-cinematic-hero__slide.is-contained > img { object-position: center top; }
  .storefront-cinematic-hero__slide.is-image-led .storefront-cinematic-hero__shade { background: linear-gradient(0deg, rgba(9,11,17,.34), transparent 32%); }
  [dir="rtl"] .storefront-cinematic-hero__shade { transform: none; }
  .storefront-cinematic-hero__content { top: auto; bottom: 225px; inset-inline: 22px; width: auto; transform: none; }
  .storefront-cinematic-hero__content h1 { font-size: clamp(34px, 11vw, 52px); }
  .storefront-cinematic-hero__content p { max-height: 76px; overflow: hidden; margin-bottom: 19px; font-size: 13px; }
  .storefront-cinematic-hero__cards { inset-inline: 20px; bottom: 34px; max-width: none; overflow-x: auto; padding: 8px 2px 4px; scrollbar-width: none; }
  .storefront-cinematic-hero__cards::-webkit-scrollbar { display: none; }
  .storefront-cinematic-hero__card { width: 74px; height: 105px; border-radius: 13px; }
  .storefront-cinematic-hero__card.is-active { width: 112px; height: 132px; }
  .storefront-cinematic-hero__counter { top: 22px; bottom: auto; inset-inline-start: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .storefront-cinematic-hero *, .storefront-cinematic-hero *::after { animation: none !important; transition-duration: .01ms !important; }
}
.storefront .mobile-menu,
.storefront .mobile-menu-overlay { display: none !important; }

@media (max-width: 1100px) {
  .storefront-shell-header__bar { grid-template-columns: minmax(130px,180px) minmax(0,1fr) auto; gap: 12px; padding-inline: 20px; }
  .storefront-shell-header__nav a { padding-inline: 8px; font-size: 13px; }
  .storefront-shell-header__login span { display: none; }
  .storefront-shell-header__login { width: 38px; padding: 0; justify-content: center; }
}
@media (max-width: 920px) {
  .storefront-shell-header__bar { min-height: 68px; grid-template-columns: minmax(0,1fr) auto; padding: 12px 18px; }
  .storefront-shell-header__nav { position: fixed; inset: 0; z-index: -1; padding: 88px 24px 24px; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px; background: #fff; opacity: 0; visibility: hidden; transform: translateX(-100%); transition: transform .35s ease, opacity .25s ease, visibility .25s; }
  [dir="rtl"] .storefront-shell-header__nav { transform: translateX(100%); }
  .storefront-shell-header__nav.is-open { z-index: 100; opacity: 1; visibility: visible; transform: none; }
  .storefront-shell-header__nav a { padding: 14px 16px; border-radius: 12px; font-size: 16px; }
  .storefront-shell-header__burger { z-index: 101; display: grid; }
}
@media (max-width: 575px) {
  .storefront-shell-header__bar { padding-inline: 12px; }
  .storefront-shell-header__brand img { max-width: 120px; height: 38px; }
  .storefront-shell-header__name { max-width: 105px; font-size: 16px; }
  .storefront-shell-header__utils { gap: 1px; }
  .storefront-shell-header__icon,
  .storefront-shell-header__burger { width: 34px; height: 34px; flex-basis: 34px; }
  .storefront-shell-header__divider { display: none; }
  .storefront-shell-header .admin-header-chip--locale { min-width: 34px; height: 34px; padding-inline: 7px; }
  .storefront-shell-header .admin-header-chip-label { display: none; }
  .storefront-shell-header__login { width: 34px; min-height: 34px; }
}
.storefront .setting-dropdown form {
  margin: 0;
}

.storefront .setting-dropdown form .menu-link {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: start;
}
