/* ════════════════════════════════════════════════════════════
   NAYKO ACCOUNT SYSTEM & DRAWER STYLES
   ════════════════════════════════════════════════════════════ */

/* ════════ DESKTOP-ONLY VISIBLE CUSTOM SCROLLBAR & MOBILE CLEAN TOUCH ════════ */
@media (min-width: 901px) {
  html,
  body {
    scrollbar-width: thin !important;
    scrollbar-color: #58A65C #0A0D12 !important;
  }

  [data-theme="light"] html,
  [data-theme="light"] body,
  .theme-light html,
  .theme-light body {
    scrollbar-color: #94A3B8 #F4F6F9 !important;
  }

  ::-webkit-scrollbar,
  html::-webkit-scrollbar,
  body::-webkit-scrollbar,
  *::-webkit-scrollbar {
    width: 10px !important;
    height: 10px !important;
    display: block !important;
  }

  ::-webkit-scrollbar-track,
  html::-webkit-scrollbar-track,
  body::-webkit-scrollbar-track {
    background: #0A0D12 !important;
  }

  [data-theme="light"] ::-webkit-scrollbar-track,
  [data-theme="light"] html::-webkit-scrollbar-track,
  [data-theme="light"] body::-webkit-scrollbar-track,
  .theme-light ::-webkit-scrollbar-track {
    background: #F4F6F9 !important;
  }

  ::-webkit-scrollbar-thumb,
  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb {
    background: #488B4C !important;
    border-radius: 8px !important;
    border: 2px solid #0A0D12 !important;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }

  ::-webkit-scrollbar-thumb:hover,
  html::-webkit-scrollbar-thumb:hover,
  body::-webkit-scrollbar-thumb:hover {
    background: #58A65C !important;
    box-shadow: 0 0 10px rgba(88, 166, 92, 0.6) !important;
  }

  [data-theme="light"] ::-webkit-scrollbar-thumb,
  [data-theme="light"] html::-webkit-scrollbar-thumb,
  [data-theme="light"] body::-webkit-scrollbar-thumb,
  .theme-light ::-webkit-scrollbar-thumb {
    background: #94A3B8 !important;
    border: 2px solid #F4F6F9 !important;
  }

  [data-theme="light"] ::-webkit-scrollbar-thumb:hover,
  [data-theme="light"] html::-webkit-scrollbar-thumb:hover,
  [data-theme="light"] body::-webkit-scrollbar-thumb:hover,
  .theme-light ::-webkit-scrollbar-thumb:hover {
    background: #58A65C !important;
  }
}

@media (max-width: 900px) {
  html,
  body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  *::-webkit-scrollbar,
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
}

/* ════════ UNIVERSAL MOBILE TAP & TEXT SELECTION HIGHLIGHT ELIMINATION ════════ */
*,
*::before,
*::after {
  -webkit-tap-highlight-color: transparent !important;
}

html,
body {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent !important;
}

body.no-scroll {
  overflow: hidden !important;
  touch-action: none !important;
}

/* Prevent accidental text selection and highlight on mobile category pages & interactive elements */
button,
a,
.p-card,
.cat-card,
.cat-pill,
.cat-nav-pill,
.cat-nav-item,
.cat-nav-list,
.cat-hero-card,
.mob-nav,
.mob-nav-btn,
.pill,
.tab,
.badge,
.tag,
.icon-btn,
.action-icon-btn,
.drawer-close-btn,
.nav-link,
.drawer-btn,
.omni-item,
.omni-close-btn,
.product-card,
.prod-card,
.btn,
.brand-logo,
.trust-item,
.footer-links a,
.size-chip-btn,
.color-swatch-chip,
.qty-step-btn {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* Allow text selection inside content text, descriptions, and inputs */
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  user-select: text !important;
}

/* Remove lingering focus outlines and persistent focus rings */
button:focus,
button:focus-visible,
a:focus,
a:focus-visible,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
div:focus,
div:focus-visible,
span:focus,
span:focus-visible {
  outline: none !important;
}

/* Remove sticky hover transformations on touch devices */
@media (hover: none), (pointer: coarse) {
  button:hover:not(:active),
  a:hover:not(:active),
  .p-card:hover:not(:active),
  .cat-card:hover:not(:active),
  .mob-nav-btn:hover:not(:active),
  .pill:hover:not(:active) {
    transform: none;
  }
}


:root {
  --acc-drawer-w: 420px;
  --acc-primary: #58A65C;
  --acc-primary-hover: #4a914e;
  --acc-bg: #0A0D12;
  --acc-surface: #10141D;
  --acc-card: #151B26;
  --acc-border: #1E2636;
  --acc-border-light: rgba(255, 255, 255, 0.08);
  --acc-text: #FFFFFF;
  --acc-muted: #8492A6;
  --acc-danger: #EF4444;
  --acc-gold: #F59E0B;
}

[data-theme="light"] {
  --acc-bg: #F4F6F9;
  --acc-surface: #FFFFFF;
  --acc-card: #F8FAFC;
  --acc-border: #E2E8F0;
  --acc-border-light: rgba(0, 0, 0, 0.06);
  --acc-text: #0F172A;
  --acc-muted: #475569;
}

/* ════════ UNIVERSAL FOOTER THEME ENFORCEMENT (HIGH CONTRAST) ════════ */
.site-footer,
footer.site-footer,
footer {
  background: var(--acc-surface, #10141D) !important;
  border-top: 1px solid var(--acc-border, #1E2636) !important;
  color: var(--acc-text, #FFFFFF);
}

.site-footer .footer-col-title,
.site-footer .footer-col h4,
.site-footer .footer-brand-logo,
.site-footer .footer-contact-txt strong,
.site-footer .footer-bottom-left strong,
.site-footer .brand-logo span,
.site-footer h4,
footer .footer-col-title,
footer h4 {
  color: var(--acc-text, #FFFFFF) !important;
}

.site-footer .footer-links a,
.site-footer .footer-brand-desc,
.site-footer .footer-contact-txt small,
.site-footer .footer-bottom,
.site-footer .footer-bottom-left,
.site-footer .footer-bottom-right a,
.site-footer .footer-bottom-bar,
.site-footer p,
footer .footer-links a,
footer p,
footer span,
footer small {
  color: var(--acc-muted, #8492A6) !important;
}

.site-footer .footer-links a:hover,
.site-footer .footer-bottom-right a:hover,
footer .footer-links a:hover {
  color: var(--acc-primary, #58A65C) !important;
}

.site-footer .footer-trust-pills,
.footer-trust-pills {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px !important;
  margin-top: 22px !important;
  max-width: 360px !important;
}

.site-footer .footer-trust-pill,
.footer-trust-pill {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  background: var(--acc-card, #151B26) !important;
  border: 1px solid var(--acc-border, #1E2636) !important;
  border-radius: 10px !important;
  padding: 8px 12px !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: var(--acc-muted, #8492A6) !important;
  white-space: nowrap !important;
  transition: border-color .15s, color .15s, transform .15s !important;
}

.site-footer .footer-trust-pill:hover,
.footer-trust-pill:hover {
  border-color: var(--acc-primary, #58A65C) !important;
  color: var(--acc-primary, #58A65C) !important;
  transform: translateY(-1px) !important;
}

.site-footer .pay-pill,
.site-footer .footer-social-btn,
.site-footer .footer-contact-ico {
  background: var(--acc-card, #151B26) !important;
  border: 1px solid var(--acc-border, #1E2636) !important;
  color: var(--acc-muted, #8492A6) !important;
}

/* Explicit Light Mode Footer: Crisp dark text on pure white / light background */
[data-theme="light"] .site-footer,
[data-theme="light"] footer.site-footer,
[data-theme="light"] footer,
.theme-light .site-footer,
.theme-light footer {
  background: #FFFFFF !important;
  border-top: 1px solid #E2E8F0 !important;
  color: #0F172A !important;
}

[data-theme="light"] .site-footer .footer-col-title,
[data-theme="light"] .site-footer .footer-col h4,
[data-theme="light"] .site-footer .footer-brand-logo,
[data-theme="light"] .site-footer .footer-contact-txt strong,
[data-theme="light"] .site-footer .footer-bottom-left strong,
[data-theme="light"] .site-footer .brand-logo span,
[data-theme="light"] .site-footer strong,
[data-theme="light"] footer .footer-col-title,
[data-theme="light"] footer h4,
.theme-light .site-footer .footer-col-title,
.theme-light .site-footer .footer-col h4,
.theme-light .site-footer .brand-logo span,
.theme-light .site-footer strong {
  color: #0F172A !important;
}

[data-theme="light"] .site-footer .footer-links a,
[data-theme="light"] .site-footer .footer-brand-desc,
[data-theme="light"] .site-footer .footer-contact-txt small,
[data-theme="light"] .site-footer .footer-bottom,
[data-theme="light"] .site-footer .footer-bottom-left,
[data-theme="light"] .site-footer .footer-bottom-right a,
[data-theme="light"] .site-footer .footer-bottom-bar,
[data-theme="light"] .site-footer p,
[data-theme="light"] footer .footer-links a,
[data-theme="light"] footer p,
[data-theme="light"] footer span,
[data-theme="light"] footer small,
.theme-light .site-footer .footer-links a,
.theme-light .site-footer p,
.theme-light .site-footer span {
  color: #475569 !important;
}

[data-theme="light"] .site-footer .footer-links a:hover,
[data-theme="light"] .site-footer .footer-bottom-right a:hover,
[data-theme="light"] footer .footer-links a:hover,
.theme-light .site-footer .footer-links a:hover {
  color: #2E7D32 !important;
}

[data-theme="light"] .site-footer .footer-trust-pill,
[data-theme="light"] .site-footer .pay-pill,
[data-theme="light"] .site-footer .footer-social-btn,
[data-theme="light"] .site-footer .footer-contact-ico,
.theme-light .site-footer .footer-trust-pill,
.theme-light .site-footer .pay-pill,
.theme-light .site-footer .footer-social-btn,
.theme-light .site-footer .footer-contact-ico {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  color: #475569 !important;
}


/* Account Drawer Overlay */
.account-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000 !important;
}

.account-drawer-overlay.active,
.account-drawer-overlay.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Account Drawer Container */
/* Account Drawer Container - Cyber Void with Ambient Glow */
.account-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: min(var(--acc-drawer-w), 100vw);
  background: radial-gradient(circle at 85% 8%, rgba(0, 102, 255, 0.16) 0%, transparent 48%),
              radial-gradient(circle at 10% 45%, rgba(132, 204, 22, 0.1) 0%, transparent 42%),
              #080C14;
  border-left: 1px solid rgba(0, 102, 255, 0.25);
  box-shadow: none;
  z-index: 10005 !important;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  display: flex;
  flex-direction: column;
  color: var(--acc-text);
  font-family: inherit;
  visibility: hidden;
  pointer-events: none;
}

[data-theme="light"] .account-drawer {
  background: radial-gradient(circle at 85% 8%, rgba(0, 102, 255, 0.08) 0%, transparent 48%),
              radial-gradient(circle at 10% 45%, rgba(74, 222, 128, 0.06) 0%, transparent 42%),
              #F8FAFC;
  border-left-color: rgba(0, 102, 255, 0.18);
}

.account-drawer.active,
.account-drawer.open {
  transform: translateX(0) !important;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.7), -1px 0 20px rgba(0, 102, 255, 0.18) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Drawer Header - Glassmorphic with Neon Cyber Accents */
.account-drawer-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(20px);
}

[data-theme="light"] .account-drawer-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.account-drawer-header h3 {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.2px;
  margin: 0;
  color: #FFFFFF;
}

[data-theme="light"] .account-drawer-header h3 {
  color: #0F172A;
}

.account-drawer-header h3 svg {
  color: #0066FF;
  filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.7));
}

.account-vip-pill {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.22) 0%, rgba(132, 204, 22, 0.22) 100%);
  border: 1px solid rgba(0, 102, 255, 0.45);
  color: #A3E635;
  padding: 2.5px 8px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(163, 230, 53, 0.25);
  display: inline-flex;
  align-items: center;
}

.account-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #8492A6;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.account-drawer-close:hover {
  color: #FFFFFF;
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(239, 68, 68, 0.18);
  transform: rotate(90deg) scale(1.08);
}

/* Drawer Body */
.account-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Guest Banner Shape - Cyber Neon Glow Frame */
.account-guest-banner {
  position: relative;
  background: #06080F;
  border: 1px solid rgba(0, 102, 255, 0.45);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7),
              0 0 25px rgba(0, 102, 255, 0.22),
              0 0 12px rgba(163, 230, 53, 0.15);
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.account-guest-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  pointer-events: none;
  box-shadow: inset 0 0 16px rgba(0, 102, 255, 0.25);
}

.account-guest-banner:hover {
  border-color: rgba(0, 102, 255, 0.7);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8),
              0 0 35px rgba(0, 102, 255, 0.35),
              0 0 18px rgba(163, 230, 53, 0.25);
  transform: translateY(-2px);
}

[data-theme="light"] .account-guest-banner {
  background: #06080F;
  border-color: rgba(0, 102, 255, 0.4);
  box-shadow: 0 10px 28px rgba(0, 102, 255, 0.15), 0 4px 14px rgba(0, 0, 0, 0.08);
}

.account-guest-banner .account-guest-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  background: #06080F;
}

/* Tab Switcher - Cyber Segmented Pill */
.account-tabs {
  display: flex;
  background: rgba(13, 18, 28, 0.85);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  gap: 4px;
}

[data-theme="light"] .account-tabs {
  background: #EDF2F7;
  border-color: #CBD5E1;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

.account-tab-btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #8492A6;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.account-tab-btn:hover:not(.active) {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="light"] .account-tab-btn:hover:not(.active) {
  color: #0F172A;
}

.account-tab-btn.active {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.24) 0%, rgba(16, 185, 129, 0.18) 100%);
  border: 1px solid rgba(0, 102, 255, 0.45);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 102, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 800;
}

[data-theme="light"] .account-tab-btn.active {
  background: #FFFFFF;
  color: #0066FF;
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Form Styles */
.account-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.account-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-field-group label {
  font-size: 11px;
  font-weight: 800;
  color: #7E8C9F;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.account-field-group label::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0066FF;
  box-shadow: 0 0 6px #0066FF;
}

.account-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.account-input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(12, 17, 27, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.account-input::placeholder {
  color: #475569;
}

[data-theme="light"] .account-input {
  background: #FFFFFF;
  border-color: #CBD5E1;
  color: #0F172A;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
}

.account-input:focus {
  border-color: #0066FF;
  background: rgba(15, 21, 35, 0.98);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.22), 0 0 20px rgba(0, 102, 255, 0.18);
}

[data-theme="light"] .account-input:focus {
  background: #FFFFFF;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.account-pwd-toggle {
  position: absolute;
  right: 13px;
  background: none;
  border: none;
  color: #7E8C9F;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.account-pwd-toggle:hover {
  color: #0066FF;
  transform: scale(1.1);
}

/* Form Extras: Remember & Forgot */
.account-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

.account-remember-label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: #8492A6;
  font-weight: 500;
  user-select: none;
}

.account-remember-label input[type="checkbox"] {
  accent-color: #0066FF;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  cursor: pointer;
}

.account-forgot-link {
  color: #A3E635;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-shadow: 0 0 10px rgba(163, 230, 53, 0.3);
  transition: all 0.2s ease;
}

.account-forgot-link:hover {
  color: #BEF264;
  text-shadow: 0 0 16px rgba(163, 230, 53, 0.6);
  text-decoration: underline;
}

[data-theme="light"] .account-forgot-link {
  color: #16A34A;
  text-shadow: none;
}

/* Submit Button - Cyber Electric Blue/Lime Gradient */
.account-btn-submit {
  position: relative;
  overflow: hidden;
  padding: 14px 22px;
  background: linear-gradient(135deg, #0055FE 0%, #00997B 50%, #84CC16 100%);
  background-size: 200% auto;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  box-shadow: 0 6px 24px rgba(0, 85, 254, 0.4), 0 2px 10px rgba(132, 204, 22, 0.28);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.account-btn-submit .btn-arrow {
  transition: transform 0.25s ease;
  display: inline-block;
}

.account-btn-submit:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 85, 254, 0.55), 0 4px 18px rgba(132, 204, 22, 0.42);
}

.account-btn-submit:hover .btn-arrow {
  transform: translateX(3px);
}

.account-btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(0, 85, 254, 0.3);
}

/* Bottom Links */
.account-bottom-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
  font-size: 12.5px;
}

[data-theme="light"] .account-bottom-links {
  border-top-color: #E2E8F0;
}

.account-guest-track-link {
  color: #8492A6;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.account-guest-track-link:hover {
  color: #38BDF8;
  transform: translateX(2px);
}

.account-fullscreen-link {
  color: #A3E635;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.account-fullscreen-link:hover {
  color: #BEF264;
  text-shadow: 0 0 10px rgba(163, 230, 53, 0.4);
  transform: translateX(2px);
}

[data-theme="light"] .account-fullscreen-link {
  color: #16A34A;
}

/* Demo Quick Logins */
.account-demo-box {
  background: var(--acc-card);
  border: 1px dashed var(--acc-border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.account-demo-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--acc-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.account-demo-buttons {
  display: flex;
  gap: 8px;
}

.account-demo-btn {
  flex: 1;
  padding: 7px 10px;
  background: var(--acc-surface);
  border: 1px solid var(--acc-border);
  border-radius: 6px;
  color: var(--acc-text);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  transition: all 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.account-demo-btn:hover {
  border-color: var(--acc-primary);
  color: var(--acc-primary);
}

.account-demo-btn:active {
  transform: scale(0.95);
}

/* ════════ LOGGED IN PROFILE VIEW ════════ */
.account-profile-card {
  background: var(--acc-card);
  border: 1px solid var(--acc-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.account-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc-primary) 0%, #22C55E 100%);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(88, 166, 92, 0.3);
}

.account-user-info {
  flex: 1;
}

.account-user-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--acc-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.account-user-email {
  font-size: 12.5px;
  color: var(--acc-muted);
}

.account-vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--acc-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 800;
  margin-top: 4px;
}

/* Account Section Accordion */
.account-section-block {
  background: var(--acc-card);
  border: 1px solid var(--acc-border);
  border-radius: 10px;
  overflow: hidden;
}

.account-section-hd {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}

.account-section-hd span.icon-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-section-body {
  padding: 0 16px 16px;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Order Item Row */
.account-order-row {
  background: var(--acc-surface);
  border: 1px solid var(--acc-border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-order-id {
  font-family: monospace;
  font-weight: 700;
  color: var(--acc-text);
}

.account-order-status {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(88, 166, 92, 0.15);
  color: var(--acc-primary);
}

.account-order-link {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--acc-primary);
  text-decoration: none;
}

.account-order-link:hover {
  text-decoration: underline;
}

/* Address Form */
.account-address-box {
  background: var(--acc-surface);
  border: 1px solid var(--acc-border);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Logout Button */
.account-btn-logout {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--acc-danger);
  color: var(--acc-danger);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: auto;
}

.account-btn-logout:hover {
  background: var(--acc-danger);
  color: #FFFFFF;
}

/* Toast */
.account-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--acc-card);
  color: var(--acc-text);
  border: 1px solid var(--acc-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  z-index: 100000;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.25s ease;
}

.account-toast.active {
  opacity: 1;
  transform: translateY(0);
}

/* ════════ UNIFIED MOBILE APP BARS (NAVBAR & UNDER ACCOUNT BAR) ════════ */
:root {
  --mob-nav-h: 60px;
}

.mob-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--mob-nav-h, 60px) + env(safe-area-inset-bottom, 0px));
  min-height: calc(var(--mob-nav-h, 60px) + env(safe-area-inset-bottom, 0px));
  background: var(--acc-surface, #10141D);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--acc-border, #1E2636);
  z-index: 1001 !important;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: border-box !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease,
              visibility 0.32s,
              background-color 0.3s ease,
              border-color 0.3s ease !important;
}

[data-theme="light"] .mob-nav {
  background: rgba(255, 255, 255, 0.95);
  border-top-color: var(--acc-border, #E2E8F0);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  :root {
    --hh: var(--mob-nav-h, 60px) !important;
  }

  /* Equalized Mobile Top Navbar (Matches Under Account Bar Exactly) */
  html body header.topbar,
  html body .topbar,
  header.topbar,
  .topbar {
    height: var(--mob-nav-h, 60px) !important;
    min-height: var(--mob-nav-h, 60px) !important;
    max-height: var(--mob-nav-h, 60px) !important;
    box-sizing: border-box !important;
  }

  /* Ribbon subnav below sticky topbar */
  html body .cat-nav-ribbon,
  .cat-nav-ribbon {
    top: var(--mob-nav-h, 60px) !important;
  }

  /* Equalized Mobile Bottom / Under Account Bar */
  html body .mob-nav,
  .mob-nav {
    display: flex !important;
    height: calc(var(--mob-nav-h, 60px) + env(safe-area-inset-bottom, 0px)) !important;
    min-height: calc(var(--mob-nav-h, 60px) + env(safe-area-inset-bottom, 0px)) !important;
    padding-bottom: env(safe-area-inset-bottom, 0px) !important;
    box-sizing: border-box !important;
  }

  .mob-nav-btn {
    height: var(--mob-nav-h, 60px) !important;
    min-height: var(--mob-nav-h, 60px) !important;
    box-sizing: border-box !important;
  }

  body,
  body.theme-light,
  [data-theme="light"] body {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  body:not(:has(.site-footer)) {
    padding-bottom: calc(var(--mob-nav-h, 60px) + 16px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .main,
  .content,
  .main-section,
  .product-main,
  .product-page-container,
  .category-main,
  .cat-page-container {
    padding-bottom: 0 !important;
  }

  .site-footer,
  footer.site-footer {
    padding-bottom: calc(var(--mob-nav-h, 60px) + env(safe-area-inset-bottom, 0px)) !important;
    margin-bottom: 0 !important;
  }

  .footer-bottom {
    padding-bottom: 14px !important;
    margin-bottom: 0 !important;
  }
}

/* Auto-hide mobile bottom account bar when category menu/sidebar/drawer is open */
body.sidebar-open .mob-nav,
body.cat-menu-open .mob-nav,
body.category-drawer-open .mob-nav,
.layout:has(.sidebar.active) .mob-nav,
body:has(#sidebarNav.active) .mob-nav,
body:has(#categoryDrawer.active) .mob-nav {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(100%) !important;
  visibility: hidden !important;
}

.mob-nav-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--acc-muted, #8492A6) !important;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 6px 8px;
  cursor: pointer;
  flex: 1;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mob-nav-btn svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.9;
  stroke: currentColor;
  fill: none;
  transition: transform 0.22s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.2s ease, filter 0.22s ease !important;
}

.mob-nav-btn span {
  font-size: 10.5px;
  line-height: 1;
  color: inherit;
  transition: color 0.2s ease;
}

.mob-nav-btn:hover,
.mob-nav-btn.active {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--acc-primary, #58A65C) !important;
}

.mob-nav-btn.active svg {
  stroke: var(--acc-primary, #58A65C) !important;
  transform: translateY(-2px) scale(1.12) !important;
  filter: drop-shadow(0 2px 7px rgba(88, 166, 92, 0.6)) !important;
}

.mob-nav-btn.active span {
  color: var(--acc-primary, #58A65C) !important;
  font-weight: 700 !important;
}

.mob-nav-badge {
  position: absolute;
  top: 3px;
  right: calc(50% - 15px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: var(--acc-primary, #58A65C);
  color: #FFFFFF;
  font-size: 9.5px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--acc-surface, #10141D);
  line-height: 1;
  pointer-events: none;
}

[data-theme="light"] .mob-nav-badge {
  border-color: #FFFFFF;
}

.mob-nav-badge.active,
.mob-nav-badge.has-items {
  display: flex !important;
}

.mob-user-dot {
  position: absolute;
  top: 5px;
  right: calc(50% - 10px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc-primary, #58A65C);
  box-shadow: 0 0 6px var(--acc-primary, #58A65C);
}

/* ════════ CATEGORY DRAWER STYLES ════════ */
.category-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000 !important;
}

.category-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.category-drawer,
.sidebar.active,
#sidebarNav.active,
body.sidebar-open #sidebarNav {
  position: fixed;
  z-index: 10005 !important;
}

.category-drawer {
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--acc-surface, #10141D);
  border-right: 1px solid var(--acc-border, #1E2636);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s;
  display: flex;
  flex-direction: column;
  color: var(--acc-text, #FFFFFF);
  visibility: hidden;
  pointer-events: none;
  box-shadow: none;
}

.category-drawer.active {
  transform: translateX(0);
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.5);
  visibility: visible;
  pointer-events: auto;
}

.category-drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--acc-border, #1E2636);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--acc-surface, #10141D);
}

.cat-drawer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--acc-text, #FFFFFF);
}

.category-drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--acc-card, #151B26);
  border: 1px solid var(--acc-border, #1E2636);
  color: var(--acc-muted, #8492A6);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-drawer-close:hover {
  color: var(--acc-text, #FFFFFF);
  border-color: var(--acc-muted, #8492A6);
}

.category-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-drawer-section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--acc-muted, #8492A6);
  padding: 8px 10px 4px;
}

.cat-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--acc-text, #FFFFFF);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.18s ease;
}

.cat-drawer-item:hover,
.cat-drawer-item:active {
  background: var(--acc-card, #151B26);
  color: var(--acc-primary, #58A65C);
  transform: translateX(3px);
}

.cat-drawer-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.cat-drawer-pill {
  margin-left: auto;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cat-drawer-pill.hot {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.cat-drawer-pill.new {
  background: rgba(88, 166, 92, 0.15);
  color: var(--acc-primary, #58A65C);
  border: 1px solid rgba(88, 166, 92, 0.3);
}

[data-theme="light"] .category-drawer {
  background: #FFFFFF;
  border-right-color: #E2E8F0;
  color: #0F172A;
}

[data-theme="light"] .category-drawer-header {
  background: #FFFFFF;
  border-bottom-color: #E2E8F0;
}

[data-theme="light"] .cat-drawer-title {
  color: #0F172A;
}

[data-theme="light"] .cat-drawer-item {
  color: #0F172A;
}

[data-theme="light"] .cat-drawer-item:hover,
[data-theme="light"] .cat-drawer-item:active {
  background: #F1F5F9;
}

[data-theme="light"] .category-drawer-close {
  background: #F8FAFC;
  border-color: #E2E8F0;
}

/* ════════ NAYKO LUXURY PWA & WEB APP SPLASH SCREEN ════════ */
.nayko-splash-screen {
  position: fixed;
  inset: 0;
  background: #0A0D12;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: all;
  user-select: none;
  -webkit-user-select: none;
}

[data-theme="light"] .nayko-splash-screen {
  background: #F8FAFC;
}

.nayko-splash-screen.splash-hidden {
  opacity: 0 !important;
  transform: scale(1.04) !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 20px;
}

.splash-brand-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.splash-logo-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 166, 92, 0.45) 0%, rgba(88, 166, 92, 0.05) 60%, transparent 70%);
  filter: blur(22px);
  animation: splashGlowPulse 2.2s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes splashGlowPulse {
  0% { transform: scale(0.85); opacity: 0.45; }
  100% { transform: scale(1.25); opacity: 0.9; }
}

.splash-logo {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #FFFFFF 20%, #6CC471 55%, #FFFFFF 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: splashLogoShimmer 3s ease-in-out infinite;
  background-size: 200% auto;
}

[data-theme="light"] .splash-logo {
  background: linear-gradient(135deg, #0F172A 20%, #2E7D32 55%, #0F172A 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
}

@keyframes splashLogoShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.splash-tagline {
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--acc-primary, #58A65C);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

[data-theme="light"] .splash-tagline {
  color: #2E7D32;
}

.splash-progress-track {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

[data-theme="light"] .splash-progress-track {
  background: rgba(0, 0, 0, 0.08);
}

.splash-progress-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--acc-primary, #58A65C), #6CC471, transparent);
  border-radius: 9999px;
  animation: splashBeam 1.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  box-shadow: 0 0 10px rgba(88, 166, 92, 0.7);
}

@keyframes splashBeam {
  0% { left: -40%; width: 30%; }
  50% { left: 40%; width: 50%; }
  100% { left: 100%; width: 30%; }
}

.splash-status-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  animation: statusPulse 1.8s ease-in-out infinite alternate;
}

[data-theme="light"] .splash-status-text {
  color: rgba(15, 23, 42, 0.5);
}

@keyframes statusPulse {
  0% { opacity: 0.4; }
  100% { opacity: 0.9; }
}

/* ════════ TOP GLOBAL ROUTE / FILTER PROGRESS BAR ════════ */
.nayko-top-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, #3F5E38, #58A65C, #6CC471);
  z-index: 100000;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(88, 166, 92, 0.8), 0 0 4px #6CC471;
  transition: width 0.22s ease, opacity 0.3s ease;
  opacity: 0;
}

.nayko-top-progress-bar.active {
  opacity: 1;
}

/* ════════ SKELETON WAVE SHIMMER SYSTEM ════════ */
@keyframes skeletonWave {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-shimmer,
.skeleton-card,
.skeleton-box,
.skeleton-img,
.skeleton-text {
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.03) 20%,
    rgba(88, 166, 92, 0.12) 50%,
    rgba(255, 255, 255, 0.03) 80%
  ) !important;
  background-size: 250% 100% !important;
  animation: skeletonWave 1.8s cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  border-radius: var(--r2, 10px);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .skeleton-shimmer,
[data-theme="light"] .skeleton-card,
[data-theme="light"] .skeleton-box,
[data-theme="light"] .skeleton-img,
[data-theme="light"] .skeleton-text {
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0.04) 20%,
    rgba(46, 125, 50, 0.09) 50%,
    rgba(0, 0, 0, 0.04) 80%
  ) !important;
  background-size: 250% 100% !important;
}

/* Micro-interaction button loading state */
.btn-loading-state {
  position: relative;
  pointer-events: none !important;
  opacity: 0.85 !important;
}

.btn-loading-state::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -7px;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}


