/* =========================================================
   MultiShop — High-level Professional Frontend
   ========================================================= */
:root {
  /* Marketplace chrome: navy header + orange CTA (Amazon / Jumia style) */
  --ms-ink: #0f1111;
  --ms-ink-soft: #565959;
  --ms-muted: #6b7280;
  --ms-line: #d5d9d9;
  --ms-line-strong: #c4c8c8;
  --ms-surface: #ffffff;
  --ms-bg: #eaeded;
  --ms-gold: #ff9900;
  --ms-gold-deep: #e47911;
  --ms-dark: #131921;
  --ms-header: #232f3e;
  --ms-header-deep: #131921;
  --ms-radius: 14px;
  --ms-radius-sm: 8px;
  --ms-shadow: 0 12px 40px rgba(15, 18, 21, 0.07);
  --ms-shadow-hover: 0 18px 50px rgba(15, 18, 21, 0.12);
  --font-display: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body) !important;
  color: var(--ms-ink-soft) !important;
  background: var(--ms-bg) !important;
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 153, 0, 0.07), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(15, 18, 21, 0.035), transparent 50%) !important;
  line-height: 1.65;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

button, input, select, textarea,
.btn, .form-control, .custom-select, .nav, .dropdown-menu, label, table {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6,
.brand-mark, .section-heading, .ms-hero-brand, .ms-hero-title {
  font-family: var(--font-display) !important;
  letter-spacing: -0.025em;
  color: var(--ms-ink);
  font-weight: 700;
}

img { max-width: 100%; }
a { transition: color .2s ease, opacity .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }

.ms-wrap {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

@media (max-width: 575px) {
  .ms-wrap { width: min(100% - 28px, var(--container)); }
}

/* ========== HEADER (3-tier marketplace) ========== */
.ms-chrome {
  position: relative;
  z-index: 1300;
  background: transparent;
  overflow: visible;
}
.ms-topbar,
.ms-masthead {
  max-height: 160px;
  transition: max-height 0.28s ease, opacity 0.2s ease, border-width 0.2s ease;
}

.ms-topbar {
  position: relative;
  z-index: 5;
  background: var(--ms-header-deep);
  color: #d5d9d9;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 153, 0, 0.22);
}

.ms-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.ms-topbar-offer {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d5d9d9;
  flex-wrap: wrap;
}

.ms-topbar-offer strong { color: var(--ms-gold); }

.ms-topbar-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.ms-topbar-meta a {
  color: #d5d9d9;
  text-decoration: none;
  font-weight: 600;
}

.ms-topbar-meta a:hover { color: var(--ms-gold-deep); }

.ms-account-menu { position: relative; }

.ms-account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.ms-account-caret {
  font-size: 10px;
  opacity: .7;
  transition: transform .2s ease;
}

.ms-account-menu:hover .ms-account-caret,
.ms-account-menu:focus-within .ms-account-caret { transform: rotate(180deg); }

.ms-account-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 18, 21, 0.14);
  padding: 6px;
  display: none;
  z-index: 1400;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.ms-account-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.ms-account-menu:hover .ms-account-panel,
.ms-account-menu:focus-within .ms-account-panel { display: block; }

.ms-account-panel a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #1a1a1a !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  border: 0 !important;
  margin: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ms-account-panel a i {
  width: 18px;
  font-size: 14px;
  color: var(--ms-gold-deep);
  text-align: center;
  flex-shrink: 0;
}

.ms-account-panel a:hover { background: #f7f4ea; }

.ms-account-sep {
  display: block;
  height: 1px;
  background: var(--ms-line);
  margin: 6px 8px;
}

.ms-account-logout { color: #b42318 !important; }
.ms-account-logout i { color: #b42318 !important; }

.ms-account-menu--nav .ms-account-trigger {
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 4px 8px 12px;
}

.ms-account-menu--nav .ms-account-trigger:hover,
.ms-account-menu--nav:hover .ms-account-trigger,
.ms-account-menu--nav:focus-within .ms-account-trigger { color: var(--ms-gold); }

.ms-menubar-side .ms-account-menu--nav {
  border-left: 1px solid rgba(255,255,255,.18);
  margin-left: 8px;
  padding-left: 4px;
}

.ms-topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c5c9d0;
}

.ms-masthead {
  background: var(--ms-header);
  border-bottom: 1px solid rgba(255, 153, 0, 0.16);
}

.ms-masthead-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 96px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  flex-shrink: 0;
  line-height: 1;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-logo {
  height: 72px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  object-position: left center;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}

.brand-mark--logo .brand-copy {
  padding-left: 14px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.brand-mark--logo .brand-text .b1 {
  font-size: 1.28rem;
  letter-spacing: .08em;
}

.ms-masthead .brand-mark--logo .brand-copy small {
  letter-spacing: .14em;
  font-size: 10px;
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(160deg, #ffb84d, #ff9900 55%, #e47911);
  color: #0f1111;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-copy { display: flex; flex-direction: column; gap: 4px; }

.brand-text { display: inline-flex; align-items: baseline; }

.brand-mark .b1,
.brand-mark .b2 {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.brand-mark .b1 { color: var(--ms-ink); }
.brand-mark .b2 { color: var(--ms-gold); }
.ms-masthead .brand-mark .b1,
.ms-footer .brand-mark .b1 { color: #fff; }

.brand-copy small {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.ms-footer .brand-mark .b1 { color: #fff; }

.ms-search-pro {
  flex: 1;
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  min-width: 0;
  height: 48px;
  border: 1px solid transparent;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.ms-search-pro select {
  border: 0;
  border-right: 1px solid #e5e7eb;
  background: #f8f9fb;
  padding: 0 12px;
  min-width: 110px;
  max-width: 150px;
  font-weight: 700;
  color: var(--ms-ink);
  outline: none;
}

.ms-search-pro input {
  border: 0;
  flex: 1;
  min-width: 0;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  color: var(--ms-ink);
}

.ms-search-pro button {
  border: 0;
  background: var(--ms-gold);
  color: #1a1408;
  padding: 0 22px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.ms-search-pro button:hover {
  background: #d4b84a;
  color: #1a1408;
}

.ms-mast-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.ms-mast-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ms-mast-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  position: relative;
  font-size: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.ms-mast-icon:hover { background: rgba(255, 153, 0, .22); color: var(--ms-gold) !important; border-color: rgba(255,153,0,.35); }

.ms-mast-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ms-gold);
  color: #1a1408;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--ms-header);
}

.ms-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 153, 0, 0.45);
  background: rgba(255, 153, 0, 0.16);
  color: #f3d27a;
}

.ms-mast-login-chip {
  display: none;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px 0 10px;
  border-radius: 999px;
  background: var(--ms-gold);
  color: #1a1408 !important;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 153, 0, .28);
}
.ms-mast-login-chip i { font-size: 14px; }

.ms-menubar {
  background: var(--ms-header-deep);
  border-top: 0;
  overflow: visible;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1500;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(30, 37, 50, 0.18);
}
.ms-menubar.is-fixed {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1500;
}

.ms-menubar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  position: relative;
}

.ms-cat-menu { position: relative; flex-shrink: 0; }

.ms-cat-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 4px 12px 0;
  white-space: nowrap;
}

.ms-cat-trigger .fa-bars { color: var(--ms-gold); }
.ms-cat-caret { font-size: 10px; opacity: .7; transition: transform .2s ease; }

.ms-cat-menu:hover .ms-cat-caret,
.ms-cat-menu:focus-within .ms-cat-caret { transform: rotate(180deg); }

.ms-cat-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: min(520px, calc(100vw - 48px));
  max-height: min(70vh, calc(100vh - 200px));
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  border: 1px solid var(--ms-line);
  box-shadow: 0 20px 50px rgba(15,18,21,.16);
  padding: 8px 0 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1300;
  display: grid;
  grid-template-columns: 1fr 1fr;
  scrollbar-width: thin;
}

.ms-cat-menu:hover .ms-cat-panel,
.ms-cat-menu:focus-within .ms-cat-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.ms-cat-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.ms-cat-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--ms-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.ms-cat-panel a i {
  width: 28px;
  color: var(--ms-gold-deep);
  text-align: center;
}

.ms-cat-panel a small {
  margin-left: auto;
  color: var(--ms-muted);
  font-weight: 600;
  font-size: 12px;
}

.ms-cat-panel a:hover,
.ms-cat-panel a.active { background: #f7f4ea; }

.ms-cat-panel a.ms-cat-sub {
  padding-left: 36px;
  font-weight: 600;
  font-size: 13px;
  color: #4b5563;
}

.ms-cat-panel-all {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--ms-line);
  color: var(--ms-gold-deep) !important;
  margin-bottom: 4px;
}

.ms-menubar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.ms-menubar-links a,
.ms-menubar-side a {
  color: rgba(255,255,255,.86);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  white-space: nowrap;
}

.ms-menubar-links a:hover,
.ms-menubar-side a:hover,
.ms-menubar-links a.active,
.ms-menubar-side a.active { color: var(--ms-gold); }

.ms-menubar-side {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.ms-menubar-side > a:not(:last-of-type) {
  border-right: 1px solid rgba(255,255,255,.18);
  padding-right: 12px;
  margin-right: 4px;
}

.ms-mobile-panel {
  display: none;
  background: #f6f7f9;
  border-top: 1px solid rgba(255, 153, 0, 0.18);
  padding: 0 0 20px;
  box-shadow: inset 0 8px 16px rgba(15,18,21,.04);
}
.ms-mobile-sheet {
  padding-top: 12px;
  padding-bottom: 8px;
}
.ms-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.ms-mobile-head strong {
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #52606d;
}
.ms-mobile-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eceff3;
  color: #1f2933;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ms-mobile-login {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  margin: 0 0 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #232f3e, #131921);
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(15, 18, 21, .16);
}
.ms-mobile-login strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}
.ms-mobile-login small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 600;
}
.ms-mobile-login-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ms-gold);
  color: #1a1408;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.ms-mobile-login.is-in {
  background: #fff;
  color: #0f1111 !important;
  border: 1px solid #e5e7eb;
  box-shadow: none;
}
.ms-mobile-login.is-in small { color: #64748b; }
.ms-mobile-nav {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}
.ms-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  color: var(--ms-ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #f0f2f4;
}
.ms-mobile-nav a:last-child { border-bottom: 0; }
.ms-mobile-nav a i {
  width: 22px;
  text-align: center;
  color: var(--ms-gold-deep);
}
.ms-mobile-nav a.active {
  color: var(--ms-gold-deep);
  background: #fff8eb;
}
.ms-mobile-nav a:hover { color: var(--ms-gold-deep); }
.ms-mobile-logout { color: #b42318 !important; }
.ms-mobile-details {
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 0 14px 8px;
}
.ms-mobile-details summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 0;
  font-weight: 800;
  cursor: pointer;
}
.ms-mobile-details summary::-webkit-details-marker { display: none; }
.ms-mobile-details summary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ms-mobile-details summary span i { color: var(--ms-gold-deep); width: 22px; text-align: center; }
.ms-mobile-caret { font-size: 12px; color: #9aa5b1; transition: transform .2s ease; }
.ms-mobile-details[open] .ms-mobile-caret { transform: rotate(180deg); }
.ms-mobile-nav--more { margin-bottom: 4px; }

.ms-mobile-panel a {
  text-decoration: none;
}

.ms-mobile-panel a:hover { color: var(--ms-gold-deep); }

.ms-search-mobile {
  width: 100%;
  margin: 0 0 18px;
  height: 52px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 18, 21, 0.08);
}

.ms-search-mobile select {
  width: auto;
  max-width: 108px;
  min-width: 78px;
  height: 52px;
  border: 0;
  border-right: 1px solid #eef0f3;
  border-bottom: 0;
  background: #f7f8fa;
  font-size: 13px;
  font-weight: 700;
  padding: 0 8px 0 12px;
}

.ms-search-mobile-query {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px 0 12px;
}

.ms-search-mobile-query i {
  color: #9aa5b1;
  font-size: 14px;
  flex-shrink: 0;
}

.ms-search-mobile-query input,
.ms-search-mobile input {
  width: 100%;
  height: 52px;
  border: 0;
  padding: 0;
  font-size: 15px;
  background: transparent;
}

.ms-search-mobile button {
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--ms-gold);
  color: #1a1408;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ms-search-mobile button:hover {
  background: #d4b84a;
}

.ms-mobile-cats {
  padding: 0 0 8px 12px;
  border-bottom: 1px solid #f0f2f4;
}

.ms-mobile-cats a {
  font-size: 13.5px;
  color: var(--ms-ink-soft) !important;
  font-weight: 600 !important;
  border-bottom: 0 !important;
  padding: 7px 0 !important;
}
.ms-mobile-cats a.ms-cat-sub {
  padding-left: 14px !important;
  font-weight: 500 !important;
}

/* ========== HERO (slider + stacked offers) ========== */
.ms-hero-stage {
  background: #fff;
  padding: 18px 0 8px;
}

.ms-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 12px;
  align-items: stretch;
}

.ms-hero-main,
.ms-hero-carousel,
.ms-hero-carousel .carousel-inner,
.ms-hero-carousel .carousel-item {
  height: 430px;
}

.ms-hero-main {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
}

.ms-hero-carousel .carousel-item { position: relative; }

.ms-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ms-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.ms-hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 48px 36px 56px;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.62) 58%, rgba(255,255,255,0) 100%);
}

.ms-hero-kicker {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #6eb6e0;
  margin-bottom: 10px;
  animation: fadeUp .7s ease both;
}

.ms-hero-title {
  font-family: var(--font-body) !important;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 800;
  color: #3d454d !important;
  line-height: 1.28;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 0 0 22px;
  max-width: 420px;
  animation: fadeUp .7s ease .08s both;
}

.ms-hero-price {
  color: #2ecc71;
  font-weight: 800;
}

.ms-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 128px;
  padding: 10px 22px;
  background: var(--ms-gold);
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  border-radius: 2px;
  animation: fadeUp .7s ease .16s both;
}

.ms-hero-btn:hover { background: #d4b84a; color: #111 !important; }

.ms-hero-control {
  width: 48px;
  opacity: 1;
  z-index: 5;
}

.ms-hero-control.carousel-control-prev { justify-content: flex-start; left: 0; }
.ms-hero-control.carousel-control-next { justify-content: flex-end; right: 0; }

.ms-hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: #e8eaed;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ms-hero-control:hover .ms-hero-arrow {
  background: var(--ms-gold);
  color: #1a1a1a;
}

.carousel-fade .carousel-item {
  transition: opacity .7s ease-in-out;
}

.ms-hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 430px;
}

.ms-promo {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 16px 18px 16px 22px;
  background: #ececec;
  text-decoration: none !important;
  color: inherit;
  overflow: hidden;
}

.ms-promo:hover { background: #e6e6e6; }

.ms-promo-copy { min-width: 0; z-index: 1; }

.ms-promo-copy h3 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  color: #3d454d !important;
  line-height: 1.25;
}

.ms-promo-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #8a9199;
}

.ms-promo-media {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-promo-media img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ms-promo-badge {
  position: absolute;
  left: -6px;
  top: 10px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ff6a00;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 6px 16px rgba(255, 106, 0, .28);
}

/* Buttons */
.btn-ms {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: 14px 28px;
  border: none;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn-ms:hover { transform: translateY(-2px); }

.btn-ms-primary {
  background: var(--ms-gold);
  color: var(--ms-ink) !important;
}

.btn-ms-primary:hover {
  background: var(--ms-gold-deep);
  box-shadow: 0 10px 28px rgba(255, 153, 0, .35);
  color: var(--ms-ink) !important;
}

.btn-ms-ghost {
  background: transparent;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.5);
}

.btn-ms-ghost:hover {
  background: #fff;
  color: var(--ms-ink) !important;
  border-color: #fff;
}

.btn-ms-dark {
  background: var(--ms-ink);
  color: #fff !important;
}

.btn-ms-dark:hover {
  background: #000;
  color: #fff !important;
}

.btn-ms-ghost-dark {
  background: transparent;
  color: var(--ms-ink) !important;
  border: 1.5px solid var(--ms-line-strong);
}

.btn-ms-ghost-dark:hover {
  background: var(--ms-ink);
  color: #fff !important;
  border-color: var(--ms-ink);
}

.btn-ms.w-100,
.btn-ms.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

/* Special offers */
.ms-offers {
  padding: 28px 0 0;
}

.ms-offers-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: var(--ms-radius);
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(15, 18, 21, 0.05);
}

.ms-offer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  text-decoration: none !important;
  color: inherit;
  min-width: 0;
  transition: background .2s ease;
}

.ms-offer-item:not(:last-child) {
  border-right: 1px solid var(--ms-line);
}

.ms-offer-item:hover { background: #fafbfc; }

.ms-offer-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  flex-shrink: 0;
  background: #f4f5f7;
}

.ms-offer-copy {
  flex: 1;
  min-width: 0;
}

.ms-offer-copy h6 {
  margin: 0 0 4px;
  color: var(--ms-ink) !important;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.ms-offer-copy small {
  display: block;
  color: var(--ms-ink-soft);
  font-size: 13.5px;
  font-weight: 500;
}

.ms-offer-item > .fa-arrow-right {
  color: var(--ms-gold);
  font-size: 13px;
  flex-shrink: 0;
  opacity: .75;
}

.ms-offer-item:hover > .fa-arrow-right { opacity: 1; transform: translateX(3px); }
.ms-offer-item > .fa-arrow-right { transition: transform .2s ease, opacity .2s ease; }

/* Trust strip */
.ms-trust {
  background: transparent;
  border: 0;
  margin-top: 36px;
  padding: 0;
}

.ms-trust .ms-wrap {
  background: var(--ms-surface);
  border: 1px solid var(--ms-line);
  border-radius: var(--ms-radius);
  padding: 8px;
  box-shadow: 0 10px 36px rgba(15, 18, 21, 0.05);
}

.ms-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.ms-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  position: relative;
}

.ms-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--ms-line);
}

.ms-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f4f5f7;
  border: 1px solid var(--ms-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-ink);
  flex-shrink: 0;
  font-size: 15px;
}

.ms-trust-item strong {
  display: block;
  color: var(--ms-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
}

.ms-trust-item span {
  font-size: 12.5px;
  color: var(--ms-muted);
}

/* Sections */
.ms-section {
  padding: 96px 0 72px;
  position: relative;
}

.ms-section--soft {
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.2)),
    #f3f4f6;
  border-top: 1px solid rgba(15,18,21,.04);
  border-bottom: 1px solid rgba(15,18,21,.04);
}

.ms-section--last {
  padding-bottom: 100px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ms-line);
}

.section-head-copy {
  max-width: 560px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ms-gold-deep);
  margin-bottom: 14px;
}

.section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 153, 0, .12);
  border: 1px solid rgba(255, 153, 0, .28);
  color: var(--ms-gold-deep);
  font-size: 10.5px;
  letter-spacing: .08em;
}

.section-heading {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 750;
  margin: 0 0 10px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section-sub {
  color: var(--ms-muted);
  margin: 0;
  max-width: 440px;
  font-size: 15.5px;
  line-height: 1.55;
}

.link-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ms-ink);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--ms-line-strong);
  background: #fff;
  transition: all .22s ease;
}

.link-all i {
  font-size: 11px;
  transition: transform .22s ease;
}

.link-all:hover {
  color: #fff;
  background: var(--ms-ink);
  border-color: var(--ms-ink);
}

.link-all:hover i { transform: translateX(3px); }

/* Categories — compact professional tiles */
.ms-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.ms-cat {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ms-line);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ms-cat:hover {
  transform: translateY(-3px);
  box-shadow: var(--ms-shadow);
  border-color: #d8c27a;
}

.ms-cat-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  padding: 14px;
  background: #f6f7f9;
}

.ms-cat-img img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform .25s ease;
}

.ms-cat:hover .ms-cat-img img { transform: scale(1.04); }

.ms-cat-overlay { display: none; }

.ms-cat-body {
  padding: 12px 14px 14px;
  text-align: center;
}

.ms-cat-body h6 {
  margin: 0 0 4px;
  color: var(--ms-ink) !important;
  font-weight: 750;
  font-size: .95rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ms-cat-body h6 i {
  color: var(--ms-gold);
  font-size: .78rem;
}

.ms-cat-body small {
  color: var(--ms-ink-soft);
  font-size: 12px;
  font-weight: 500;
}

.ms-product-row > [class*="col-"] { display: flex; }
.ms-product-row .ms-product { width: 100%; }

/* Products */
.ms-product {
  background: var(--ms-surface);
  border: 1px solid var(--ms-line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  height: calc(100% - 24px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.ms-product:hover {
  transform: translateY(-5px);
  box-shadow: var(--ms-shadow-hover);
  border-color: rgba(255, 153, 0, 0.45);
}

.ms-product-img {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  padding: 18px 16px 28px;
  background: #f6f7f9;
}

.ms-product-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  transition: transform .3s ease;
}

.ms-product:hover .ms-product-img img { transform: scale(1.04); }

.ms-product-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 1;
  transform: none;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  transition: background .35s ease;
}

.ms-product:hover .ms-product-actions,
.ms-product:focus-within .ms-product-actions {
  background: rgba(255, 255, 255, 0.72);
  pointer-events: auto;
}

.ms-product-actions a {
  width: auto;
  min-width: 58px;
  height: 56px;
  padding: 6px 8px;
  border-radius: 2px;
  background: #fff;
  color: #111;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #111;
  box-shadow: none;
  opacity: 0;
  transform: translateY(24px);
  font-size: 11px;
  font-weight: 700;
}

.ms-product-actions a i { margin-bottom: 3px; }

.ms-product:hover .ms-product-actions a:nth-child(1),
.ms-product:focus-within .ms-product-actions a:nth-child(1) {
  opacity: 1;
  transform: none;
  transition: .3s 0s;
}
.ms-product:hover .ms-product-actions a:nth-child(2),
.ms-product:focus-within .ms-product-actions a:nth-child(2) {
  opacity: 1;
  transform: none;
  transition: .3s .06s;
}
.ms-product:hover .ms-product-actions a:nth-child(3),
.ms-product:focus-within .ms-product-actions a:nth-child(3) {
  opacity: 1;
  transform: none;
  transition: .3s .12s;
}

.ms-product-actions a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.ms-gallery-stage {
  position: relative;
}

.ms-gallery-stage .ms-similar {
  left: 14px;
  bottom: 14px;
}

.ms-similar {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
}

.ms-similar-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 22px rgba(15, 18, 21, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.ms-similar:hover .ms-similar-btn,
.ms-similar:focus .ms-similar-btn {
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(15, 18, 21, 0.22);
}

.ms-similar-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  transform: none;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.ms-similar-tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 16px;
  margin-left: 0;
  border: 6px solid transparent;
  border-top-color: #111;
}

.ms-similar:hover .ms-similar-tip,
.ms-similar:focus .ms-similar-tip,
.ms-product:hover .ms-similar-tip,
.ms-gallery-stage:hover .ms-similar-tip {
  opacity: 1;
}

.ms-similar-source {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: 14px;
}

.ms-similar-source img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f6f7f9;
  border-radius: 10px;
  flex-shrink: 0;
}

.ms-similar-source small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ms-muted);
}

.ms-similar-source strong {
  display: block;
  color: var(--ms-ink);
  margin: 2px 0 2px;
}

.ms-similar-source span {
  color: var(--ms-muted);
  font-size: 14px;
}

.ms-similar-source .btn-ms {
  margin-left: auto;
}

@media (max-width: 575px) {
  .ms-similar-source {
    flex-wrap: wrap;
  }
  .ms-similar-source .btn-ms {
    margin-left: 0;
    width: 100%;
  }
}

.ms-product-body { padding: 14px 16px 16px; }

.ms-product-body .shop-tag {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
  transition: color .2s ease;
}

.ms-product:hover .shop-tag,
.ms-product-body .shop-tag:hover {
  color: var(--ms-gold);
}

.ms-product-body .name {
  display: block;
  color: #1e293b;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  margin-bottom: 10px;
  font-family: var(--font-display);
  line-height: 1.25;
  transition: color .2s ease;
}

.ms-product:hover .name,
.ms-product-body .name:hover {
  color: var(--ms-gold);
}

.ms-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ms-price .now {
  font-weight: 800;
  color: #1e293b;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  transition: color .2s ease;
}

.ms-product:hover .ms-price .now {
  color: var(--ms-gold);
}

.ms-price .was {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: .88rem;
  font-weight: 500;
}

/* Band / CTA */
.ms-band {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #fff;
}

.ms-band .ms-wrap { padding: 8px 0; }

.ms-band-inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 56px 48px;
  border-radius: 20px;
  background: var(--ms-dark);
  isolation: isolate;
}

.ms-band-inner::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 153, 0, .14);
  right: -100px;
  top: -160px;
  z-index: 0;
}

.ms-band-inner::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  left: -60px;
  bottom: -90px;
  z-index: 0;
}

.ms-band-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.ms-band-kicker {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ms-gold);
  margin-bottom: 12px;
}

.ms-band h3 {
  color: #fff !important;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin-bottom: 10px;
  line-height: 1.15;
}

.ms-band p {
  color: rgba(255,255,255,.68);
  margin: 0;
  max-width: 520px;
  line-height: 1.65;
}

.ms-band .btn-ms {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Vendors */
.ms-vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ms-vendor {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  background: var(--ms-surface);
  border: 1px solid var(--ms-line);
  border-radius: 16px;
  padding: 32px 22px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-height: 230px;
}

.ms-vendor:hover {
  transform: translateY(-5px);
  box-shadow: var(--ms-shadow);
  border-color: #d7dbe0;
}

.ms-vendor-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #f4f5f7;
  border: 1px solid var(--ms-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.ms-vendor img {
  max-height: 42px;
  max-width: 52px;
  object-fit: contain;
  filter: grayscale(.15);
  transition: filter .25s ease;
}

.ms-vendor:hover img { filter: none; }

.ms-vendor h5 {
  color: var(--ms-ink);
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.ms-vendor small {
  color: var(--ms-muted);
  display: block;
  margin-bottom: 14px;
}

.ms-vendor-cta {
  margin-top: auto;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ms-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .55;
  transition: opacity .2s ease, color .2s ease;
}

.ms-vendor-cta i { font-size: 10px; }

.ms-vendor:hover .ms-vendor-cta {
  opacity: 1;
  color: var(--ms-gold-deep);
}

/* Footer — dark 3-column shop layout */
.ms-footer {
  background: #000;
  color: #fff;
  padding: 64px 0 0;
  margin-top: 0;
}

.ms-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  gap: 48px 56px;
  align-items: start;
}

.ms-footer h5 {
  display: inline-block;
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 22px;
  padding-bottom: 8px;
  border-bottom: 3px solid #e11d2a;
}

.ms-footer-about {
  max-width: 420px;
  margin: 0;
  line-height: 1.75;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}

.ms-footer-links,
.ms-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ms-footer-links li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.ms-footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #fff;
}

.ms-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.ms-footer a:hover { color: var(--ms-gold); }

.ms-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.ms-footer-contact i {
  color: #fff;
  width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ms-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 48px;
  padding: 18px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ms-footer-bottom img {
  max-height: 28px;
  opacity: .9;
}

/* Sliding product photos above footer — continuous marquee */
.ms-photo-strip {
  background: #fff;
  border-top: 1px solid #ececec;
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.ms-photo-viewport {
  overflow: hidden;
  width: 100%;
}
.ms-photo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ms-photo-scroll 40s linear infinite;
  will-change: transform;
}
.ms-photo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 180px;
  height: 160px;
  padding: 8px 16px;
}
.ms-photo-item img {
  width: auto !important;
  max-width: 100%;
  max-height: 148px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.ms-photo-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}
.ms-photo-prev { left: 16px; }
.ms-photo-next { right: 16px; }
.ms-photo-nav:hover { color: #e11d2a; }
@keyframes ms-photo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Product carousel arrows */
.owl-carousel .owl-nav {
  margin: 0;
  pointer-events: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  pointer-events: auto;
  position: absolute;
  top: 38%;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  color: #9ca3af !important;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  font-size: 22px;
  line-height: 1;
}
.owl-carousel .owl-nav .owl-prev { left: -8px; }
.owl-carousel .owl-nav .owl-next { right: -8px; }
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
  background: #fff !important;
  color: #e11d2a !important;
}
.related-carousel .ms-product { height: auto; margin-bottom: 8px; }

/* Page heads */
.ms-page-head {
  padding: 36px 0 8px;
  border-bottom: 1px solid var(--ms-line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(247,248,250,.4));
}

.ms-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ms-muted);
  margin-bottom: 12px;
}

.ms-crumb a {
  color: var(--ms-ink-soft);
  text-decoration: none;
  font-weight: 600;
}

.ms-crumb a:hover { color: var(--ms-gold-deep); }

.ms-page-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 6px;
  line-height: 1.1;
}

.ms-page-sub {
  color: var(--ms-muted);
  margin: 0;
  max-width: 520px;
}

/* Panels / tables */
.ms-panel {
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: var(--ms-radius);
  padding: 28px;
}

.ms-panel-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ms-ink);
  margin-bottom: 20px;
}

.ms-shop-filter {
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: 16px;
  padding: 22px 24px 20px;
  margin-bottom: 28px;
  box-shadow: 0 10px 28px rgba(15, 18, 21, 0.04);
}

.ms-shop-filter-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ms-ink);
  margin: 0 0 16px;
}

.ms-shop-filter-form {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto auto;
  gap: 14px 16px;
  align-items: end;
}

.ms-shop-filter-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--ms-ink);
  margin-bottom: 6px;
}

.ms-shop-filter-field .form-control {
  height: 44px;
  border: 1px solid #e5e7eb;
  border-radius: 10px !important;
  background: #fff;
  box-shadow: none;
}

.ms-shop-filter-field .form-control:focus {
  border-color: #cfd4da !important;
  box-shadow: 0 0 0 3px rgba(15, 18, 21, 0.04) !important;
}

.ms-shop-filter-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-width: 180px;
}

.ms-shop-filter-btn {
  height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
}

.ms-shop-filter-btn:hover { background: #0b1220; color: #fff; }

@media (max-width: 991px) {
  .ms-shop-filter-form {
    grid-template-columns: 1fr 1fr;
  }
  .ms-shop-filter-range { grid-column: 1 / -1; }
  .ms-shop-filter-btn { width: 100%; grid-column: 1 / -1; }
}

@media (max-width: 575px) {
  .ms-shop-filter { padding: 18px 16px; }
  .ms-shop-filter-form { grid-template-columns: 1fr; }
}
  min-width: 180px;
  border-radius: 999px !important;
}

.ms-pagination .page-link {
  border-radius: 10px !important;
  margin: 0 3px;
  color: var(--ms-ink);
  border-color: var(--ms-line);
}

.ms-pagination .page-item.active .page-link {
  background: var(--ms-ink);
  border-color: var(--ms-ink);
}

.ms-table thead th {
  background: #f3f4f6;
  border: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ms-muted);
  padding: 14px 18px;
}

.ms-table td {
  padding: 16px 18px;
  vertical-align: middle;
  border-color: var(--ms-line);
}

.ms-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f3f5;
  color: var(--ms-ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Product detail + gallery */
.ms-detail-section {
  padding-top: 12px !important;
  padding-bottom: 40px !important;
}

.ms-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: start;
}

.ms-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ms-detail-media,
.ms-gallery-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 360px;
  padding: 28px 24px 40px;
  background: #f6f7f9;
  border: 1px solid var(--ms-line);
  border-radius: var(--ms-radius);
  overflow: hidden;
  cursor: zoom-in;
}

.ms-detail-media img,
.ms-gallery-main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 280px;
  object-fit: contain;
  transition: transform .3s ease;
}

.ms-gallery-main:hover img { transform: scale(1.03); }

.ms-gallery-zoom {
  position: absolute;
  left: auto;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15,18,21,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: all .22s ease;
  pointer-events: none;
}

.ms-gallery-main:hover .ms-gallery-zoom {
  opacity: 1;
  transform: none;
}

.ms-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ms-gallery-thumb {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: #eef0f3;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.ms-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
}

.ms-gallery-thumb:hover { transform: translateY(-2px); }

.ms-gallery-thumb.active {
  border-color: var(--ms-gold);
  box-shadow: 0 0 0 2px rgba(255,153,0,.18);
}

.ms-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ms-gallery-card {
  position: relative;
  border: 1px solid var(--ms-line);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ms-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: #f6f7f9;
  transition: transform .3s ease;
}

.ms-gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ms-shadow);
}

.ms-gallery-card:hover img { transform: scale(1.05); }

.ms-gallery-card-label {
  position: absolute;
  inset: auto 12px 12px auto;
  background: rgba(15,18,21,.8);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ms-lightbox[hidden] { display: none !important; }

.ms-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ms-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,12,14,.82);
  backdrop-filter: blur(4px);
}

.ms-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-lightbox-panel img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  background: #111;
}

.ms-lightbox-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ms-ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.ms-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ms-ink);
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.ms-lightbox-nav.prev { left: -8px; }
.ms-lightbox-nav.next { right: -8px; }

.ms-lightbox-count {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .ms-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .ms-gallery-main { height: 300px; }
  .ms-gallery-main img { max-height: 230px; }
  .ms-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-lightbox-nav.prev { left: 4px; }
  .ms-lightbox-nav.next { right: 4px; }
}

@media (max-width: 575px) {
  .ms-gallery-grid { grid-template-columns: 1fr 1fr; }
  .ms-gallery-zoom { opacity: 1; transform: none; }
  .ms-detail-specs { grid-template-columns: 1fr; }
  .ms-gallery-main { height: 260px; }
  .ms-detail-tab { padding: 14px 14px; font-size: 13px; }
  .ms-detail-tabpanel { padding: 20px 16px 24px; }
}

.ms-detail-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--ms-muted);
}

.ms-detail-meta a {
  color: var(--ms-gold-deep);
  font-weight: 700;
  text-decoration: none;
}

.ms-detail-title {
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ms-detail-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.ms-detail-price .now {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
}

.ms-detail-price .was {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.ms-detail-save {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef8f1;
  color: #1f7a4d;
  font-size: 12px;
  font-weight: 800;
}

.ms-detail-desc {
  color: var(--ms-ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 540px;
}

.ms-detail-specs {
  list-style: none;
  margin: 0 0 22px;
  padding: 14px 0;
  border-top: 1px solid var(--ms-line);
  border-bottom: 1px solid var(--ms-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.ms-detail-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
}

.ms-detail-specs span { color: var(--ms-muted); }
.ms-detail-specs strong { color: var(--ms-ink); font-weight: 700; }
.ms-detail-specs .in { color: #1f7a4d; }
.ms-detail-specs .out { color: #b42318; }

.ms-detail-stock .in { color: #1f7a4d; font-weight: 700; }
.ms-detail-stock .out { color: #b42318; font-weight: 700; }

.ms-detail-actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.ms-qty-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--ms-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ms-qty {
  width: 86px !important;
  text-align: center;
  border-radius: 12px !important;
  height: 48px;
}

.ms-detail-tabs {
  margin-top: 40px;
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: var(--ms-radius);
  overflow: hidden;
}

.ms-detail-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--ms-line);
  background: #f8f9fb;
}

.ms-detail-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ms-muted);
  font-weight: 700;
  font-size: 14px;
  padding: 16px 22px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.ms-detail-tab:hover { color: var(--ms-ink); }

.ms-detail-tab.active {
  color: var(--ms-ink);
  background: #fff;
  border-bottom-color: var(--ms-gold);
}

.ms-detail-tabpanel {
  display: none;
  padding: 28px 28px 32px;
}

.ms-detail-tabpanel.active { display: block; }

.ms-detail-tabpanel h3 {
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.ms-detail-about-text {
  color: var(--ms-ink-soft);
  line-height: 1.8;
  margin: 0 0 22px;
  max-width: 820px;
}

.ms-detail-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px 18px;
}

.ms-detail-facts li {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 12px 14px;
}

.ms-detail-facts span {
  display: block;
  font-size: 12px;
  color: var(--ms-muted);
  margin-bottom: 2px;
}

.ms-detail-facts strong { color: var(--ms-ink); }

.ms-review-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.ms-review-list { margin-bottom: 8px; }

.ms-review {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ms-line);
}

.ms-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef2f6;
  color: var(--ms-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.ms-review p { margin: 6px 0 0; color: var(--ms-ink-soft); }
.ms-review-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ms-stars { color: var(--ms-gold); letter-spacing: 1px; }
.ms-stars span { color: #d5d9de; }

.ms-review-form {
  margin-top: 22px;
  background: #f8f9fb;
  border-radius: 12px;
  padding: 20px;
}

.ms-review-form h4 { font-size: 1rem; margin-bottom: 12px; }

.ms-star-pick { display: flex; gap: 4px; }

.ms-star-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #d5d9de;
  font-size: 28px;
  line-height: 1;
  padding: 0 2px;
  cursor: pointer;
}

.ms-star-btn.active,
.ms-star-btn.is-hover { color: var(--ms-gold); }

.ms-review-login {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--ms-ink-soft);
}

.ms-how {
  background: #f4f5f7;
  border-top: 1px solid #eceef1;
  border-bottom: 1px solid #eceef1;
}

.ms-how-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
}

.ms-how-copy { max-width: 560px; }

.ms-how-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--ms-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ms-how-copy h2 {
  margin: 0 0 8px;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ms-ink);
  line-height: 1.1;
}

.ms-how-copy p {
  margin: 0;
  max-width: 420px;
  color: #8a9199;
  font-size: 15.5px;
  line-height: 1.55;
}

.ms-how-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #232f3e;
  border-radius: 999px;
  background: #fff;
  color: #0f1111 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.ms-how-more i { font-size: 11px; transition: transform .2s ease; }
.ms-how-more:hover { background: #232f3e; color: #fff !important; }
.ms-how-more:hover i { transform: translateX(3px); }

.ms-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ms-how-card {
  display: block;
  min-height: 188px;
  padding: 26px 24px 28px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 18, 21, 0.035);
  text-decoration: none !important;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ms-how-card:hover {
  transform: translateY(-3px);
  border-color: #dddfe3;
  box-shadow: 0 16px 36px rgba(15, 18, 21, 0.08);
}

.ms-how-num {
  display: block;
  margin-bottom: 14px;
  color: var(--ms-gold);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
}

.ms-how-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ms-ink) !important;
  letter-spacing: -0.02em;
}

.ms-how-card p {
  margin: 0;
  color: #8a9199;
  font-size: 14.5px;
  line-height: 1.6;
}

.ms-faq details {
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.ms-faq summary { font-weight: 700; color: var(--ms-ink); cursor: pointer; }
.ms-faq p { margin: 10px 0 0; color: var(--ms-ink-soft); }

.ms-timeline { list-style: none; margin: 0; padding: 0; }
.ms-timeline li {
  position: relative;
  padding: 0 0 16px 18px;
  border-left: 2px solid var(--ms-line);
}
.ms-timeline li:last-child { padding-bottom: 0; border-left-color: var(--ms-gold); }
.ms-timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ms-gold);
}
.ms-timeline strong { display: block; text-transform: capitalize; color: var(--ms-ink); }
.ms-timeline small { color: var(--ms-muted); }

@media (max-width: 991px) {
  .ms-how-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  .ms-how-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .ms-how-grid { grid-template-columns: 1fr; }
  .ms-how-card { min-height: 0; }
}

/* Cart rows */
.ms-cart-row {
  display: grid;
  grid-template-columns: 1.6fr .7fr 1fr .7fr 40px;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--ms-line);
}

.ms-cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ms-cart-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  background: #eef0f3;
}

.ms-cart-product a {
  display: block;
  color: var(--ms-ink);
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-display);
}

.ms-cart-product small {
  color: var(--ms-muted);
}

.ms-cart-qty {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ms-cart-qty .form-control {
  width: 72px;
  text-align: center;
}

.ms-cart-qty .btn-ms {
  padding: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.ms-cart-remove {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b42318;
  border: 1px solid #f1c9c5;
  background: #fff5f4;
  text-decoration: none !important;
}

.ms-cart-price,
.ms-cart-total { font-weight: 700; color: var(--ms-ink); }

/* Auth */
.ms-auth {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.ms-auth-card {
  width: min(100%, 460px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: var(--ms-shadow);
}

.ms-auth-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ms-ink);
  margin-bottom: 18px;
}

.ms-auth-brand span { color: var(--ms-gold); }

.ms-auth-card h1 {
  font-size: 1.85rem;
  margin-bottom: 8px;
}

.ms-auth-card > p {
  color: var(--ms-muted);
  margin-bottom: 24px;
}

.ms-auth-foot {
  margin-top: 22px;
  margin-bottom: 0;
  text-align: center;
  color: var(--ms-muted);
}

.ms-auth-foot a {
  color: var(--ms-ink);
  font-weight: 700;
}

/* About / contact extras */
.ms-about-media {
  border-radius: var(--ms-radius);
  overflow: hidden;
  border: 1px solid var(--ms-line);
  aspect-ratio: 4 / 3;
}

.ms-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-feature {
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: var(--ms-radius);
  padding: 28px 24px;
  height: 100%;
}

.ms-feature h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.ms-feature p {
  margin: 0;
  color: var(--ms-muted);
}

.ms-about-hero {
  position: relative;
  overflow: hidden;
  color: var(--ms-ink);
  padding: 56px 0 64px;
  border-top: 1px solid rgba(255,153,0,.28);
  background:
    linear-gradient(180deg, #f7f3ea 0%, #efe6d6 55%, #e8dfcf 100%);
}

.ms-about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 300px at 88% 8%, rgba(255,153,0,.18), transparent 58%),
    radial-gradient(480px 260px at 6% 92%, rgba(42,49,64,.06), transparent 55%);
  pointer-events: none;
}

.ms-about-hero .ms-wrap { position: relative; z-index: 1; }

.ms-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .8fr);
  gap: 48px;
  align-items: end;
  margin-top: 18px;
}

.ms-about-kicker {
  display: inline-flex;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--ms-gold);
  margin-bottom: 16px;
}

.ms-about-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--ms-ink);
  margin: 0 0 18px;
  max-width: 16ch;
}

.ms-about-hero-copy p {
  color: var(--ms-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 0 28px;
}

.ms-about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ms-about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ms-about-stat {
  background: #fff;
  border: 1px solid rgba(42,49,64,.08);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(42,49,64,.06);
}

.ms-about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ms-ink);
  line-height: 1;
  margin-bottom: 6px;
}

.ms-about-stat span {
  color: var(--ms-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ms-about-strip {
  background: #fff;
  border-bottom: 1px solid var(--ms-line);
}

.ms-about-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.ms-about-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 8px;
  color: var(--ms-ink-soft);
  font-weight: 600;
  font-size: 14px;
}

.ms-about-strip-item i { color: var(--ms-gold-deep); width: 18px; text-align: center; }

.ms-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px;
  align-items: center;
}

.ms-about-collage {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 12px;
  min-height: 420px;
}

.ms-about-collage-main,
.ms-about-collage-side img {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ms-line);
  background: #eef0f3;
}

.ms-about-collage-main img,
.ms-about-collage-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ms-about-collage-main { min-height: 420px; }

.ms-about-collage-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.ms-about-lead {
  font-size: 1.08rem;
  color: var(--ms-ink-soft);
  line-height: 1.8;
  margin: 0 0 14px;
}

.ms-about-story-copy > p {
  color: var(--ms-muted);
  line-height: 1.75;
  margin: 0 0 18px;
}

.ms-about-quote {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--ms-gold);
  background: #f7f8fa;
  border-radius: 0 12px 12px 0;
  color: var(--ms-ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.55;
}

.ms-about-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ms-about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ms-about-value {
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: 18px;
  padding: 26px 22px 28px;
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}

.ms-about-value:hover {
  transform: translateY(-4px);
  box-shadow: var(--ms-shadow);
}

.ms-about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,153,0,.12);
  color: var(--ms-gold-deep);
  font-size: 18px;
  margin-bottom: 18px;
}

.ms-about-value h5 {
  font-size: 1.08rem;
  margin: 0 0 8px;
}

.ms-about-value p {
  margin: 0;
  color: var(--ms-muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.ms-about-vendors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.ms-about-vendor {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ms-line);
  border-radius: 16px;
  padding: 16px 18px;
  text-decoration: none !important;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ms-about-vendor:hover {
  transform: translateY(-3px);
  box-shadow: var(--ms-shadow);
  border-color: rgba(255,153,0,.35);
}

.ms-about-vendor-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-about-vendor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.ms-about-vendor-meta { flex: 1; min-width: 0; }
.ms-about-vendor-meta strong { display: block; color: var(--ms-ink); }
.ms-about-vendor-meta small { color: var(--ms-muted); }
.ms-about-vendor > .fa { color: var(--ms-gold-deep); }

.ms-contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--ms-line);
}

.ms-contact-line:last-child { border-bottom: 0; }

.ms-contact-line i {
  color: var(--ms-gold-deep);
  margin-top: 3px;
}

/* Breadcrumb / forms polish */
.breadcrumb.bg-light {
  background: #fff !important;
  border: 1px solid var(--ms-line);
  border-radius: var(--ms-radius-sm);
}

.bg-light.p-30,
.bg-light.p-5,
.contact-form.bg-light,
.h-100.bg-light.p-30 {
  border: 1px solid var(--ms-line) !important;
  border-radius: var(--ms-radius) !important;
  box-shadow: none !important;
  background: #fff !important;
}

.btn-primary {
  background: var(--ms-gold) !important;
  border-color: var(--ms-gold) !important;
  color: #0f1111 !important;
  font-weight: 700;
  border-radius: 999px !important;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.btn-primary:hover {
  background: var(--ms-gold-deep) !important;
  border-color: var(--ms-gold-deep) !important;
  color: #0f1111 !important;
}

.text-primary { color: var(--ms-gold) !important; }
.bg-primary { background-color: var(--ms-gold) !important; }

.form-control {
  border-radius: 10px !important;
  border-color: var(--ms-line-strong) !important;
  min-height: 44px;
}

.form-control:focus {
  border-color: var(--ms-ink) !important;
  box-shadow: 0 0 0 .15rem rgba(15,18,21,.08) !important;
}

/* Reveal — keep content visible even if JS does not run */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.back-to-top {
  background: #e11d2a !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 3px !important;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  right: 18px;
  bottom: 18px;
}
.back-to-top:hover {
  background: var(--ms-gold) !important;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 1199px) {
  .ms-search-pro select { max-width: 120px; }
  .ms-menubar-links a,
  .ms-menubar-side a { font-size: 13px; padding: 8px 8px; }
  .ms-cat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 992px) {
  .ms-menubar {
    position: sticky;
    top: 0;
    z-index: 1500;
  }
}

@media (max-width: 991px) {
  .ms-chrome {
    position: sticky;
    top: 0;
    background: var(--ms-header);
    box-shadow: 0 12px 32px rgba(15, 18, 21, 0.12);
  }
  .ms-chrome.is-scrolled .ms-topbar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    border-bottom-width: 0;
  }
  .ms-chrome.is-scrolled .ms-topbar-inner {
    min-height: 0 !important;
  }
  .ms-menubar {
    position: relative;
    box-shadow: none;
  }
  .ms-topbar-meta { display: none; }
  .ms-search-pro.d-none { display: none !important; }
  .ms-mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .ms-mast-login-chip { display: inline-flex !important; }
  .ms-mobile-panel.open { display: block; }
  .brand-mark--logo .brand-copy { display: none; }
  .ms-masthead {
    border-bottom: 1px solid rgba(255, 153, 0, 0.22);
  }
  .ms-masthead-inner {
    min-height: 78px;
    gap: 16px;
    justify-content: space-between;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .brand-logo-wrap,
  .brand-logo {
    height: 64px;
    max-width: 168px;
  }
  .ms-topbar-inner {
    justify-content: center;
    min-height: 34px;
  }
  .ms-topbar-offer {
    font-size: 14.5px;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .ms-wrap { width: min(100% - 28px, var(--container)); }

  .ms-hero-grid {
    grid-template-columns: 1fr;
  }
  .ms-hero-main,
  .ms-hero-carousel,
  .ms-hero-carousel .carousel-inner,
  .ms-hero-carousel .carousel-item {
    height: 360px;
  }
  .ms-hero-side { min-height: 0; }
  .ms-hero-copy {
    max-width: 70%;
    padding: 28px 24px 28px 52px;
  }
  .ms-hero-control.carousel-control-next { display: none; }

  .ms-offers-panel { grid-template-columns: 1fr; }
  .ms-offer-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--ms-line);
  }

  .ms-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .ms-trust-item:nth-child(2n)::after { display: none; }

  .ms-trust-item:not(:last-child)::after {
    top: 18%;
    bottom: 18%;
  }

  .ms-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ms-vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ms-band-inner {
    padding: 40px 28px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .ms-about-hero { padding: 40px 0 48px; }
  .ms-about-hero-grid,
  .ms-about-story,
  .ms-about-values,
  .ms-about-strip-grid,
  .ms-about-vendors {
    grid-template-columns: 1fr 1fr;
  }
  .ms-about-hero-grid { gap: 28px; }
  .ms-about-collage { min-height: 320px; }
  .ms-about-collage-main { min-height: 320px; }
  .ms-about-values { grid-template-columns: 1fr 1fr; }

  .ms-cart-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .table-responsive {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 575px) {
  .ms-wrap { width: min(100% - 20px, var(--container)); }
  .ms-topbar-offer { font-size: 14px; }
  .ms-masthead-inner { min-height: 72px; gap: 12px; }
  .brand-logo-wrap,
  .brand-logo { height: 56px; }
  .brand-logo { max-width: 128px; }
  .ms-hero-main,
  .ms-hero-carousel,
  .ms-hero-carousel .carousel-inner,
  .ms-hero-carousel .carousel-item {
    height: 280px;
  }
  .ms-hero-copy {
    max-width: 78%;
    padding: 20px 16px 20px 48px;
  }
  .ms-hero-title { font-size: 1.35rem; }
  .ms-hero-control { display: none; }

  .ms-trust-grid { grid-template-columns: 1fr; }
  .ms-trust-item:not(:last-child)::after { display: none; }
  .ms-trust-item { border-bottom: 1px solid var(--ms-line); }
  .ms-trust-item:last-child { border-bottom: 0; }

  .ms-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-vendor-grid { grid-template-columns: 1fr; }

  .brand-mark .b1,
  .brand-mark .b2 { font-size: 1.25rem; }

  .ms-cart-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ms-auth { padding: 24px 0 40px; }
  .ms-auth-card { padding: 22px 16px; }

  .ms-about-hero-grid,
  .ms-about-story,
  .ms-about-values,
  .ms-about-strip-grid,
  .ms-about-vendors,
  .ms-about-collage {
    grid-template-columns: 1fr;
  }
  .ms-about-hero-copy h1 { max-width: none; }
  .ms-about-collage,
  .ms-about-collage-main { min-height: 0; }
  .ms-about-collage-main { aspect-ratio: 16 / 10; }

  .ms-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ms-page-title { font-size: 1.6rem; }
  .pagination { flex-wrap: wrap; }
  .ms-about-collage-side { grid-template-columns: 1fr 1fr; grid-template-rows: 160px; }
}

/* ===== Any screen: phone, tablet, desktop ===== */
html { -webkit-text-size-adjust: 100%; }
img, svg, video, canvas { max-width: 100%; height: auto; }
iframe { max-width: 100%; }
.table-responsive { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 991px) {
  html { font-size: 17px; }
  body { font-size: 17px !important; }
  .ms-hero-title { font-size: 1.35rem; }
  .ms-hero-copy {
    max-width: 86%;
    padding: 24px 16px 24px 20px;
  }
  .ms-search-mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 54px;
    overflow: hidden;
  }
  .ms-search-mobile select {
    width: auto;
    max-width: 108px;
    font-size: 15px;
    height: 54px;
  }
  .ms-search-mobile-query,
  .ms-search-mobile-query input {
    width: auto;
    max-width: none;
    flex: 1;
    font-size: 16px;
    height: 54px;
  }
  .ms-search-mobile button {
    width: 54px;
    max-width: 54px;
    height: 54px;
  }
  .ms-hero-arrow { width: 36px; height: 36px; }
  .ms-promo { min-height: 150px; }
  .ms-how-head { align-items: flex-start; }
  .btn-ms, .ms-hero-btn, .ms-shop-filter-btn {
    min-height: 48px;
    font-size: 15px;
  }
  .ms-gate--page { min-height: 0; }
  .ms-gate-card h2 { font-size: 1.55rem; }
  .ms-gate-card .lead { font-size: 16px; }
}

@media (max-width: 575px) {
  .brand-mark--logo .brand-copy { display: none; }
  .brand-logo-wrap,
  .brand-logo { height: 58px; max-width: 152px; }
  .ms-mast-icon,
  .ms-mobile-toggle { width: 40px; height: 40px; }
  .ms-hero-main,
  .ms-hero-carousel,
  .ms-hero-carousel .carousel-inner,
  .ms-hero-carousel .carousel-item {
    height: 240px;
  }
  .ms-hero-title { font-size: 1.28rem !important; }
  .ms-hero-kicker { font-size: 15px; }
  .ms-hero-btn { min-width: 128px; padding: 12px 20px; font-size: 15px; }
  .ms-promo { grid-template-columns: 1.1fr .9fr; padding: 12px 12px 12px 14px; }
  .ms-promo-copy h3 { font-size: 1.05rem; }
  .ms-promo-copy p { font-size: 14px; }
  .ms-promo-badge { width: 52px; height: 52px; font-size: 12px; }
  .ms-section { padding: 40px 0 32px; }
  .ms-section--last { padding-bottom: 56px; }
  .section-heading { font-size: 1.7rem; }
  .section-sub { font-size: 16px; }
  .ms-how-copy h2 { font-size: 1.7rem; }
  .ms-how-copy p { font-size: 16px; }
  .ms-how-more { width: 100%; justify-content: center; font-size: 16px; }
  .ms-how-card h3 { font-size: 1.15rem; }
  .ms-how-card p { font-size: 15.5px; }
  .ms-product-img { height: 150px; }
  .ms-product-body .name { font-size: 1.08rem; }
  .ms-price .now { font-size: 1.18rem; }
  .ms-cat-body h6 { font-size: 15px; }
  .ms-cat-body small { font-size: 13px; }
  .ms-gallery-main,
  .ms-detail-media { height: 240px; padding: 16px 12px 36px; }
  .ms-gallery-main img,
  .ms-detail-media img { max-height: 180px; }
  .ms-detail-title { font-size: 1.55rem; }
  .ms-detail-desc { font-size: 16px; }
  .ms-cart-qty { flex-wrap: wrap; }
  .ms-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .ms-footer p, .ms-footer a { font-size: 15.5px; }
  .ms-page-title { font-size: 1.85rem; }
  .ms-page-sub { font-size: 16px; }
  .ms-shop-filter-title { font-size: 1.35rem; }
  .ms-shop-filter-field label { font-size: 15px; }
  .ms-mobile-nav a { font-size: 16.5px; padding: 15px 14px; }
  .ms-mobile-cats a { font-size: 15.5px; }
  .ms-search-mobile select { font-size: 15px; }
  .ms-search-mobile-query input { font-size: 16px; }
  .ms-topbar-offer { font-size: 14px !important; }
  input.form-control,
  select.form-control,
  textarea.form-control {
    font-size: 16px !important;
    min-height: 48px;
  }
}

@media (max-width: 380px) {
  .ms-cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ms-product-row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Featured Products showcase */
.fp-section { background: #fff; padding: 56px 0 64px; }
.fp-head { text-align: center; margin-bottom: 36px; }
.fp-head h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  color: #111;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.fp-head p {
  margin: 0 0 22px;
  color: #8a8f98;
  font-size: 15px;
}
.fp-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.fp-filter {
  border: 0;
  background: #111;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.fp-filter.is-on { background: #111; color: #fff; }
.fp-filter:not(.is-on) { background: #1a1a1a; color: #fff; opacity: .88; }
.fp-filter:hover { background: var(--ms-gold) !important; color: #111 !important; }

.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.fp-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.12);
}
.fp-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 210px;
  background: #eceff3;
  overflow: hidden;
}
.fp-media img {
  width: auto;
  max-width: 86%;
  max-height: 170px;
  object-fit: contain;
  animation: fp-float 4.5s ease-in-out infinite;
  transition: transform .35s ease;
}
.fp-card:hover .fp-media img {
  animation-play-state: paused;
  transform: scale(1.08);
}
.fp-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0);
  z-index: 3;
  pointer-events: none;
  transition: background .35s ease;
}
.fp-card:hover .fp-actions,
.fp-card:focus-within .fp-actions {
  background: rgba(255, 255, 255, 0.72);
  pointer-events: auto;
}
.fp-act {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 58px;
  padding: 6px 8px;
  border: 1px solid #111;
  background: #fff;
  color: #111 !important;
  text-decoration: none !important;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(28px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}
.fp-act i {
  font-size: 15px;
  margin-bottom: 4px;
}
.fp-card:hover .fp-act:nth-child(1),
.fp-card:focus-within .fp-act:nth-child(1) {
  opacity: 1;
  transform: none;
  transition: .3s 0s;
}
.fp-card:hover .fp-act:nth-child(2),
.fp-card:focus-within .fp-act:nth-child(2) {
  opacity: 1;
  transform: none;
  transition: .3s .06s;
}
.fp-card:hover .fp-act:nth-child(3),
.fp-card:focus-within .fp-act:nth-child(3) {
  opacity: 1;
  transform: none;
  transition: .3s .12s;
}
.fp-act:hover {
  background: #111;
  color: #fff !important;
}
.fp-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.fp-badge {
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 9px;
  border-radius: 2px;
}
.fp-badge-sale {
  background: #e11d2a;
}
.fp-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fp-title {
  display: block;
  color: #111;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.3;
  transition: color .2s ease;
}
.fp-card:hover .fp-title { color: var(--ms-gold); }
.fp-meta {
  margin: 0 0 14px;
  color: #9aa0a8;
  font-size: 13px;
}
.fp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.fp-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: #111;
  letter-spacing: -0.02em;
}
.fp-heart {
  color: #111;
  font-size: 18px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.fp-heart:hover { color: var(--ms-gold); transform: scale(1.12); }
.fp-cart {
  display: block;
  text-align: center;
  background: #111;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 4px;
  text-decoration: none !important;
  margin-top: auto;
  transition: background .2s ease, color .2s ease;
}
.fp-cart:hover {
  background: var(--ms-gold);
  color: #111 !important;
}
@keyframes fp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (max-width: 991px) {
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .fp-grid { grid-template-columns: 1fr; }
  .fp-media { height: 200px; }
}
.fp-empty {
  grid-column: 1 / -1;
  background: #fff;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  color: #6b7280;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}
.ms-shop .fp-grid {
  margin-top: 4px;
}
