.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex !important;
  }
}

/* ═══════════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════════ */
.hamburger-btn {
 flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: var(--gold-500);
    border: 1px solid var(--gold-500);
    border-radius: 3px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 77777;
}
.hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--light-100);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease,
    width 0.2s ease;
  transform-origin: center;
  pointer-events: none;
}
.hamburger-btn.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger-btn.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   MOBILE MENU DRAWER
═══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 88vw;
  height: 100vh;
  height: 100dvh;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
  background: var(--light-100);
}
.mobile-menu--open {
  transform: translateX(0);
  visibility: visible;
}

/* ═══════════════════════════════════════════
   MOBILE OVERLAY
═══════════════════════════════════════════ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay--visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Menu Head ── */
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  flex-shrink: 0;
}
.mobile-menu__logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}
.mobile-menu__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-500);
  border: var(--light-100);
  color: var(--light-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu__close:hover {
  background: var(--light-100);
  color: var(--gold-500);
  border: var(--gold-500);
}


/* ── Menu Body ── */
.mobile-menu__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 0 20px;
  scrollbar-width: thin;
  scrollbar-color: #e02020 #f5f5f5;
}
.mobile-menu__body::-webkit-scrollbar {
  width: 3px;
}
.mobile-menu__body::-webkit-scrollbar-thumb {
  background: #e02020;
  border-radius: 2px;
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2c2c2c;
  text-decoration: none;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition:
    background 0.14s,
    color 0.14s,
    border-color 0.14s;
  box-sizing: border-box;
}
.mobile-nav__link svg {
  flex-shrink: 0;
  color: #999;
  transition: color 0.14s;
}
.mobile-nav__link:hover,
.mobile-nav__link.is-open {
  background: #fff5f5;
  color: #e02020;
  border-left-color: #e02020;
}
.mobile-nav__link:hover svg,
.mobile-nav__link.is-open svg {
  color: #e02020;
}
.mobile-nav__link--home {
  color: #e02020;
  border-left-color: #e02020;
}
.mobile-nav__link--home svg {
  color: #e02020;
}
.mobile-nav__link--accordion {
  justify-content: flex-start;
}

.accordion-chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #999;
}
.accordion-chevron--open {
  transform: rotate(180deg);
  color: #e02020;
}

/* ── Accordion wrapper ── */
.mobile-nav__accordion {
  display: flex;
  flex-direction: column;
}

/* ── Main sub-panel (L1 accordion) ── */
.mobile-nav__sub-panel {
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  background: #fafafa;
}

/* ── Sub-accordion rows (each brand/category inside panel) ── */
.mobile-nav__sub-accordion {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav__sub-header {
  display: flex;
  align-items: center;
  min-height: 52px;
  background: #fafafa;
}

/* FIX: parent link takes all space, toggle is a separate btn on the right */
.mobile-nav__sub-link--parent {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 10px 8px 10px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  transition:
    background 0.12s,
    color 0.12s;
  min-width: 0;
}
.mobile-nav__sub-link--parent:hover {
  background: #fff0f0;
  color: #e02020;
}
.mobile-nav__sub-name {
  flex: 1;
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-nav__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-left: 1px solid #f0f0f0;
  cursor: pointer;
  color: #aaa;
  flex-shrink: 0;
  transition:
    background 0.12s,
    color 0.12s;
}
.mobile-nav__sub-toggle svg {
  transition: transform 0.25s ease;
}
.mobile-nav__sub-toggle.is-open svg {
  transform: rotate(180deg);
}
.mobile-nav__sub-toggle.is-open {
  color: #e02020;
  background: #fff5f5;
}
.mobile-nav__sub-toggle:hover {
  background: #fff0f0;
  color: #e02020;
}

.mobile-nav__sub-arrow {
  color: #ccc;
  flex-shrink: 0;
  margin-right: 12px;
}

/* ── Sub-children (L2 — models/subcategories) ── */
.mobile-nav__sub-children {
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: #f5f5f5;
}

.mobile-nav__child-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px 11px 36px;
  font-family: "Barlow", sans-serif;
  font-size: 12.5px;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #ececec;
  transition:
    background 0.12s,
    color 0.12s;
}
.mobile-nav__child-link:hover {
  background: #fff0f0;
  color: #e02020;
}
.mobile-nav__child-link svg {
  flex-shrink: 0;
  color: #ccc;
}
.mobile-nav__child-link:hover svg {
  color: #e02020;
}
.mobile-nav__child-link:last-of-type {
  border-bottom: none;
}

.mobile-nav__child-view-all {
  display: block;
  padding: 10px 20px 10px 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #e02020;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: #fff5f5;
  border-top: 1px solid #fdd;
  transition: background 0.12s;
}
.mobile-nav__child-view-all:hover {
  background: #ffe0e0;
}

/* Legacy sub-link (kept for non-accordion items) */
.mobile-nav__sub-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 28px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition:
    background 0.12s,
    color 0.12s;
}
.mobile-nav__sub-link:last-of-type {
  border-bottom: none;
}
.mobile-nav__sub-link:hover {
  background: #fff0f0;
  color: #e02020;
}
.mobile-nav__sub-link svg {
  margin-left: auto;
  color: #ccc;
  flex-shrink: 0;
}

.mobile-nav__sub-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
  background: #f0f0f0;
  flex-shrink: 0;
}

.mobile-nav__loading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: #aaa;
}
.mobile-nav__spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #eee;
  border-top-color: #e02020;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.mobile-nav__view-all {
  display: block;
  padding: 11px 20px 11px 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #e02020;
  letter-spacing: 0.05em;
  text-decoration: none;
  background: #fff5f5;
  border-top: 1px solid #fdd;
  transition: background 0.12s;
}
.mobile-nav__view-all:hover {
  background: #ffe0e0;
}

/* ── Mobile Auth ── */
.mobile-menu__auth {
  padding: 16px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-auth__user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 14px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 4px;
}
.mobile-auth__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e02020;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-auth__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mobile-auth__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.mobile-auth__email {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobile-auth__dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1.5px solid #e02020;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #e02020;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s;
}
.mobile-auth__dashboard:hover {
  background: #fff5f5;
}
.mobile-auth__logout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #1e1e1e;
  border: none;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-auth__logout:hover {
  background: #e02020;
}
.mobile-auth__register {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  background: #e02020;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.15s;
}
.mobile-auth__register:hover {
  background: #c51a1a;
}
.mobile-auth__login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border: 1.5px solid #1e1e1e;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #1e1e1e;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.15s,
    color 0.15s;
}
.mobile-auth__login:hover {
  background: #1e1e1e;
  color: #fff;
}

/* ── Mobile Socials ── */
.mobile-menu__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 16px 8px;
  border-top: 1px solid #f0f0f0;
}
.mobile-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-100);
  color: var(--gold-500);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.mobile-social-btn:hover {
  background: #e02020;
  color: #fff;
}

/* ═══════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════ */
.header-wrapper {
  width: 100%;
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1000;
}
.topbar-strip {
  background: #1e1e1e;
  height: 36px;
}
.strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strip-socials {
  display: flex;
  align-items: center;
  gap: 2px;
}
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 27px;
  color: var(--gold-500);
  text-decoration: none;
  transition:
    color 0.18s,
    background 0.18s;
}
.social-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.strip-account {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.02em;
  position: relative;
}
.lock-icon {
  color: #e02020;
  display: flex;
  align-items: center;
}
.strip-link {
  color: #ccc;
  text-decoration: none;
  transition: color 0.15s;
}
.strip-link:hover {
  color: #fff;
}
.strip-sep {
  color: var(--gold-500);
  font-size: 17px;
  font-weight: 700;
}
.login-trigger-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

/* LOGIN POPUP */
.login-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  animation: loginPopIn 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes loginPopIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.login-form {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-form__header {
  text-align: center;
  margin-bottom: 8px;
}
.login-form__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold-500);
  border-radius: 50%;
  margin-bottom: 10px;
  color: var(--light-100);
}
.login-form__header h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.login-form__sub {
  margin: 0;
  font-size: 12px;
  color: #888;
  font-family: "Barlow", sans-serif;
}
.login-error {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff0f0;
  border: 1px solid #ffd0d0;
  color: #cc3333;
  font-size: 11.5px;
  padding: 8px 10px;
  border-radius: 7px;
  font-family: "Barlow", sans-serif;
}
.login-field {
  margin-bottom: 2px;
}
.login-field__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: "Barlow Condensed", sans-serif;
}
.login-field__wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.login-field__icon {
  position: absolute;
  left: 10px;
  color: #aaa;
  pointer-events: none;
  flex-shrink: 0;
}
.login-field__input {
  width: 100%;
  padding: 9px 36px 9px 32px;
  border: 1.5px solid #e5e5e5;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Barlow", sans-serif;
  color: #222;
  background: #fafafa;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
  outline: none;
}
.login-field__input:focus {
  border-color: #b8962e;
  box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.1);
}
.login-field__input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.login-field__input::placeholder {
  color: #bbb;
}
.login-field__eye {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.login-field__eye:hover {
  color: #555;
}
.login-form__forgot {
  text-align: right;
  margin-top: -4px;
}
.login-forgot-link {
  font-size: 11.5px;
  color: var(--gold-500);
  text-decoration: none;
  font-family: "Barlow", sans-serif;
}
.login-forgot-link:hover {
  text-decoration: underline;
  color: var(--dark-900);
}
.login-submit-btn {
  width: 100%;
  padding: 10px 16px;
  background: #1a1a1a;
  color: var(--light-100);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition:
    background 0.2s,
    transform 0.15s;
}
.login-submit-btn:hover:not(:disabled) {
  background: var(--gold-500);
  transform: translateY(-1px);
}
.login-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.login-form__footer {
  text-align: center;
  margin-top: 4px;
  font-size: 12px;
  color: #888;
  font-family: "Barlow", sans-serif;
}
.login-signup-link {
  color: var(--gold-500);
  font-weight: 600;
  text-decoration: none;
}
.login-signup-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}
.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* PROFILE */
.profile-wrapper {
  position: relative;
}
.profile-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.profile-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e02020;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background 0.15s;
}
.profile-icon-btn:hover .profile-avatar {
  background: #c51a1a;
}
.profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  z-index: 9999;
  animation: fadeInDown 0.2s ease;
  overflow: hidden;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.profile-dropdown__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fafafa;
}
.profile-dropdown__avatar-lg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e02020;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-dropdown__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.profile-dropdown__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-dropdown__email {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-dropdown__divider {
  height: 1px;
  background: #f0f0f0;
}
.profile-tabs {
  display: flex;
  padding: 8px 12px 0;
}
.profile-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 4px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #888;
  transition:
    color 0.15s,
    border-color 0.15s;
  white-space: nowrap;
}
.profile-tab-btn:hover {
  color: #e02020;
}
.profile-tab-btn.is-active {
  color: #e02020;
  border-bottom-color: #e02020;
}
.profile-tab-icon {
  display: flex;
  align-items: center;
  color: currentColor;
}
.profile-tab-content {
  padding: 14px 16px;
  min-height: 120px;
}
.tab-pane {
  display: flex;
  flex-direction: column;
}
.profile-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
}
.profile-field:last-child {
  border-bottom: none;
}
.profile-field__label {
  color: #999;
  font-size: 12px;
}
.profile-field__value {
  color: #222;
  font-weight: 500;
  text-align: right;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.orders-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #aaa;
}
.orders-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #eee;
  border-top-color: #e02020;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.orders-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  color: #bbb;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
}
.orders-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-item {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  padding: 10px 12px;
}
.order-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.order-item__id {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}
.order-item__badge {
  font-family: "Barlow", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 12px;
  background: #f0f0f0;
  color: #666;
}
.badge--delivered {
  background: #e8f8ef;
  color: #2e7d52;
}
.badge--pending {
  background: #fff8e8;
  color: #a56a00;
}
.badge--cancelled {
  background: #fdecea;
  color: #c0392b;
}
.badge--shipped {
  background: #e8f0fd;
  color: #1a56c7;
}
.order-item__meta {
  display: flex;
  justify-content: space-between;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: #999;
}
.order-item__total {
  font-weight: 600;
  color: #e02020;
}
.profile-logout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #c0392b;
  transition: background 0.14s;
}
.profile-logout-btn:hover {
  background: #fff5f5;
}

/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 2px solid #eee;
  position: relative;
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: nowrap;
}
.nav-logo {
  flex-shrink: 0;
  margin-right: 12px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ALL BRANDS DROPDOWN */
.categories-wrapper {
  position: relative;
  flex-shrink: 0;
  align-items: center;
}
.categories-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  background: #e02020;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
  transition: background 0.15s;
}
.categories-btn:hover,
.categories-btn.is-open {
  background: #c51a1a;
}
.categories-grid-icon {
  display: flex;
  align-items: center;
  color: #fff;
}
.cat-chevron {
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.2s;
}
.categories-btn.is-open .cat-chevron {
  transform: rotate(180deg);
}
.cat-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 820px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  z-index: 9999;
  animation: dropIn 0.18s ease;
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cat-dropdown__layout {
  display: flex;
  max-height: 480px;
  border: 2px solid var(--gold-500);
}
.cat-list {
  width: 220px;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  border-right: 1px solid #b8962e;
  overflow-y: auto;
  max-height: 480px;
  background: #fff;
}
.cat-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition:
    background 0.14s,
    border-color 0.14s,
    color 0.14s;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #2c2c2c;
}
.cat-list__item:hover,
.cat-list__item.is-active {
  background: #fff5f5;
  color: #e02020;
  border-left-color: #e02020;
}
.cat-list__arrow {
  color: #bbb;
  flex-shrink: 0;
}
.cat-list__item.is-active .cat-list__arrow,
.cat-list__item:hover .cat-list__arrow {
  color: #e02020;
}
.cat-list__name {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}
.cat-list__more {
  color: #b8962e;
  font-size: 12.5px;
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
}
.cat-loading {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-loading__spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #eee;
  border-top-color: #e02020;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.cat-panel {
  flex: 1;
  min-width: 0;
  padding: 20px 24px;
  background: #fff;
}
.cat-panel--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-panel__hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.cat-panel__content {
  display: flex;
  gap: 24px;
  height: 100%;
}
.cat-panel__subs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-content: flex-start;
}
.cat-panel__subs--empty {
  align-items: center;
  justify-content: center;
}
.cat-panel__brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}
.cat-panel__brand-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cat-panel__brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  padding: 2px;
}
.cat-panel__brand-text {
  display: flex;
  flex-direction: column;
}
.cat-panel__brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.cat-panel__brand-count {
  font-family: "Barlow", sans-serif;
  font-size: 11px;
  color: #999;
  margin-top: 3px;
}
.cat-panel__models-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}
.cat-panel__model-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 20px;
  font-family: "Barlow", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s,
    transform 0.12s;
  animation: chipFadeIn 0.2s ease both;
}
@keyframes chipFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cat-panel__model-chip svg {
  color: #ccc;
  flex-shrink: 0;
  transition: color 0.15s;
}
.cat-panel__model-chip:hover {
  background: #fff0f0;
  color: #e02020;
  border-color: #f0c0c0;
  transform: translateY(-1px);
}
.cat-panel__model-chip:hover svg {
  color: #e02020;
}
.cat-panel__view-all-wrap {
  margin-top: 4px;
}
.cat-panel__view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px 9px 14px;
  background: #e02020;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  transition:
    background 0.18s,
    transform 0.14s,
    box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(224, 32, 32, 0.25);
}
.cat-panel__view-all-btn:hover {
  background: #c51a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224, 32, 32, 0.35);
}
.cat-panel__view-all-btn:hover svg {
  transform: translateX(3px);
}
.cat-panel__view-all-btn svg {
  flex-shrink: 0;
  transition: transform 0.18s;
}
.cat-panel__view-all-text {
  line-height: 1;
}
.cat-panel__view-all-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}
.cat-panel__empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ccc;
}
.cat-panel__empty-msg {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #bbb;
  margin: 0;
  letter-spacing: 0.04em;
}
.cat-panel__empty-sub {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  color: #ccc;
}
.cat-panel__promo {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px 12px;
}
.cat-panel__promo-img {
  width: 100%;
  object-fit: contain;
  margin-bottom: 12px;
}

/* MAIN NAV (desktop) */
.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  gap: 0;
}
.nav-item-dropdown {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 72px;
  padding: 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #2c2c2c;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.16s;
}
.nav-link:hover {
  color: #e02020;
}
.nav-link--active {
  background: #e02020;
  color: #fff !important;
  border-radius: 3px;
  height: 36px;
  padding: 0 16px;
}
.nav-link--active:hover {
  background: #c51a1a;
}
.nav-link--shop-open {
  color: #e02020;
}
.chevron {
  opacity: 0.6;
  margin-top: 1px;
  transition: transform 0.22s;
  fill: var(--gold-500);
}
.chevron--up {
  transform: rotate(180deg);
  opacity: 1;
}

/* NAV ACTIONS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid #e02020;
  color: #333;
  cursor: pointer;
  position: relative;
  transition:
    background 0.15s,
    color 0.15s;
}
.icon-btn:hover {
  background: #fff5f5;
  color: #e02020;
}
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #e02020;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* SHOP MEGA */
.shop-wrapper {
  position: static;
}
.shop-mega {
  position: fixed;
  top: 121px;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 2px solid #e02020;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
  z-index: 9998;
}
.shop-mega-enter-active {
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-mega-leave-active {
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}
.shop-mega-enter-from,
.shop-mega-leave-to {
  opacity: 0;
  transform: translateY(-10px);
}
.shop-mega-enter-to,
.shop-mega-leave-from {
  opacity: 1;
  transform: translateY(0);
}
.shop-mega__scroll-track {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 28px 32px 20px;
  scrollbar-width: thin;
  scrollbar-color: #e02020 #f0f0f0;
}
.shop-mega__scroll-track::-webkit-scrollbar {
  height: 4px;
}
.shop-mega__scroll-track::-webkit-scrollbar-thumb {
  background: #e02020;
  border-radius: 2px;
}
.shop-mega__columns {
  display: flex;
  flex-direction: row;
  width: max-content;
  align-items: flex-start;
}
.shop-col {
  width: 220px;
  flex-shrink: 0;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid #efefef;
  display: flex;
  flex-direction: column;
}
.shop-col:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.shop-col__img-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 13px;
}
.shop-col__img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.shop-col__img-wrap:hover .shop-col__img {
  transform: scale(1.06);
}
.shop-col__img-placeholder {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  background: #f7f7f7;
}
.shop-col__cat-name {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.15s;
}
.shop-col__cat-name:hover {
  color: #e02020;
}
.shop-col__sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.shop-col__sub-link {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 13.5px;
  color: #888;
  text-decoration: none;
  padding: 5px 0;
  line-height: 1.4;
  transition:
    color 0.14s,
    padding-left 0.14s;
}
.shop-col__sub-link:hover {
  color: #e02020;
  padding-left: 5px;
}
.shop-mega__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 32px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #888;
}
.shop-mega__spinner {
  width: 22px;
  height: 22px;
  border: 2px solid #eee;
  border-top-color: #e02020;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.shop-mega__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 48px 32px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #bbb;
}
.shop-col__view-all-sub-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 4px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #e02020;
  text-decoration: none;
  background: #fff5f5;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.shop-col__view-all-sub-btn:hover {
  background: #e02020;
  color: #fff;
  border-color: #e02020;
}

/* SEARCH BAR */
.search-bar-row {
  border-top: 1px solid #e8e8e8;
  background: #fff;
  padding: 10px 20px 12px;
  position: relative;
}
.search-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 44px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.search-category-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}
.search-category-select {
  appearance: none;
  -webkit-appearance: none;
  height: 100%;
  padding: 0 32px 0 14px;
  border: none;
  outline: none;
  font-family: "Barlow", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}
.select-chevron {
  position: absolute;
  right: 10px;
  color: #888;
  pointer-events: none;
}
.search-divider {
  width: 1px;
  height: 24px;
  background: #ddd;
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  height: 100%;
  padding: 0 14px;
  border: none;
  outline: none;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: #333;
  background: transparent;
  min-width: 0;
}
.search-input::placeholder {
  color: #aaa;
}
.search-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  background: #e02020;
  border: none;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.search-submit-btn:hover {
  background: #c51a1a;
}
.search-slide-enter-active,
.search-slide-leave-active {
  transition:
    max-height 0.28s ease,
    opacity 0.22s ease,
    padding 0.28s ease;
  overflow: hidden;
}
.search-slide-enter-from,
.search-slide-leave-to {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.search-slide-enter-to,
.search-slide-leave-from {
  max-height: 80px;
  opacity: 1;
}

/* SEARCH SUGGESTIONS */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 295px;
  right: 160px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-height: 300px;
  overflow-y: auto;
}
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.12s;
  cursor: pointer;
}
.suggestion-item:last-child {
  border-bottom: none;
}
.suggestion-item:hover,
.suggestion-item.is-active {
  background: #fff5f5;
}
.suggestion-img-wrap {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suggestion-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.suggestion-name {
  flex: 1;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #333;
}
.suggestion-arrow {
  color: #ccc;
  flex-shrink: 0;
}

/* CART */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 8997;
  cursor: pointer;
  backdrop-filter: blur(1px);
}
.cart-wrapper {
  position: relative;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 390px;
  height: 100vh;
  background: var(--light-100);
  box-shadow: -12px 0 60px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-slide-enter-active {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-slide-leave-active {
  transition: transform 0.22s ease;
}
.cart-slide-enter-from,
.cart-slide-leave-to {
  transform: translateX(100%);
}
.cart-slide-enter-to,
.cart-slide-leave-from {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #1e1e1e;
  border-bottom: 3px solid #e02020;
  flex-shrink: 0;
}
.cart-drawer__title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  text-transform: uppercase;
}
.cart-drawer__count {
  font-size: 13px;
  font-weight: 500;
  color: #e02020;
}
.cart-drawer__close {
  background: var(--gold-500);
  border: none;
  color: var(--light-100);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.cart-drawer__close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.cart-drawer__loading {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #aaa;
}
.cart-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #f0f0f0;
  border-top-color: #e02020;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 28px;
  text-align: center;
}
.cart-empty-icon {
  width: 84px;
  height: 84px;
  background: #f8f8f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  margin-bottom: 6px;
}
.cart-empty-title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cart-empty-sub {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #999;
}
.cart-shop-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 26px;
  background: #e02020;
  color: #fff;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.15s;
}
.cart-shop-link:hover {
  background: #c51a1a;
}
.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e02020 #f5f5f5;
}
.cart-drawer__body::-webkit-scrollbar {
  width: 4px;
}
.cart-drawer__body::-webkit-scrollbar-thumb {
  background: #e02020;
  border-radius: 2px;
}
.cart-items-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 20px;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.1s;
}
.cart-item:hover {
  background: #fafafa;
}
.cart-item__img-wrap {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f7f7;
}
.cart-item__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cart-item__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.cart-item__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cart-item__name {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}
.cart-item__meta {
  margin: 0;
  font-family: "Barlow", sans-serif;
  font-size: 11.5px;
  color: #999;
}
.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.qty-btn {
  width: 27px;
  height: 27px;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.12s,
    color 0.12s;
}
.qty-btn:hover:not(:disabled) {
  background: #e02020;
  color: #fff;
}
.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.qty-val {
  min-width: 30px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #222;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  line-height: 27px;
}
.cart-item__price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #e02020;
}
.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition:
    background 0.12s,
    color 0.12s;
  align-self: flex-start;
  margin-top: 2px;
}
.cart-item__remove:hover {
  background: #fdecea;
  color: #e02020;
}
.cart-item__remove:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cart-drawer__footer {
  border-top: 1px solid #ebebeb;
  padding: 16px 20px 20px;
  flex-shrink: 0;
  background: #fff;
}
.cart-summary {
  margin-bottom: 14px;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: #666;
  padding: 4px 0;
}
.cart-summary__row--shipping {
  font-size: 12px;
}
.cart-summary__val {
  font-weight: 600;
  color: #333;
}
.cart-summary__shipping-note {
  font-size: 11.5px;
  color: #999;
  font-style: italic;
}
.cart-summary__divider {
  height: 1px;
  background: #ebebeb;
  margin: 8px 0;
}
.cart-summary__row--total {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
}
.cart-summary__total {
  color: #e02020;
  font-size: 18px;
  font-weight: 800;
}
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  background: #e02020;
  color: #fff;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cart-checkout-btn:hover {
  background: #c51a1a;
}

/* ═══════════════════════════════════════════
   TABLET (≤ 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .navbar-inner {
    gap: 14px;
    padding: 6px 16px;
  }
  .nav-logo {
    margin-right: 0;
  }
  .nav-link {
    padding: 0 9px;
    font-size: 12.5px;
  }
  .categories-btn {
    font-size: 12px;
    padding: 0 10px;
    gap: 5px;
  }
  .cat-dropdown {
    width: min(820px, calc(100vw - 32px));
  }
}

/* ═══════════════════════════════════════════
   MOBILE (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .topbar-strip {
    height: 34px;
  }
  .strip-inner {
    padding: 0 12px;
  }
  .social-btn {
    width: 26px;
  }

  .navbar-inner {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 12px;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    flex-shrink: 0;
  }
  .logo-img {
    height: 34px;
  }
  .nav-actions {
    margin-left: auto;
    gap: 6px;
  }
  .icon-btn {
    width: 34px;
    height: 34px;
  }
  .icon-btn svg {
    width: 16px;
    height: 16px;
  }
  .cart-drawer {
    width: 100vw;
  }

  .search-bar-row {
    padding: 8px 12px 10px;
  }
  .search-bar-inner {
    height: 40px;
  }
  .search-category-select {
    font-size: 12px;
    padding: 0 22px 0 10px;
    max-width: 85px;
  }
  .search-input {
    font-size: 13px;
    padding: 0 10px;
  }
  .search-submit-btn {
    width: 42px;
  }
  .search-suggestions {
    left: 12px;
    right: 12px;
  }

  .login-popup {
    width: calc(100vw - 24px);
    right: -12px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .profile-dropdown {
    width: calc(100vw - 24px);
    right: -12px;
  }

  /* Mobile menu full width on very small screens */
  .mobile-menu {
    width: 300px;
  }
}

/* ═══════════════════════════════════════════
   SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .topbar-strip {
    height: 30px;
  }
  .strip-account {
    font-size: 11.5px;
  }
  .logo-img {
    height: 28px;
  }
  .icon-btn {
    width: 30px;
    height: 30px;
  }
  .hamburger-btn {
    width: 30px;
    height: 30px;
  }
  .hamburger-bar {
    width: 16px;
  }
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
  }
  .mobile-nav__link {
    padding: 12px 16px;
    font-size: 13px;
  }
  .mobile-nav__sub-link--parent {
    padding: 10px 6px 10px 16px;
  }
  .mobile-nav__child-link {
    padding: 10px 16px 10px 28px;
  }
  .mobile-menu__auth {
    padding: 12px;
  }
}

/* ═══════════════════════════════════════════
   TINY (≤ 380px)
═══════════════════════════════════════════ */
@media (max-width: 380px) {
  .logo-img {
    height: 24px;
  }
  .mobile-nav__link {
    gap: 8px;
  }
}
