input,
textarea,
select,
button {
  user-select: auto;
  touch-action: manipulation;
}

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

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  overflow-x: clip;
}

body.modal-open,
body.cart-open,
body.checkout-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.site-header {
  padding-top: env(safe-area-inset-top, 0px);
}

.fab-stack {
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.modal-open .fab-stack,
body.cart-open .fab-stack,
body.checkout-open .fab-stack {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.75rem);
}

body.modal-open,
body.cart-open {
  padding-bottom: 0;
}

.checkout-backdrop {
  z-index: 70;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.checkout-backdrop.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.checkout-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.checkout-backdrop:not(.open) .checkout-panel {
  pointer-events: none;
}

.cod-alert-dialog {
  width: min(calc(100% - 2rem), 28rem);
  max-width: 28rem;
  padding: 0;
  border: 0;
  border-radius: 1.25rem;
  color: #1c1917;
  background: #fff;
  box-shadow: 0 24px 70px rgba(28, 25, 23, 0.28);
  font-family: inherit;
}

.cod-alert-dialog::backdrop {
  background: rgba(28, 25, 23, 0.72);
  backdrop-filter: blur(4px);
}

.cod-alert-dialog[open] {
  animation: cod-alert-in 0.18s ease-out;
}

@keyframes cod-alert-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 639px) {
  .checkout-backdrop.open {
    align-items: flex-end;
  }

  .checkout-backdrop.open .checkout-panel,
  .checkout-panel.open {
    width: 100%;
    max-width: 100%;
    transform: translateY(0) scale(1);
  }

  .checkout-sheet {
    max-height: min(92dvh, 92vh);
  }

  .checkout-backdrop.open input,
  .checkout-backdrop.open textarea,
  .checkout-backdrop.open button {
    touch-action: manipulation;
  }
}

.font-myanmar {
  font-family: "Noto Sans Myanmar", "Padauk", sans-serif;
}

body.font-myanmar,
body.font-myanmar input,
body.font-myanmar textarea,
body.font-myanmar select,
body.font-myanmar button {
  font-family: "Noto Sans Myanmar", "Padauk", sans-serif;
}

.btn-viber {
  background-color: #7360f2;
  color: #fff;
}

.btn-viber:hover {
  background-color: #5b4dd1;
}

.hero-gradient {
  background: linear-gradient(
    160deg,
    #1c1917 0%,
    #292524 40%,
    #1c1917 100%
  );
}

.hero-pattern {
  background-image:
    radial-gradient(circle at 15% 40%, rgba(201, 149, 42, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(201, 149, 42, 0.08) 0%, transparent 35%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}

@media (hover: hover) {
  .product-card:hover .product-img {
    transform: scale(1.05);
  }

  .product-card:hover .view-btn {
    opacity: 1;
  }
}

.product-img {
  transition: transform 0.4s ease;
}

.product-card .view-btn {
  opacity: 1;
}

@media (hover: hover) {
  .product-card .view-btn {
    opacity: 0;
  }
}

.category-scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-btn {
  scroll-snap-align: start;
  min-height: 2.5rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 0.75rem;
  border: 1px solid #e7e5e4;
  background: #f7f5f0;
  overflow: hidden;
}

.qty-stepper button {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c1917;
  transition: background-color 0.15s ease;
}

.qty-stepper button:hover {
  background: #f5f0e6;
}

.qty-stepper button:active {
  background: #ebe4d4;
}

.qty-stepper .qty-value {
  min-width: 2.25rem;
  padding: 0 0.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c1917;
  border-left: 1px solid #e7e5e4;
  border-right: 1px solid #e7e5e4;
  background: #fff;
  line-height: 2.5rem;
}

.option-chip {
  min-height: 2.75rem;
  min-width: 2.75rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.option-chip:hover {
  border-color: #dbad4a;
}

.option-chip.is-selected {
  border-color: #c9952a;
  background: rgba(201, 149, 42, 0.1);
  color: #1c1917;
  font-weight: 600;
}

.btn-add-cart {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1c1917 0%, #44403c 100%);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 14px rgba(28, 25, 23, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-add-cart:hover {
  box-shadow: 0 6px 20px rgba(28, 25, 23, 0.35);
}

.btn-add-cart:active {
  transform: scale(0.98);
}

.btn-add-cart.is-added {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.cart-item-card {
  border-radius: 1rem;
  border: 1px solid #e7e5e4;
  background: #f7f5f0;
  padding: 0.75rem;
  overflow: hidden;
  max-width: 100%;
}

.cart-item-card .cart-item-row {
  min-width: 0;
}

.cart-item-card .cart-line-total {
  white-space: nowrap;
}

#cart-count.cart-bump {
  animation: cartBump 0.45s ease;
}

@keyframes cartBump {
  0%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
}

.toast {
  z-index: 80;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 640px) {
  .toast.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}

.cart-drawer {
  max-width: min(100vw, 28rem);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s ease;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  overscroll-behavior: contain;
}

.cart-drawer.open {
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer-header {
  flex-shrink: 0;
  padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
}

.cart-drawer-footer {
  flex-shrink: 0;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

.cart-drawer-body {
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  z-index: 50;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-panel {
  width: min(56rem, calc(100vw - 2rem));
  min-width: 0;
  max-width: calc(100vw - 2rem);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.modal-sheet,
.modal-scroll,
.modal-scroll > .grid,
.modal-scroll > .grid > div {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.modal-scroll {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.modal-scroll > .grid {
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  contain: inline-size;
}

#modal-main-img,
#modal-thumbs,
#modal-colors,
#modal-sizes,
#modal-selection-summary {
  min-width: 0;
  max-width: 100%;
}

#modal-thumbs {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  contain: inline-size;
}

#modal-colors .option-chip,
#modal-sizes .option-chip {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.modal-actions {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

.modal-actions > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 639px) {
  .modal-backdrop.open {
    align-items: flex-end;
  }

  .modal-backdrop {
    padding: 0;
  }

  .modal-panel,
  .modal-panel.open {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    transform: translateY(0) scale(1);
  }

  .modal-sheet {
    width: 100%;
    max-width: 100%;
    max-height: min(92dvh, 92vh);
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .modal-sheet::before {
    content: "";
    display: block;
    width: 2.5rem;
    height: 0.25rem;
    margin: 0.625rem auto 0;
    border-radius: 9999px;
    background: #d1d5db;
    flex-shrink: 0;
  }

  #modal-main-img {
    max-height: min(28dvh, 220px);
  }

  .modal-actions {
    position: relative;
    z-index: 10;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  }

  .option-chip {
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }

  .qty-stepper button {
    height: 2.75rem;
    width: 2.75rem;
  }

  .qty-stepper .qty-value {
    min-width: 2.5rem;
    line-height: 2.75rem;
  }

  .btn-add-cart {
    position: relative;
    z-index: 11;
    min-height: 3rem;
    font-size: 0.875rem;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .product-card h3 {
    font-size: 0.8125rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card .add-btn {
    min-height: 2.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
  }

  .product-card .view-btn span {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .cart-item-card .cart-line-total {
    font-size: 0.8125rem;
  }

  .toast {
    bottom: max(5.5rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
  }

  .toast.is-visible {
    transform: translateY(0);
  }

  #toast-message {
    font-size: 0.8125rem;
  }

  #toast-view-cart {
    padding: 0.375rem 0.625rem;
    font-size: 0.6875rem;
  }
}

@media (min-width: 768px) {
  .modal-scroll > .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .modal-sheet::before {
    display: none;
  }
}

.thumb-active {
  ring: 2px solid #c9952a;
  opacity: 1;
}

.thumb-inactive {
  opacity: 0.65;
}

.thumb-inactive:hover {
  opacity: 1;
}

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

.animate-fade-up {
  animation: fadeUp 0.5s ease forwards;
}

.animation-delay-150 {
  animation-delay: 150ms;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Minimal product-page redesign inspired by the supplied reference */
:root {
  --store-black: #0b0b0b;
  --store-ink: #171717;
  --store-muted: #6b6b6b;
  --store-line: #dedede;
  --store-soft: #f3f3f3;
  --store-white: #ffffff;
}

body {
  background: var(--store-white);
  color: var(--store-ink);
}

.announcement-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: #f4f4f4;
  color: #2a2a2a;
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
}

.site-header {
  padding-top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--store-line);
  backdrop-filter: blur(14px);
}

.site-nav {
  min-height: 74px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--store-black);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.wordmark img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.desktop-nav {
  gap: 0.35rem;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  color: #2c2c2c;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-link-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0.22rem;
  left: 50%;
  width: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: var(--store-black);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
  background: var(--store-soft);
  color: var(--store-black);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.desktop-nav a:active {
  transform: scale(0.96);
}

.desktop-nav a:focus-visible {
  outline: 2px solid var(--store-black);
  outline-offset: 2px;
}

#mobile-menu {
  gap: 0.5rem;
}

#mobile-menu a {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  color: var(--store-muted);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

#mobile-menu a::after {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--store-black);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

#mobile-menu a:hover,
#mobile-menu a:focus-visible,
#mobile-menu a.is-active {
  background: var(--store-soft);
  color: var(--store-black);
}

#mobile-menu a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

#mobile-menu a:active {
  transform: scale(0.95);
}

#mobile-menu a:focus-visible {
  outline: 2px solid var(--store-black);
  outline-offset: 1px;
}

#shop,
#about,
#contact {
  scroll-margin-top: 5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.language-toggle {
  display: inline-flex;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--store-line);
  border-radius: 999px;
  background: var(--store-white);
  color: var(--store-black);
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.language-toggle:hover {
  border-color: var(--store-black);
  background: var(--store-soft);
}

.language-toggle:active {
  transform: scale(0.97);
}

.language-toggle:focus-visible {
  outline: 2px solid var(--store-black);
  outline-offset: 2px;
}

.language-flag {
  display: none;
  width: 1.65rem;
  height: 1.1rem;
  overflow: hidden;
  border-radius: 0.18rem;
  box-shadow: 0 0 0 1px rgba(28, 25, 23, 0.14), 0 1px 2px rgba(28, 25, 23, 0.16);
}

.language-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.language-toggle[data-current-language="en"] .language-flag-myanmar,
.language-toggle[data-current-language="my"] .language-flag-british {
  display: block;
}

.nav-icon {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--store-black);
  transition: background-color 160ms ease;
}

button.nav-icon {
  display: flex;
}

.nav-icon:hover {
  background: var(--store-soft);
}

.nav-svg-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
}

.menu-close-icon {
  display: none;
}

.menu-icon[aria-expanded="true"] .menu-open-icon {
  display: none;
}

.menu-icon[aria-expanded="true"] .menu-close-icon {
  display: block;
}

.search-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  display: block;
  width: 7px;
  height: 1.7px;
  margin: 12px 0 0 12px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.bag-icon {
  display: inline-block;
  width: 17px;
  height: 16px;
  margin-top: 3px;
  border: 1.7px solid currentColor;
  border-radius: 2px;
}

.bag-icon::before {
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  margin: -6px auto 0;
  border: 1.7px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.cart-count {
  position: absolute;
  top: 0.2rem;
  right: 0.05rem;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--store-black);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1rem;
  text-align: center;
}

.featured-product {
  padding: clamp(2rem, 4vw, 4.25rem) 1rem;
}

.featured-layout {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.85fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
}

.featured-gallery {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
}

.featured-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.featured-thumb {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--store-soft);
  transition: border-color 160ms ease, opacity 160ms ease;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-thumb:not(.is-active) {
  opacity: 0.68;
}

.featured-thumb.is-active {
  border-color: var(--store-black);
  opacity: 1;
}

.featured-main-frame {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  background: #f1f1f1;
}

.featured-main-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-carousel-outgoing {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.featured-carousel-enter-next {
  animation: featured-carousel-enter-next 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.featured-carousel-exit-next {
  animation: featured-carousel-exit-next 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.featured-carousel-enter-previous {
  animation: featured-carousel-enter-previous 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.featured-carousel-exit-previous {
  animation: featured-carousel-exit-previous 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes featured-carousel-enter-next {
  from {
    opacity: 0.25;
    transform: translateX(7%) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes featured-carousel-exit-next {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(-7%) scale(1.015);
  }
}

@keyframes featured-carousel-enter-previous {
  from {
    opacity: 0.25;
    transform: translateX(-7%) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes featured-carousel-exit-previous {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(7%) scale(1.015);
  }
}

.featured-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.7);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  font-size: 2rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.featured-carousel-prev {
  left: 1rem;
}

.featured-carousel-next {
  right: 1rem;
}

.featured-main-frame:hover .featured-carousel-control,
.featured-main-frame:focus-within .featured-carousel-control {
  opacity: 1;
}

.featured-carousel-control:hover {
  background: rgba(12, 12, 12, 0.9);
}

.featured-carousel-control:active {
  transform: translateY(-50%) scale(0.94);
}

.featured-carousel-toolbar {
  position: absolute;
  right: 1rem;
  bottom: 4.45rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.featured-carousel-counter,
.featured-carousel-autoplay {
  min-height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.72);
  color: #ffffff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
}

.featured-carousel-counter {
  display: inline-flex;
  min-width: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
}

.featured-carousel-autoplay {
  display: inline-flex;
  width: 2rem;
  align-items: center;
  justify-content: center;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.65rem;
}

.featured-carousel-autoplay:hover {
  background: rgba(12, 12, 12, 0.9);
}

.featured-zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  width: 2.8rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #ececec;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--store-black);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.featured-info {
  position: sticky;
  top: 110px;
  padding-top: 0.85rem;
}

.product-label {
  display: inline-flex;
  padding: 0.35rem 0.55rem;
  border-radius: 5px;
  background: #f0f0f0;
  color: #232323;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.featured-info h1 {
  max-width: 12ch;
  margin-top: 1rem;
  color: var(--store-black);
  font-size: clamp(2.25rem, 3.8vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.featured-meta {
  margin-top: 1rem;
  color: var(--store-muted);
  font-size: 0.8rem;
}

.featured-meta span {
  padding: 0 0.4rem;
  color: #b0b0b0;
}

.featured-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 1.35rem;
}

.featured-price strong {
  color: var(--store-black);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  letter-spacing: -0.045em;
}

.featured-price span {
  color: var(--store-muted);
  font-size: 0.72rem;
}

.featured-description {
  max-width: 34rem;
  margin-top: 1rem;
  color: #464646;
  font-size: 0.9rem;
  line-height: 1.65;
}

.featured-divider {
  height: 1px;
  margin: 1.5rem 0;
  background: var(--store-line);
}

.featured-option-group {
  margin-top: 1.35rem;
}

.featured-option-group legend,
.size-heading {
  color: #2a2a2a;
  font-size: 0.76rem;
}

.featured-option-group strong {
  color: var(--store-black);
  font-weight: 600;
}

.featured-swatches,
.featured-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.featured-swatch {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 0 0 1px #d4d4d4;
}

.featured-swatch.is-selected {
  box-shadow: 0 0 0 2px var(--store-black);
}

.swatch-light-blue { background: #a8ccdf; }
.swatch-dark-blue { background: #253c5e; }
.swatch-black { background: #151515; }
.swatch-gray { background: #979797; }
.swatch-washed { background: #6e8496; }

.size-heading {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

#size-guide-button {
  color: #333;
  font-size: 0.7rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.featured-sizes button {
  min-width: 3.25rem;
  height: 2.75rem;
  padding: 0 0.9rem;
  border: 1px solid var(--store-line);
  border-radius: 7px;
  color: #2b2b2b;
  font-size: 0.78rem;
  font-weight: 600;
}

.featured-sizes button.is-selected {
  border-color: var(--store-black);
  background: var(--store-black);
  color: white;
}

.featured-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.5rem;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.featured-add,
.featured-favourite {
  min-height: 3.55rem;
  border-radius: 7px;
  font-weight: 600;
}

.featured-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--store-black);
  color: white;
  font-size: 0.9rem;
  transition: background-color 160ms ease, transform 160ms ease;
}

.featured-add:hover {
  background: #292929;
}

.featured-add:active {
  transform: scale(0.99);
}

.bag-icon-light {
  color: white;
}

.featured-favourite {
  border: 1px solid var(--store-line);
  color: var(--store-black);
  font-size: 1.8rem;
  line-height: 1;
}

.featured-favourite.is-selected {
  background: #fff1f1;
  color: #d43131;
}

.featured-viber {
  display: inline-flex;
  margin-top: 0.9rem;
  color: #5f4bd8;
  font-size: 0.76rem;
  font-weight: 600;
}

.featured-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.65rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--store-line);
}

.featured-benefits div {
  min-width: 0;
}

.featured-benefits strong,
.featured-benefits span {
  display: block;
}

.featured-benefits strong {
  color: var(--store-black);
  font-size: 0.67rem;
  font-weight: 650;
}

.featured-benefits span {
  margin-top: 0.2rem;
  color: var(--store-muted);
  font-size: 0.58rem;
  line-height: 1.4;
}

.product-detail-section {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4.5rem) 1rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  border-top: 1px solid var(--store-line);
}

.detail-tabs {
  display: flex;
  gap: clamp(1rem, 3vw, 2.6rem);
  overflow-x: auto;
  border-bottom: 1px solid var(--store-line);
  scrollbar-width: none;
}

.detail-tabs::-webkit-scrollbar {
  display: none;
}

.detail-tab {
  flex: none;
  padding: 0 0 0.9rem;
  border-bottom: 2px solid transparent;
  color: var(--store-muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.detail-tab.is-active {
  border-color: var(--store-black);
  color: var(--store-black);
  font-weight: 600;
}

.detail-panel {
  padding-top: 1.4rem;
}

.detail-panel p {
  max-width: 34rem;
  color: #333;
  font-size: 0.86rem;
  line-height: 1.65;
}

.detail-panel ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
  color: #2e2e2e;
  font-size: 0.78rem;
}

.detail-panel li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.detail-panel li::before {
  content: "◇";
  color: var(--store-black);
  font-size: 0.85rem;
}

.product-detail-image {
  overflow: hidden;
  min-height: 360px;
  border-radius: 10px;
  background: var(--store-soft);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#shop {
  background: white !important;
  border-top-color: var(--store-line) !important;
}

#shop > div,
#cod > div,
#about > div,
#contact > div,
footer > div {
  max-width: 1280px !important;
}

#shop h2,
#cod h2,
#about h2,
#contact h2 {
  color: var(--store-black);
  letter-spacing: -0.045em;
}

.category-btn {
  min-height: 2.6rem;
  border-color: var(--store-line) !important;
  background: white !important;
  color: #414141 !important;
}

.category-btn.bg-brand-navy {
  border-color: var(--store-black) !important;
  background: var(--store-black) !important;
  color: white !important;
  box-shadow: none !important;
}

.product-card {
  overflow: hidden;
  border-color: #e9e9e9 !important;
  border-radius: 10px !important;
  background: white !important;
  box-shadow: none !important;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07) !important;
}

.product-card > div:first-child {
  background: var(--store-soft) !important;
}

.product-card .add-btn {
  border-radius: 7px !important;
  background: var(--store-black) !important;
}

.product-card .view-btn span {
  border-radius: 7px !important;
  box-shadow: none !important;
}

#cod {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  border-top-color: var(--store-line) !important;
  background: #efeee9;
}

.cod-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.25rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

.cod-intro,
.cod-coverage {
  border-radius: 12px;
}

.cod-intro {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--store-black);
  color: white;
}

.cod-eyebrow {
  margin: 0;
  color: #79520f;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cod-intro .cod-eyebrow {
  color: #ddb55c;
}

.cod-intro h2 {
  max-width: 12ch;
  margin-top: 0.7rem;
  color: white !important;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.cod-description {
  max-width: 38rem;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cod-steps {
  display: grid;
  gap: 0;
  margin: clamp(2rem, 5vw, 3.5rem) 0 2rem;
  padding: 0;
  list-style: none;
}

.cod-steps li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cod-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cod-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ddb55c;
  font-size: 0.72rem;
  font-weight: 800;
}

.cod-steps h3 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
}

.cod-steps p {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  line-height: 1.55;
}

.cod-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  margin-top: auto;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: white;
  color: var(--store-black);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.cod-cta:hover {
  background: #f0e1bf;
  transform: translateY(-1px);
}

.cod-cta svg {
  width: 1.15rem;
  height: 1.15rem;
  color: #665cac;
}

.cod-coverage {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #dedcd4;
  background: white;
}

.cod-coverage-header h2 {
  max-width: 18ch;
  margin-top: 0.55rem;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.cod-as-of {
  margin-top: 0.65rem;
  color: #666;
  font-size: 0.72rem;
  font-weight: 650;
}

.cod-carriers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.cod-carrier-card {
  padding: 1.1rem;
  border: 1px solid var(--store-line);
  border-radius: 9px;
  background: #fafafa;
}

.cod-carrier-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cod-carrier-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  border-radius: 7px;
  color: white;
  font-size: 0.82rem;
  font-weight: 850;
}

.royal-mark {
  background: #cc2027;
}

.ninja-mark {
  background: #e92b2b;
}

.cod-carrier-heading h3 {
  color: var(--store-black);
  font-size: 0.88rem;
  font-weight: 800;
}

.cod-carrier-heading span:last-child {
  display: block;
  margin-top: 0.1rem;
  color: var(--store-muted);
  font-size: 0.7rem;
}

.cod-carrier-card > p {
  margin-top: 0.9rem;
  color: #565656;
  font-size: 0.73rem;
  line-height: 1.6;
}

.cod-area-groups {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  margin-top: 1.65rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--store-line);
}

.cod-area-intro {
  grid-column: 1 / -1;
  margin-bottom: -0.35rem;
  color: #555;
  font-size: 0.75rem;
  line-height: 1.55;
}

.cod-area-group h3 {
  margin-bottom: 0.7rem;
  color: var(--store-black);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cod-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cod-area-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.43rem 0.58rem;
  border: 1px solid #deddd8;
  border-radius: 999px;
  background: #f6f5f1;
  color: #303030;
  font-size: 0.75rem;
  line-height: 1.2;
}

.cod-area-list .ninja-only-area {
  border-color: #f1b4b4;
  background: #fff5f5;
}

.ninja-only-label {
  padding: 0.15rem 0.3rem;
  border-radius: 999px;
  background: #bd1919;
  color: white;
  font-size: 0.7rem;
  font-weight: 750;
  white-space: nowrap;
}

.cod-note {
  margin-top: 1.55rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid #b9872e;
  background: #f8f5ed;
  color: #565656;
  font-size: 0.75rem;
  line-height: 1.6;
}

.cod-source-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.9rem;
  margin-top: 1rem;
  color: var(--store-muted);
  font-size: 0.72rem;
}

.cod-source-links a {
  color: #262626;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #c8a150;
  text-underline-offset: 3px;
}

.checkout-cod-note {
  padding: 0.75rem 0.85rem;
  border: 1px solid #e6dcc5;
  border-radius: 0.75rem;
  background: #fbf7ed;
  color: #5d513c;
  font-size: 0.75rem;
  line-height: 1.5;
}

body.font-myanmar #cod h2 {
  letter-spacing: 0;
  line-height: 1.4;
}

body.font-myanmar .cod-eyebrow,
body.font-myanmar .cod-area-group h3 {
  letter-spacing: 0.04em;
}

#about {
  background: #f5f5f5 !important;
}

#about li {
  border-color: var(--store-line) !important;
  border-radius: 10px !important;
  background: white !important;
  box-shadow: none !important;
}

#about li > span {
  background: var(--store-black) !important;
  color: white !important;
}

#about img {
  border-radius: 10px !important;
  box-shadow: none !important;
}

#contact > div > div {
  border-radius: 12px !important;
  background: var(--store-black) !important;
  box-shadow: none !important;
}

footer {
  background: var(--store-black) !important;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 3px;
}

@media (max-width: 1023px) {
  .cod-shell {
    grid-template-columns: 1fr;
  }

  .cod-intro h2 {
    max-width: 18ch;
  }

  .featured-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    gap: 2.25rem;
  }

  .featured-gallery {
    grid-template-columns: 1fr;
  }

  .featured-thumbnails {
    order: 2;
    flex-direction: row;
  }

  .featured-thumb {
    width: 72px;
  }

  .featured-main-frame {
    min-height: 480px;
  }

  .featured-benefits {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  button.menu-icon {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1050px) {
  .wordmark > span {
    display: none;
  }

  .desktop-nav {
    gap: 0.2rem;
  }

  .desktop-nav a {
    width: 2.5rem;
    height: 2.5rem;
  }

  .nav-actions > a.nav-icon {
    display: none;
  }
}

@media (max-width: 767px) {
  #mobile-menu:not(.hidden) {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .cod-carriers,
  .cod-area-groups {
    grid-template-columns: 1fr;
  }

  .cod-area-intro {
    grid-column: auto;
  }

  .announcement-bar {
    font-size: 0.64rem;
  }

  .site-nav {
    min-height: 62px;
  }

  .wordmark img {
    display: none;
  }

  .wordmark {
    position: absolute;
    left: 50%;
    font-size: 1rem;
    transform: translateX(-50%);
  }

  .featured-product {
    padding: 1.25rem 1rem 2.5rem;
  }

  .featured-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .featured-main-frame {
    min-height: auto;
  }

  .featured-carousel-control {
    width: 2.65rem;
    height: 2.65rem;
    opacity: 1;
  }

  .featured-thumbnails {
    gap: 0.55rem;
    overflow-x: auto;
    padding: 2px;
  }

  .featured-thumb {
    flex: 0 0 66px;
  }

  .featured-info {
    position: static;
    padding-top: 0;
  }

  .featured-info h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .featured-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .featured-swatch {
    width: 2.75rem;
    height: 2.75rem;
  }

  .featured-sizes button {
    min-width: 3rem;
    height: 3rem;
  }

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

  .product-detail-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail-image {
    min-height: 300px;
  }
}

@media (max-width: 430px) {
  .wordmark > span {
    display: none;
  }

  .wordmark img {
    display: block;
    width: 2rem;
    height: 2rem;
  }

  .language-toggle {
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0;
  }
}

@media (max-width: 420px) {
  .featured-actions {
    grid-template-columns: minmax(0, 1fr) 3.25rem;
  }

  .featured-benefits {
    gap: 0.45rem;
  }
}

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

/* Persistent light/dark appearance control */
.theme-toggle {
  display: inline-flex;
  width: 3.25rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--store-black);
  transition: background-color 160ms ease, transform 160ms ease;
}

.theme-toggle:hover {
  background: var(--store-soft);
}

.theme-toggle:active {
  transform: scale(0.97);
}

.theme-toggle-track {
  position: relative;
  display: flex;
  width: 2.75rem;
  height: 1.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.28rem;
  border: 1px solid var(--store-line);
  border-radius: 999px;
  background: var(--store-soft);
}

.theme-toggle-glyph {
  position: relative;
  z-index: 1;
  display: grid;
  width: 0.78rem;
  height: 0.78rem;
  place-items: center;
}

.theme-toggle-glyph svg {
  display: block;
  width: 100%;
  height: 100%;
}

.theme-toggle-sun {
  color: #9a6700;
}

.theme-toggle-moon {
  color: #5f5b8a;
}

.theme-toggle-knob {
  position: absolute;
  top: 0.12rem;
  left: 0.13rem;
  width: 1.16rem;
  height: 1.16rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background-color 180ms ease;
}

.theme-toggle[data-current-theme="dark"] .theme-toggle-knob {
  background: #d6b158;
  transform: translateX(1.25rem);
}

:root[data-theme="dark"] {
  --store-black: #f5f5f4;
  --store-ink: #e7e5e4;
  --store-muted: #a8a29e;
  --store-line: #3a3735;
  --store-soft: #252321;
  --store-white: #181715;
  color-scheme: dark;
}

:root[data-theme="dark"] body {
  background: #121110 !important;
  color: var(--store-ink);
}

:root[data-theme="dark"] .announcement-bar {
  background: #201e1c;
  color: #d6d3d1;
}

:root[data-theme="dark"] .site-header {
  border-color: var(--store-line) !important;
  background: rgba(24, 23, 21, 0.96) !important;
}

:root[data-theme="dark"] #mobile-menu,
:root[data-theme="dark"] .bg-white,
:root[data-theme="dark"] .bg-white\/90 {
  background-color: var(--store-white) !important;
}

:root[data-theme="dark"] .bg-brand-cream,
:root[data-theme="dark"] .hover\:bg-brand-cream:hover {
  background-color: var(--store-soft) !important;
}

:root[data-theme="dark"] .text-brand-navy {
  color: var(--store-ink) !important;
}

:root[data-theme="dark"] .text-brand-gray {
  color: var(--store-muted) !important;
}

:root[data-theme="dark"] .border-stone-200,
:root[data-theme="dark"] .border-stone-200\/60,
:root[data-theme="dark"] .border-stone-200\/80,
:root[data-theme="dark"] .border-gray-200,
:root[data-theme="dark"] .border-gray-200\/80,
:root[data-theme="dark"] .ring-gray-200,
:root[data-theme="dark"] .ring-stone-200\/60 {
  border-color: var(--store-line) !important;
  --tw-ring-color: var(--store-line) !important;
}

:root[data-theme="dark"] .desktop-nav a,
:root[data-theme="dark"] .featured-description,
:root[data-theme="dark"] .featured-option-group legend,
:root[data-theme="dark"] .size-heading,
:root[data-theme="dark"] #size-guide-button,
:root[data-theme="dark"] .featured-sizes button,
:root[data-theme="dark"] .detail-panel p,
:root[data-theme="dark"] .detail-panel ul {
  color: #d6d3d1;
}

:root[data-theme="dark"] .language-toggle,
:root[data-theme="dark"] .theme-toggle-track,
:root[data-theme="dark"] .featured-zoom,
:root[data-theme="dark"] .product-label,
:root[data-theme="dark"] .category-btn,
:root[data-theme="dark"] .product-card,
:root[data-theme="dark"] .cod-coverage,
:root[data-theme="dark"] .cod-carrier-card,
:root[data-theme="dark"] #about li,
:root[data-theme="dark"] .cart-item-card,
:root[data-theme="dark"] .qty-stepper,
:root[data-theme="dark"] .qty-stepper .qty-value,
:root[data-theme="dark"] .cod-alert-dialog {
  border-color: var(--store-line) !important;
  background: var(--store-white) !important;
  color: var(--store-ink) !important;
}

:root[data-theme="dark"] .product-label,
:root[data-theme="dark"] .cart-item-card,
:root[data-theme="dark"] .qty-stepper {
  background: var(--store-soft) !important;
}

:root[data-theme="dark"] .featured-main-frame,
:root[data-theme="dark"] .product-detail-image,
:root[data-theme="dark"] .product-card > div:first-child {
  background: #22201e !important;
}

:root[data-theme="dark"] #shop {
  background: #121110 !important;
}

:root[data-theme="dark"] #cod,
:root[data-theme="dark"] #about {
  background: #1b1917 !important;
}

:root[data-theme="dark"] .cod-carrier-card {
  background: #201e1c !important;
}

:root[data-theme="dark"] .cod-carrier-heading h3,
:root[data-theme="dark"] .cod-area-group h3,
:root[data-theme="dark"] .cod-source-links a {
  color: var(--store-ink);
}

:root[data-theme="dark"] .cod-carrier-card > p,
:root[data-theme="dark"] .cod-area-intro,
:root[data-theme="dark"] .cod-note {
  color: #b9b4af;
}

:root[data-theme="dark"] .cod-area-list li,
:root[data-theme="dark"] .cod-note,
:root[data-theme="dark"] .checkout-cod-note {
  border-color: var(--store-line);
  background: #24211d;
  color: #d6d3d1;
}

:root[data-theme="dark"] .cod-area-list .ninja-only-area {
  border-color: #8e3a3a;
  background: #301d1d;
}

:root[data-theme="dark"] .featured-add,
:root[data-theme="dark"] .featured-sizes button.is-selected,
:root[data-theme="dark"] .category-btn.bg-brand-navy,
:root[data-theme="dark"] .product-card .add-btn,
:root[data-theme="dark"] #about li > span,
:root[data-theme="dark"] .cod-intro,
:root[data-theme="dark"] #contact > div > div,
:root[data-theme="dark"] footer {
  background: #080808 !important;
  color: #ffffff !important;
}

:root[data-theme="dark"] .cart-count {
  background: #c9952a;
  color: #11100f;
}

:root[data-theme="dark"] .cod-cta {
  color: #11100f;
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select {
  border-color: var(--store-line) !important;
  background: #201e1c !important;
  color: var(--store-ink) !important;
}

:root[data-theme="dark"] input::placeholder,
:root[data-theme="dark"] textarea::placeholder {
  color: #8f8984;
}

:root[data-theme="dark"] .option-chip {
  border-color: #4a4642;
  color: #d6d3d1;
}

:root[data-theme="dark"] .option-chip.is-selected {
  border-color: #d6b158;
  background: rgba(214, 177, 88, 0.14);
  color: #f5f5f4;
}

:root[data-theme="dark"] .qty-stepper button {
  color: var(--store-ink);
}

:root[data-theme="dark"] .qty-stepper button:hover {
  background: #312e2b;
}

:root[data-theme="dark"] .qty-stepper button:active {
  background: #3a3632;
}

:root[data-theme="dark"] .border-brand-navy {
  border-color: #a8a29e !important;
}

/* Lightweight motion system: scroll reveals and tactile storefront details */
:root {
  --motion-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal] {
  opacity: 0;
}

.motion-ready [data-reveal="up"].is-revealed {
  animation: modern-reveal-up 720ms var(--motion-ease-out) var(--reveal-delay, 0ms) both;
}

.motion-ready [data-reveal="left"].is-revealed {
  animation: modern-reveal-left 760ms var(--motion-ease-out) var(--reveal-delay, 0ms) both;
}

.motion-ready [data-reveal="right"].is-revealed {
  animation: modern-reveal-right 760ms var(--motion-ease-out) var(--reveal-delay, 0ms) both;
}

.motion-ready [data-reveal="scale"].is-revealed {
  animation: modern-reveal-scale 780ms var(--motion-ease-out) var(--reveal-delay, 0ms) both;
}

@keyframes modern-reveal-up {
  from {
    opacity: 0;
    translate: 0 1.8rem;
    scale: 0.985;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes modern-reveal-left {
  from {
    opacity: 0;
    translate: -2.25rem 0;
    scale: 0.99;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes modern-reveal-right {
  from {
    opacity: 0;
    translate: 2.25rem 0;
    scale: 0.99;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes modern-reveal-scale {
  from {
    opacity: 0;
    translate: 0 1rem;
    scale: 0.96;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

.featured-add {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.featured-add::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.18) 46%,
    transparent 72%
  );
  content: "";
  pointer-events: none;
  transform: translateX(-135%);
  transition: transform 720ms var(--motion-ease-out);
}

.featured-add > * {
  position: relative;
  z-index: 1;
}

.cod-carrier-card,
#about img,
#contact > div > div {
  transition:
    transform 420ms var(--motion-ease-out),
    box-shadow 420ms var(--motion-ease-out),
    border-color 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .featured-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  }

  .featured-add:hover::after {
    transform: translateX(135%);
  }

  .cod-carrier-card:hover {
    transform: translateY(-4px);
    border-color: #c9c4bb;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
  }

  #about img:hover {
    transform: translateY(-5px) scale(1.018);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal] {
    opacity: 1;
    animation: none !important;
  }

  .featured-add::after {
    display: none;
  }

  .theme-toggle-knob {
    transition: none;
  }
}
