/*!****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/Spark/assets/styles/core.scss ***!
  \****************************************************************************************************************************/
:root {
  --orange:#FF6B35;
  --orange-dark:#E85D2A;
  --orange-light:#FF8F65;
  --orange-50:rgba(255,107,53,.05);
  --orange-100:rgba(255,107,53,.1);
  --orange-glow:rgba(255,107,53,.15);
  --accent:#F59E0B;
  --accent-dark:#D97706;
  --accent-light:#FBBF24;
  --accent-50:rgba(245,158,11,.05);
  --accent-100:rgba(245,158,11,.1);
  --accent-glow:rgba(245,158,11,.15);
  --navy:#0F172A;
  --slate-900:#1E293B;
  --slate-700:#334155;
  --slate-500:#64748B;
  --slate-400:#94A3B8;
  --slate-300:#CBD5E1;
  --slate-200:#E2E8F0;
  --slate-100:#F1F5F9;
  --slate-50:#F8FAFC;
  --white:#FFFFFF;
  --page-bg:#F5F5F7;
  --emerald: #059669;
  --emerald-light: #34D399;
  --emerald-50: rgba(5, 150, 105, .06);
  --rose: #DC2626;
  --rose-50: rgba(220, 38, 38, .06);
  --f-display:'Fraunces',serif;
  --f-serif:'DM Serif Display',Georgia,serif;
  --f-body:'DM Sans',system-ui,sans-serif;
  --f-mono:'DM Mono',monospace;
  --max-w:1200px;
  --r:14px;
  --r-sm:8px;
  --r-full:100px;
  --sh-sm: 0 1px 3px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .06);
  --sh-md: 0 4px 6px rgba(0, 0, 0, .04), 0 10px 24px rgba(0, 0, 0, .06);
  --sh-lg: 0 8px 16px rgba(0, 0, 0, .04), 0 20px 48px rgba(0, 0, 0, .08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--f-body);
  color: var(--navy);
  background: var(--page-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  overflow: visible;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  padding: 0;
  border-radius: 0;
}

button, select {
  cursor: pointer;
}

button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

a {
  color: inherit;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px;
  height: 70px;
  overflow: visible;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo-mark {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  overflow: visible;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-logo-mark path {
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes iskraBreathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
@keyframes iskraTwinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  45% {
    opacity: 0.25;
    transform: scale(0.5) rotate(-25deg);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .nav-logo-mark path:nth-of-type(1), .nav-logo-mark path:nth-of-type(2) {
    animation: iskraBreathe 3.8s ease-in-out infinite;
  }
  .nav-logo-mark path:nth-of-type(3) {
    animation: iskraTwinkle 2.4s ease-in-out infinite;
  }
  .nav-logo:hover .nav-logo-mark {
    transform: rotate(18deg) scale(1.12);
  }
  .nav-logo:hover .nav-logo-mark path:nth-of-type(3) {
    animation-duration: 0.8s;
  }
}
.nav-logo span {
  color: var(--orange);
}

/* Categories button in nav */
.nav-cat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-family: var(--f-body);
  transition: all 0.3s;
  outline: none;
  flex-shrink: 0;
}

.nav-cat-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-cat-btn.open {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.nav-cat-btn .cat-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.nav-cat-btn .cat-chev {
  width: 9px;
  height: 9px;
  transition: transform 0.3s;
  flex-shrink: 0;
  opacity: 0.5;
}

.nav-cat-btn.open .cat-chev {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-search {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.nav-search form {
  width: 100%;
}

.nav-search input {
  width: 100%;
  padding: 9px 14px 9px 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 13px;
  color: #fff;
  outline: none;
  font-family: var(--f-body);
  transition: background 0.2s, border 0.2s, box-shadow 0.2s;
}

.nav-search input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.nav-search input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.nav-search-icon {
  position: absolute;
  left: 12px;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.nav-search-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s;
  flex-shrink: 0;
}

.nav-search-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-search-close {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-left: 8px;
  flex-shrink: 0;
  padding: 0;
  font-family: var(--f-body);
}

.nav-search-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Live search dropdown */
.nav-search-dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(440px, 100vw - 48px);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 120;
}

.nav-search-dd.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.search-dd-list {
  max-height: min(400px, 58vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.search-dd-list::-webkit-scrollbar {
  width: 4px;
}

.search-dd-list::-webkit-scrollbar-track {
  background: transparent;
}

.search-dd-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.search-dd-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.search-dd-label {
  padding: 10px 12px 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--f-mono);
}

.search-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}

.search-dd-item.active {
  background: rgba(255, 255, 255, 0.08);
}

.search-dd-thumb {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f0ebe4;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.search-dd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-dd-info {
  flex: 1;
  min-width: 0;
}

.search-dd-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-dd-name mark {
  background: none;
  color: var(--orange-light);
}

.search-dd-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
}

.search-dd-meta .star {
  color: var(--accent-light);
}

.search-dd-prices {
  text-align: right;
  flex-shrink: 0;
}

.search-dd-price {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.search-dd-price-old {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
}

.search-dd-empty {
  padding: 26px 16px;
  text-align: center;
}

.search-dd-empty-ico {
  font-size: 26px;
  margin-bottom: 6px;
}

.search-dd-empty-t {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.search-dd-empty-s {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.search-dd-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.search-dd-count {
  font-family: var(--f-mono);
}

.search-dd-count b {
  color: var(--orange-light);
  font-weight: 500;
}

.search-dd-all {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  padding: 0;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-light);
  cursor: pointer;
  transition: color 0.2s;
}

.search-dd-all:hover {
  color: #fff;
}

.search-dd-all svg {
  transition: transform 0.2s;
}

.search-dd-all:hover svg {
  transform: translateX(2px);
}

.search-dd-cart {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 2px;
  padding: 0;
}

.search-dd-cart:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Search redirect toast */
.search-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 220;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 16px 10px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--f-body);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: min(420px, 100vw - 40px);
}

.search-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.search-toast .st-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-toast .st-txt {
  min-width: 0;
}

.search-toast .st-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto !important;
}

.nav-signin {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.25s;
  font-family: var(--f-body);
  border: 1px solid transparent;
  white-space: nowrap;
}

.nav-signin:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.06);
}

.nav-signin svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.5;
}

.nav-signin:hover svg {
  opacity: 0.8;
}

.nav-item-co {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--f-body);
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-item-btn:hover, .nav-item-co.open .nav-item-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.06);
}

.nav-chevron {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.25s;
}

.nav-item-btn:hover .nav-chevron, .nav-item-co.open .nav-chevron {
  opacity: 0.8;
}

.nav-item-co.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-mega-co {
  position: absolute;
  top: calc(100% + 12px);
  right: -20px;
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 200;
}

.nav-item-co.open .nav-mega-co {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mega-co::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 40px;
  width: 12px;
  height: 12px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

.nav-mega-glass {
  position: relative;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: 24px;
  overflow: hidden;
  min-width: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
}

.nav-mega-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 25%, transparent 50%, transparent 75%, rgba(255, 255, 255, 0.03) 100%);
}

.nav-mega-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.nav-mega-title {
  grid-column: 1/-1;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 107, 53, 0.75);
  margin-bottom: 14px;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}

.nav-mega-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.25;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.nav-mega-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateX(2px);
}

.nav-mega-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.18);
  transition: all 0.25s;
  color: rgba(255, 107, 53, 0.75);
}

.nav-mega-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav-mega-link:hover .nav-mega-icon {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.25);
  color: rgba(255, 107, 53, 0.9);
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.25s;
  outline: none;
  flex-shrink: 0;
}

.nav-cart:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-cart svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  line-height: 1;
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-mobile-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu panel */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}

.nav-mobile-panel.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile-link:hover, .nav-mobile-link:active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-mobile-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
}

.nav-mobile-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px 0;
}

@media (max-width: 960px) {
  .nav-signin span {
    display: none;
  }
  .nav-signin {
    padding: 7px 10px;
  }
  .nav-search {
    max-width: 200px;
  }
  .nav-actions {
    gap: 4px;
  }
}
.mega-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mega-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 99;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
  border-radius: 0 0 20px 20px;
}

.mega-menu.open {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mega-menu-inner {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.mega-menu-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 40px;
}

.mega-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mega-menu-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.mega-menu-viewall {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s;
}

.mega-menu-viewall:hover {
  opacity: 0.7;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  column-gap: 40px;
  max-height: 65vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  padding-right: 8px;
}

.mega-menu-grid::-webkit-scrollbar {
  width: 4px;
}

.mega-menu-grid::-webkit-scrollbar-track {
  background: transparent;
}

.mega-menu-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
}

.mega-menu-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding-right: 32px;
}

.mega-col:last-child {
  border: none;
  padding-right: 0;
}

.mega-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 6px;
  margin-bottom: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.mega-cat-head:hover {
  opacity: 0.8;
}

.mega-cat-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

.mega-sub-link {
  display: block;
  padding: 5px 0 5px 20px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--f-body);
  cursor: pointer;
}

.mega-sub-link:hover {
  color: var(--orange);
}

.mega-cat-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin: 14px 0;
}

@media (max-width: 768px) {
  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
  }
  .mega-col {
    border: none;
    padding-right: 0;
  }
  .nav-search {
    display: none;
  }
  nav.msearch-open .nav-search {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    margin: 0;
    z-index: 10;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 12px;
    animation: msearchIn 0.25s ease;
  }
  nav.msearch-open .nav-search-icon {
    left: 22px;
  }
  nav.msearch-open .nav-search-close {
    display: flex;
  }
  .nav-search-toggle {
    display: flex;
  }
  .nav-search-dd {
    position: fixed;
    top: 62px;
    left: 12px;
    right: 12px;
    width: auto;
  }
  @keyframes msearchIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  .nav-cat-btn {
    display: none;
  }
  .nav-item-co {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
  .nav-inner {
    gap: 8px;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-search-toggle {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
  }
  .nav-signin {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.06);
  }
  .nav-signin span {
    display: none;
  }
  .nav-signin svg {
    opacity: 1;
  }
  .nav-mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-mobile-toggle span {
    width: 16px;
    margin: 2px 0;
  }
  nav {
    height: 56px;
    padding: 0 16px;
  }
  .nav-mobile-panel {
    top: 56px;
  }
}
@media (max-width: 380px) {
  .nav-logo {
    font-size: 16px;
    gap: 7px;
  }
  .nav-logo-mark {
    width: 24px;
    height: 24px;
  }
  .nav-actions {
    gap: 4px;
  }
}
@media (max-width: 340px) {
  .nav-signin {
    display: none;
  }
}
@media (max-width: 480px) {
  .mega-menu-grid {
    grid-template-columns: 1fr;
  }
}
.collections-bar {
  background: var(--page-bg);
  padding: 16px 0;
}

.collections-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  height: 36px;
  overflow-x: auto;
  scrollbar-width: none;
}

.collections-inner::-webkit-scrollbar {
  display: none;
}

.col-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--slate-600);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s, background 0.3s, border-color 0.3s;
  font-family: var(--f-body);
  white-space: nowrap;
}

.col-pill:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.col-pill.col-active {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
}

.col-pill .col-emoji {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.2s;
}

.col-pill:hover .col-emoji {
  opacity: 0.85;
}

.col-pill.col-active .col-emoji svg * {
  fill: rgba(255, 255, 255, 0.9);
}

.browse-wrap {
  position: relative;
  margin-top: 24px;
  margin-bottom: -16px;
}

.browse-carousel {
  position: relative;
}

.browse-carousel::before, .browse-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52px;
  z-index: 3;
}

.browse-carousel::before {
  left: -52px;
}

.browse-carousel::after {
  right: -52px;
}

.browse-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 12px 0 28px;
  scroll-snap-type: x mandatory;
}

.browse-track::-webkit-scrollbar {
  display: none;
}

.browse-spacer {
  flex-shrink: 0;
  width: 1px;
}

.browse-card {
  width: 272px;
  height: 145px;
  border-radius: 20px;
  flex-shrink: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  scroll-snap-align: start;
}

.browse-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.browse-card:hover .browse-card-img {
  transform: scale(1.08);
}

.browse-card-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.browse-card:hover .browse-card-overlay {
  opacity: 0.75;
}

.browse-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);
}

.browse-card h3 {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

.browse-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-55%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s, background 0.2s, color 0.2s, box-shadow 0.35s;
  color: var(--slate-500);
  padding: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.browse-arrow::before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -20px;
  width: 70px;
}

.browse-arrow-l::before {
  right: -30px;
}

.browse-arrow-r::before {
  left: -30px;
}

.browse-arrow-r.show {
  pointer-events: auto;
}

.browse-wrap:hover .browse-arrow-r.show {
  opacity: 1;
}

.browse-arrow-l.show {
  pointer-events: auto;
}

.browse-wrap:hover .browse-arrow-l.show {
  opacity: 1;
}

.browse-arrow-r.show:hover, .browse-arrow-l.show:hover {
  opacity: 1;
}

.browse-arrow:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  transform: translateY(-55%) scale(1.1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.browse-arrow:active {
  transform: translateY(-55%) scale(0.95);
}

.browse-arrow-l {
  left: -48px;
}

.browse-arrow-r {
  right: -48px;
}

.browse-arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

@media (max-width: 768px) {
  .browse-arrow {
    display: none;
  }
}
a.col-pill {
  text-decoration: none;
}

a.browse-card {
  text-decoration: none;
  color: inherit;
}

.blog-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: auto;
}

.blog-footer .bf-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.blog-footer .bf-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.blog-footer-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.blog-footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-footer span {
  font-size: 0.62rem;
  color: var(--slate-400);
  line-height: 1.2;
}

.cstory-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: auto;
}

.cstory-footer .csf-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.cstory-footer .csf-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cstory-footer h4 {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}

.cstory-footer span {
  font-size: 0.62rem;
  color: var(--slate-400);
  line-height: 1.15;
}

.cstory-footer > div:not(.csf-icon) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

.hero-story-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: fit-content;
}

.hero-story-footer .mh-icon {
  width: 40px;
  height: 40px;
}

.hero-story-footer h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.hero-story-footer span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.hero-story-footer button {
  margin-left: 16px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, color 0.4s ease;
}

.hero-story-footer button:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* ===== FOOTER (old overrides removed) ===== */
/* ===== ICON BG COLORS ===== */
.bg-finance {
  background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
}

@media (max-width: 768px) {
  .hero-story-footer {
    flex-wrap: wrap;
    width: auto;
  }
  .hero-story-footer button {
    margin-left: 0;
    width: 100%;
  }
}
.cart-drawer-footer {
  flex-shrink: 0;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 2;
}

.footer {
  background: #0F172A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.1) 50%, transparent 90%);
  pointer-events: none;
  z-index: 2;
}

.footer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.08), transparent 70%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.8fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand-mark {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.footer-brand span {
  color: var(--orange);
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-action:hover {
  border-color: rgba(255, 107, 53, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.footer-action-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: rgba(255, 107, 53, 0.75);
  transition: all 0.3s;
}

.footer-action-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-action:hover .footer-action-icon {
  background: rgba(255, 107, 53, 0.22);
  border-color: rgba(255, 107, 53, 0.35);
  color: rgb(255, 107, 53);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.footer a {
  text-decoration: none;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0;
  transition: all 0.25s;
  position: relative;
  padding-left: 0;
}

.footer-col a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-col-toggle {
  display: none;
}

.footer-col-chevron {
  display: none;
}

@media (max-width: 540px) {
  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .footer-col h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 16px 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }
  .footer-col-chevron {
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.25);
    transition: transform 0.3s;
  }
  .footer-col.open .footer-col-chevron {
    transform: rotate(180deg);
    color: var(--orange);
  }
  .footer-col-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s;
    padding: 0;
  }
  .footer-col.open .footer-col-links {
    max-height: 500px;
    padding: 0 0 16px;
  }
}
.footer-mission h4 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.footer-mission p {
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-mission strong {
  color: var(--orange);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: rgba(255, 107, 53, 0.75);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-social a:hover {
  background: rgba(255, 107, 53, 0.22);
  border-color: rgba(255, 107, 53, 0.35);
  color: rgb(255, 107, 53);
  transform: translateY(-2px);
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .footer-newsletter {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.footer-newsletter-text {
  flex: 1;
}

.footer-newsletter-text h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-newsletter-text p {
  font-size: 0.78rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.footer-newsletter-input {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.82rem;
  width: 260px;
  outline: none;
  font-family: var(--f-body);
  transition: border-color 0.3s;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter-input:focus {
  border-color: rgba(255, 107, 53, 0.5);
}

.footer-newsletter-btn {
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  transition: all 0.3s;
}

.footer-newsletter-btn:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.72rem;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 640px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom-left, .footer-bottom-center, .footer-bottom-right {
    width: 100%;
    justify-content: center;
  }
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.35;
  max-width: 360px;
}

.footer-bottom-left a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer-bottom-left a:hover {
  color: var(--orange);
}

.footer-bottom-flag {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.footer-bottom-center {
  display: flex;
  gap: 16px;
}

.footer-bottom-center a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-bottom-center a:hover {
  color: var(--orange);
}

.footer-bottom-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-payment {
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.footer-totop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-totop:hover {
  background: rgba(255, 107, 53, 0.9);
  color: #fff;
  border-color: rgba(255, 107, 53, 0.4);
}

.footer-totop.vis {
  display: flex;
}

@media (max-width: 1024px) {
  .mh-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .arrivals-grid, .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .arrivals-grid > :nth-child(3), .stories-grid > :nth-child(3) {
    display: none;
  }
}
@media (max-width: 768px) {
  .slider-track {
    height: 460px;
  }
  .slide-dark .slide-glass {
    padding: 24px 20px;
    left: 16px;
    bottom: 16px;
    right: 16px;
    max-width: none;
  }
  .slide-dark h2, .slide-overlay h2 {
    font-size: 20px;
  }
  .slide-overlay {
    left: 16px;
    bottom: 16px;
    right: 16px;
    max-width: none;
    padding: 22px 20px;
  }
  .slider-glow-left, .slider-glow-right, .slider-glow-top {
    display: none;
  }
  .slider-arrow {
    display: none;
  }
  .top10-grid {
    grid-template-columns: 1fr;
  }
  .mh-grid {
    grid-template-columns: 1fr;
  }
  .arrivals-grid, .stories-grid {
    grid-template-columns: 1fr;
  }
  .arrivals-grid > :nth-child(3), .stories-grid > :nth-child(3) {
    display: flex;
  }
  .hero-story h2 {
    font-size: 22px;
  }
  .hero-story-footer {
    flex-wrap: wrap;
    width: auto;
  }
  .hero-story-footer button {
    margin-left: 0;
    width: 100%;
  }
  .slide-product-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .slide-product-info h4 {
    font-size: 9.5px;
  }
  .slide-product-info span {
    font-size: 8px;
  }
  .slide-product-row {
    gap: 8px;
  }
  .slide p {
    display: none;
  }
}
@media (max-width: 540px) {
  .pcard {
    border-radius: 18px;
  }
  .pcard-inner {
    border-radius: 17px;
  }
  .pcard-inner::before {
    display: none;
  }
  .pcard-top {
    margin: 6px 6px 0;
    border-radius: 13px;
  }
  .pcard-badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.56rem;
  }
  .pcard-cart {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.7rem;
  }
  .pcard-body {
    padding: 10px 12px 14px;
  }
  .pcard-cat {
    font-size: 0.54rem;
    padding: 2px 7px;
    margin-bottom: 6px;
  }
  .pcard-name {
    font-size: 0.88rem;
    margin-bottom: 8px;
  }
  .pcard-foot {
    padding-top: 8px;
  }
  .pcard-price {
    font-size: 0.92rem;
  }
  .pcard-price-old {
    font-size: 0.66rem;
  }
  .pcard-stars {
    font-size: 0.65rem;
  }
  .pcard-reviews {
    font-size: 0.56rem;
  }
}
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 88vw);
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.cart-drawer-title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer-count {
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(251, 191, 36, 0.12);
  color: #FBBF24;
  font-size: 0.7rem;
  font-weight: 700;
}

.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s;
}

.cart-drawer-close svg {
  width: 16px;
  height: 16px;
}

.cart-drawer-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  position: relative;
  z-index: 2;
}

.cart-drawer-body::-webkit-scrollbar {
  width: 4px;
}

.cart-drawer-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

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

.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 70%, transparent 98%);
  -webkit-mask-image: linear-gradient(90deg, #000 70%, transparent 98%);
}

.cart-item-cat {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.3);
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
}

.cart-item-qty button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cart-item-qty span {
  width: 28px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.cart-item-remove {
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 600;
  transition: color 0.2s;
  align-self: flex-start;
  margin-top: 2px;
}

.cart-item-remove:hover {
  color: #DC2626;
}

.cart-drawer-footer {
  flex-shrink: 0;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 2;
}

.cart-drawer-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cart-drawer-subtotal-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.cart-drawer-subtotal-val {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: #fff;
}

.cart-drawer-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  line-height: 1.2;
  transition: all 0.25s;
}

.cart-drawer-checkout:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.35);
}

.cart-drawer-continue {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--f-body);
}

.cart-drawer-continue:hover {
  color: rgba(255, 255, 255, 0.7);
}

.cart-drawer-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.3);
}

.cart-drawer-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cart-drawer-empty h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.cart-drawer-empty p {
  font-size: 0.82rem;
}

.footer {
  background: #0F172A;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.1) 50%, transparent 90%);
  pointer-events: none;
  z-index: 2;
}

.footer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.08), transparent 70%);
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.8fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 540px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand-mark {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.footer-brand span {
  color: var(--orange);
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-action:hover {
  border-color: rgba(255, 107, 53, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.footer-action-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: rgba(255, 107, 53, 0.75);
  transition: all 0.3s;
}

.footer-action-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-action:hover .footer-action-icon {
  background: rgba(255, 107, 53, 0.22);
  border-color: rgba(255, 107, 53, 0.35);
  color: rgb(255, 107, 53);
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.footer a {
  text-decoration: none;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0;
  transition: all 0.25s;
  position: relative;
  padding-left: 0;
}

.footer-col a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-col-toggle {
  display: none;
}

.footer-col-chevron {
  display: none;
}

@media (max-width: 540px) {
  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .footer-col h4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 16px 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
  }
  .footer-col-chevron {
    display: block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.25);
    transition: transform 0.3s;
  }
  .footer-col.open .footer-col-chevron {
    transform: rotate(180deg);
    color: var(--orange);
  }
  .footer-col-links {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), padding 0.35s;
    padding: 0;
  }
  .footer-col.open .footer-col-links {
    max-height: 500px;
    padding: 0 0 16px;
  }
}
.footer-mission h4 {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.footer-mission p {
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-mission strong {
  color: var(--orange);
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: rgba(255, 107, 53, 0.75);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-social a:hover {
  background: rgba(255, 107, 53, 0.22);
  border-color: rgba(255, 107, 53, 0.35);
  color: rgb(255, 107, 53);
  transform: translateY(-2px);
}

.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 768px) {
  .footer-newsletter {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.footer-newsletter-text {
  flex: 1;
}

.footer-newsletter-text h4 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.footer-newsletter-text p {
  font-size: 0.78rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.footer-newsletter-input {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.82rem;
  width: 260px;
  outline: none;
  font-family: var(--f-body);
  transition: border-color 0.3s;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter-input:focus {
  border-color: rgba(255, 107, 53, 0.5);
}

.footer-newsletter-btn {
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--f-body);
  transition: all 0.3s;
}

.footer-newsletter-btn:hover {
  background: #fff;
  color: var(--orange);
  transform: translateY(-1px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.72rem;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 640px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .footer-bottom-left, .footer-bottom-center, .footer-bottom-right {
    width: 100%;
    justify-content: center;
  }
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.35;
  max-width: 360px;
}

.footer-bottom-left a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer-bottom-left a:hover {
  color: var(--orange);
}

.footer-bottom-flag {
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.footer-bottom-center {
  display: flex;
  gap: 16px;
}

.footer-bottom-center a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-bottom-center a:hover {
  color: var(--orange);
}

.footer-bottom-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-payment {
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.footer-totop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-totop:hover {
  background: rgba(255, 107, 53, 0.9);
  color: #fff;
  border-color: rgba(255, 107, 53, 0.4);
}

.footer-totop.vis {
  display: flex;
}

/*# sourceMappingURL=core.css.map*/