body.site {
  background: #f4f5f7;
  color: #1f2937;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.site-main {
  min-height: 40vh;
}

.container {
  max-width: 1200px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}
.btn--primary {
  background: #d51f28;
  color: #ffffff;
}
.btn--primary:hover {
  background: #b3161e;
}
.btn--dark {
  background: #1c2430;
  color: #ffffff;
}
.btn--dark:hover {
  background: #2a3340;
}
.btn--ghost {
  background: #ffffff;
  border-color: #e5e7eb;
  color: #1f2937;
}
.btn--ghost:hover {
  border-color: #9ca3af;
}
.btn--lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}
.btn--block {
  width: 100%;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.card--hover:hover {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
  border-color: transparent;
}
.card__body {
  padding: 1.25rem;
}
.card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.topbar {
  background: #1c2430;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .topbar {
    font-size: 0.8125rem;
  }
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.topbar__group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .topbar__group {
    gap: 1.25rem;
  }
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar__item i {
  font-size: 24px;
}
.topbar__link {
  transition: color 0.2s ease;
}
.topbar__link:hover {
  color: #ffffff;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
@media (min-width: 1024px) {
  .site-header__inner {
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.brand {
  order: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.brand img {
  height: 38px;
  width: auto;
}
@media (min-width: 1024px) {
  .brand img {
    height: 46px;
  }
}

.search {
  order: 3;
  flex-basis: 100%;
}
@media (min-width: 1024px) {
  .search {
    order: 2;
    flex-basis: auto;
    flex: 1;
    display: flex;
    justify-content: center;
  }
}
.search__box {
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .search__box {
    width: 90%;
    max-width: 620px;
    margin: 0 auto;
  }
}
.search__form {
  display: flex;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search__form:focus-within {
  border-color: #d51f28;
  box-shadow: 0 0 0 3px rgba(213, 31, 40, 0.12);
}
.search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0.7rem 1rem;
  font-size: 0.9375rem;
  color: #1f2937;
}
.search__input::-moz-placeholder {
  color: #9ca3af;
}
.search__input::placeholder {
  color: #9ca3af;
}
.search__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  background: #d51f28;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.search__btn:hover {
  background: #b3161e;
}
.search__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.search__results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  max-height: 400px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14);
}
.search__results[hidden] {
  display: none;
}
.search__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  color: #1f2937;
  transition: background-color 0.2s ease;
}
.search__item + .search__item {
  border-top: 1px solid #e5e7eb;
}
.search__item:hover {
  background: #f4f5f7;
}
.search__item-thumb {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  overflow: hidden;
  background: #f4f5f7;
}
.search__item-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search__item-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.search__item-name {
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search__item-code {
  font-size: 0.78rem;
  color: #9ca3af;
}
.search__empty {
  padding: 0.85rem;
  font-size: 0.9375rem;
  color: #9ca3af;
  text-align: center;
}

.actions {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .actions {
    order: 3;
    margin-left: 0;
    gap: 0.75rem;
  }
}

.action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 768px) {
  .action {
    padding: 0.5rem 0.9rem;
  }
}
.action__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.action__icon i {
  font-size: 1.5rem;
  color: #1f2937;
}
.action__text {
  display: none;
  flex-direction: column;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .action__text {
    display: flex;
  }
}
.action__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
}
.action__sub {
  font-size: 0.75rem;
  color: #6b7280;
}
.action--account:hover {
  background: #f4f5f7;
}
.action--wish:hover {
  background: #f4f5f7;
}
.action--cart {
  background: #1c2430;
}
.action--cart .action__icon svg {
  color: #ffffff;
}
.action--cart .action__title, .action--cart .action__sub {
  color: #ffffff;
}
.action--cart .action__sub {
  color: rgba(255, 255, 255, 0.7);
}
.action--cart:hover {
  background: #2a3340;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.navbar__inner {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.navbar__inner::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1024px) {
  .navbar__inner {
    overflow-x: visible;
    flex-wrap: wrap;
  }
}
.navbar__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  color: #1f2937;
  transition: color 0.2s ease;
}
@media (min-width: 1024px) {
  .navbar__item {
    padding: 0.95rem 1rem;
  }
}
.navbar__item svg {
  width: 0.7rem;
  height: 0.7rem;
  opacity: 0.6;
}
.navbar__item:hover {
  color: #d51f28;
}

.megamenu {
  display: none;
}
@media (min-width: 1024px) {
  .megamenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 40;
    width: 560px;
    max-width: 80vw;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
}
.megamenu__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.2s ease;
}
.megamenu__card:hover {
  background: #f4f5f7;
}
.megamenu__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  border-radius: 4px;
  background: #f4f5f7;
  overflow: hidden;
}
.megamenu__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.megamenu__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1f2937;
  transition: color 0.2s ease;
}
.megamenu__card:hover .megamenu__label {
  color: #d51f28;
}

@media (min-width: 1024px) {
  .navbar__item:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.dropdown {
  display: none;
}
@media (min-width: 1024px) {
  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 40;
    display: block;
    min-width: 220px;
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .dropdown .dropdown {
    top: -0.4rem;
    left: 100%;
    margin-left: 0.4rem;
    transform: translateX(6px);
  }
}
.dropdown__item {
  position: relative;
}
.dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1f2937;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown__link:hover {
  background: #f4f5f7;
  color: #d51f28;
}
.dropdown__icon {
  font-size: 1.1rem;
  color: #6b7280;
}
.dropdown__text {
  flex: 1;
}
.dropdown__arrow {
  flex-shrink: 0;
  width: 0.7rem;
  height: 0.7rem;
  opacity: 0.5;
}

@media (min-width: 1024px) {
  .navbar__item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown__item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.hero {
  padding: 1.5rem 0;
}
.hero__slider {
  position: relative;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}
.hero__slider::before {
  content: "";
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}
.hero__slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 45%, transparent 28%, #000 80%);
  mask-image: radial-gradient(ellipse 95% 65% at 25% 45%, transparent 28%, #000 80%);
}
.hero__corner {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 3;
  pointer-events: none;
}
.hero__corner--tl {
  top: 16px;
  left: 16px;
  border-top: 3px solid #d51f28;
  border-left: 3px solid #d51f28;
}
.hero__corner--br {
  bottom: 16px;
  right: 16px;
  border-bottom: 3px solid #d51f28;
  border-right: 3px solid #d51f28;
}
.hero__slide {
  position: relative;
  display: none;
  align-items: center;
}
.hero__slide.is-active {
  display: flex;
}
.hero__slide {
  min-height: 340px;
  padding: 1.75rem;
  background-size: cover;
  background-position: center;
}
@media (min-width: 1024px) {
  .hero__slide {
    min-height: 470px;
    padding: 3.5rem;
  }
}
.hero__slide--placeholder {
  background-color: #ffffff;
  background-image: linear-gradient(#eef0f3 1px, transparent 1px), linear-gradient(90deg, #eef0f3 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}
.hero__title {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }
}
.hero__title {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.hero__desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #ffffff;
  max-width: 420px;
}
.hero__btn {
  margin-top: 2rem;
}
.hero__ph-label {
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translateY(-50%);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  color: #9ca3af;
  font-weight: 600;
}
.hero__dots {
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .hero__dots {
    left: 3.5rem;
    bottom: 2rem;
  }
}
.hero__dot {
  width: 22px;
  height: 5px;
  border-radius: 99px;
  border: 0;
  background: #e5e7eb;
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.2s ease;
}
.hero__dot.is-active {
  background: #d51f28;
  width: 32px;
}
.hero__arrows {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .hero__arrows {
    right: 2rem;
    bottom: 2rem;
  }
}
.hero__arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #1f2937;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero__arrow:hover {
  background: #1c2430;
  border-color: #1c2430;
  color: #ffffff;
}
.hero__arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.brands {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.brands__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
}
.brands__track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.brands__track::-webkit-scrollbar {
  display: none;
}
.brands__item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  transition: opacity 0.2s ease;
  opacity: 0.65;
}
.brands__item:hover {
  opacity: 1;
}
.brands__item img {
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.2s ease;
}
.brands__item:hover img {
  filter: grayscale(0);
}
.brands__name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.brands__item:hover .brands__name {
  color: #1f2937;
}
.brands__nav {
  flex-shrink: 0;
  display: flex;
  gap: 0.5rem;
}
.brands__arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #1f2937;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.brands__arrow:hover {
  background: #f4f5f7;
  border-color: #9ca3af;
}
.brands__arrow svg {
  width: 1rem;
  height: 1rem;
}

.section {
  padding: 2.5rem 0;
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d51f28;
}
.section__title {
  margin-top: 0.35rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1f2937;
}
.section__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.2s ease;
}
.section__more i {
  font-size: 1rem;
}
.section__more:hover {
  color: #d51f28;
}

.product {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.product:hover {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
  border-color: #9ca3af;
}
.product__media {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  background: #f4f5f7;
}
.product__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: #d51f28;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}
.product__wish {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #ffffff;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.product__wish svg {
  width: 1.1rem;
  height: 1.1rem;
}
.product__wish i {
  font-size: 1.15rem;
}
.product__wish:hover {
  color: #d51f28;
  border-color: #d51f28;
}
.product__wish.is-active {
  color: #ffffff;
  background: #d51f28;
  border-color: #d51f28;
}
.product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.9rem 1rem 1rem;
}
.product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.product__brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product__code {
  flex-shrink: 0;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: #f4f5f7;
  font-size: 0.75rem;
  color: #6b7280;
}
.product__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  transition: color 0.2s ease;
}
.product__name:hover {
  color: #d51f28;
}
.product__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.9rem;
}
@media (min-width: 1024px) {
  .product__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 3px;
  }
}
.product__prices {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.product__old {
  font-size: 0.8125rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.product__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2937;
}
.product__login {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #d51f28;
}
.product__cart {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  border: 0;
  border-radius: 6px;
  background: #1c2430;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.product__cart i {
  font-size: 20px;
}
.product__cart:hover {
  background: #2a3340;
}

.cat-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cat-card:hover {
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
  border-color: #9ca3af;
}
.cat-card__media {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f5f7;
  color: #9ca3af;
  overflow: hidden;
}
.cat-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cat-card__media i {
  font-size: 2rem;
}
.cat-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1rem;
  min-width: 0;
}
.cat-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.cat-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #d51f28;
}
.cat-card__more i {
  font-size: 0.95rem;
}
.cat-card:hover .cat-card__name {
  color: #d51f28;
}

.footer {
  background: #1c2430;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3rem;
}
.footer__top {
  padding: 3.5rem 0 2.5rem;
}
.footer__logo {
  display: inline-flex;
}
.footer__logo img {
  height: 48px;
  width: auto;
}
.footer__about {
  margin-top: 1.1rem;
  max-width: 320px;
  font-size: 0.8125rem;
  line-height: 1.7;
}
.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.footer__social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer__social-link i {
  font-size: 1.1rem;
}
.footer__social-link:hover {
  background: #d51f28;
  border-color: #d51f28;
  color: #ffffff;
}
.footer__heading {
  margin-bottom: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #ffffff;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.footer__contact-item i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.15rem;
  color: #d51f28;
}
.footer__contact-item a {
  transition: color 0.2s ease;
}
.footer__contact-item a:hover {
  color: #ffffff;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
}
@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__cards {
  height: 26px;
  width: auto;
}

.pdetail {
  padding: 2rem 0;
}

.pgallery__main {
  aspect-ratio: 1/1;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}
.pgallery__main img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.pgallery__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.pgallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pgallery__thumb:hover {
  border-color: #9ca3af;
}
.pgallery__thumb.is-active {
  border-color: #d51f28;
}

.pinfo__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1f2937;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}
.pinfo__meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
  font-size: 0.9375rem;
  color: #1f2937;
}
.pinfo__meta span {
  color: #6b7280;
}
.pinfo__meta a {
  color: #d51f28;
}
.pinfo__meta a:hover {
  text-decoration: underline;
}
.pinfo__meta .is-in {
  color: #16a34a;
}
.pinfo__meta .is-out {
  color: #d51f28;
}
.pinfo__price {
  margin: 1.25rem 0;
}
.pinfo__badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  background: #d51f28;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}
.pinfo__price-row {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.pinfo__old {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.pinfo__now {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}
.pinfo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.pinfo__actions .btn i {
  font-size: 1.2rem;
}
.pinfo__wish {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #1f2937;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.pinfo__wish i {
  font-size: 1.2rem;
}
.pinfo__wish:hover {
  color: #d51f28;
  border-color: #d51f28;
}
.pinfo__wish.is-active {
  color: #d51f28;
  border-color: #d51f28;
}
.pinfo__trust {
  margin: 1.5rem 0;
}
.pinfo__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-align: center;
}
.pinfo__trust-item i {
  font-size: 1.5rem;
  color: #1c2430;
}
.pinfo__share {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.pinfo__share-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #1c2430;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.pinfo__share-link i {
  font-size: 1.1rem;
}
.pinfo__share-link:hover {
  opacity: 0.85;
}
.pinfo__share-link--tw {
  background: #1da1f2;
}
.pinfo__share-link--fb {
  background: #1877f2;
}
.pinfo__share-link--in {
  background: #0a66c2;
}
.pinfo__share-link--wa {
  background: #25d366;
}

.pdesc {
  margin: 2.5rem 0;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}
.pdesc__head {
  padding: 0.9rem 1.25rem;
  background: #1c2430;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}
.pdesc__body {
  padding: 1.5rem;
  color: #1f2937;
  line-height: 1.7;
}
.pdesc__body :where(p, ul, ol) {
  margin-bottom: 1rem;
}
.pdesc__body :where(ul, ol) {
  padding-left: 1.25rem;
}

.crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1.25rem 0 0.5rem;
  font-size: 0.8125rem;
}
.crumb__link {
  color: #6b7280;
  transition: color 0.2s ease;
}
.crumb__link:hover {
  color: #d51f28;
}
.crumb__sep {
  font-size: 0.7rem;
  color: #9ca3af;
}
.crumb__current {
  color: #1f2937;
  font-weight: 600;
}

.catalog {
  padding-bottom: 3rem;
}
.catalog__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0.5rem 0 1.5rem;
}
.catalog__subcats {
  margin-bottom: 2rem;
}
.catalog__count {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: #6b7280;
}

.filter {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.25rem;
}
@media (min-width: 1024px) {
  .filter {
    position: sticky;
    top: 1.5rem;
  }
}
.filter__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid #e5e7eb;
}
.filter__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}
.filter__clear {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #d51f28;
  transition: color 0.2s ease;
}
.filter__clear:hover {
  color: #b3161e;
}
.filter__group {
  padding: 0.85rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.filter__group:last-of-type {
  border-bottom: 0;
}
.filter__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 0.65rem;
}
.filter__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 14rem;
  overflow-y: auto;
}
.filter__check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9375rem;
  color: #1f2937;
  cursor: pointer;
}
.filter__check input {
  width: 1rem;
  height: 1rem;
  accent-color: #d51f28;
  cursor: pointer;
}
.filter__check:hover {
  color: #d51f28;
}
.filter__price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.filter__price-input {
  width: 100%;
  min-width: 0;
  padding: 0.5rem 0.6rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.8125rem;
  color: #1f2937;
  background: #ffffff;
}
.filter__price-input:focus {
  outline: none;
  border-color: #1c2430;
}
.filter__price-sep {
  color: #9ca3af;
}
.filter__apply {
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 6px;
  background: #1c2430;
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.filter__apply:hover {
  background: #2a3340;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.pager__btn {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #1c2430;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pager__btn i {
  font-size: 1.1rem;
}
.pager__btn:hover {
  background: #1c2430;
  color: #ffffff;
  border-color: #1c2430;
}
.pager__btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.pager__info {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
}

.auth {
  padding: 2.5rem 0;
}
@media (min-width: 1024px) {
  .auth {
    padding: 4rem 0;
  }
}
.auth__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .auth__card {
    padding: 2rem;
  }
}
.auth__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1c2430;
}
.auth__subtitle {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
}
.auth__alert {
  margin-top: 1.25rem;
  padding: 0.625rem 0.875rem;
  border-radius: 6px;
  font-size: 0.8125rem;
}
.auth__alert--success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
}
.auth__form {
  margin-top: 1.5rem;
}
.auth__legend {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2a3340;
  padding-bottom: 0.5rem;
  margin: 1.5rem 0 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.auth__legend:first-of-type {
  margin-top: 0;
}
.auth__field {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.375rem;
}
.auth__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1f2937;
}
.auth__input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.9375rem;
  color: #1f2937;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.auth__input::-moz-placeholder {
  color: #9ca3af;
}
.auth__input::placeholder {
  color: #9ca3af;
}
.auth__input:focus {
  outline: none;
  border-color: #d51f28;
  box-shadow: 0 0 0 3px rgba(213, 31, 40, 0.12);
}
.auth__input--area {
  resize: vertical;
  min-height: 4.5rem;
}
.auth__error {
  font-size: 0.75rem;
  color: #d51f28;
}
.auth__row {
  margin-top: 1rem;
}
.auth__check {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  cursor: pointer;
}
.auth__check input {
  width: 1rem;
  height: 1rem;
  accent-color: #d51f28;
}
.auth__submit {
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: #d51f28;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.auth__submit:hover {
  background: #b3161e;
}
.auth__alt {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
}
.auth__alt a {
  color: #d51f28;
  font-weight: 600;
}
.auth__alt a:hover {
  text-decoration: underline;
}

.cart {
  align-items: start;
}
.cart__items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.cart__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cart__item:hover {
  border-color: #9ca3af;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}
.cart__item.is-loading {
  opacity: 0.6;
  pointer-events: none;
}
.cart__thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f4f5f7;
}
.cart__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart__info {
  flex: 1 1 12rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cart__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.cart__name:hover {
  color: #d51f28;
}
.cart__code {
  align-self: flex-start;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: #f4f5f7;
  font-size: 0.75rem;
  color: #6b7280;
}
.cart__unit {
  font-size: 0.8125rem;
  color: #6b7280;
}
.cart__stepper {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}
.cart__step {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #f4f5f7;
  color: #1c2430;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cart__step i {
  font-size: 0.95rem;
}
.cart__step:hover {
  background: #1c2430;
  color: #ffffff;
}
.cart__step-input {
  width: 2.75rem;
  border: 0;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f2937;
  background: #ffffff;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.cart__step-input:focus {
  outline: none;
}
.cart__step-input::-webkit-outer-spin-button, .cart__step-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart__line-total {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2937;
  white-space: nowrap;
}
.cart__remove-btn {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #6b7280;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.cart__remove-btn i {
  font-size: 1.15rem;
}
.cart__remove-btn:hover {
  color: #d51f28;
  border-color: #d51f28;
  background: rgba(213, 31, 40, 0.05);
}
.cart__summary {
  position: sticky;
  top: 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}
.cart__summary-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.cart__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: #6b7280;
  padding: 0.4rem 0;
}
.cart__summary-row--discount span:last-child {
  color: #d51f28;
  font-weight: 600;
}
.cart__summary-row--total {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e5e7eb;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f2937;
}
.cart__order {
  margin-top: 1.25rem;
}
.cart__order-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1f2937;
}
.cart__order-btn {
  width: 100%;
  margin-top: 1rem;
}

.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  gap: 1rem;
  padding: 4rem 1.5rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}
.empty__icon {
  font-size: 3.5rem;
  color: #9ca3af;
}
.empty__text {
  font-size: 1rem;
  color: #6b7280;
}

.order-done {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  gap: 1.25rem;
  min-height: 360px;
  padding: 4rem 1.5rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}
.order-done__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  gap: 1.25rem;
}
.order-done__spinner {
  width: 3rem;
  height: 3rem;
  border: 3px solid #e5e7eb;
  border-top-color: #d51f28;
  border-radius: 50%;
  animation: order-done-spin 0.7s linear infinite;
}
.order-done__loading-text {
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
}
.order-done__result {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  gap: 1rem;
  animation: order-done-in 0.35s ease both;
}
.order-done__icon {
  font-size: 4rem;
  line-height: 1;
  color: #16a34a;
}
.order-done__title {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
}
.order-done__text {
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
}
.order-done__text strong {
  color: #1f2937;
  font-weight: 700;
}
.order-done__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

@keyframes order-done-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes order-done-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.acc-nav {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .acc-nav {
    position: sticky;
    top: 1.5rem;
  }
}
.acc-nav__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: #b3161e;
}
.acc-nav__avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.acc-nav__avatar i {
  font-size: 1.4rem;
}
.acc-nav__who {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.3;
}
.acc-nav__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.acc-nav__company {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.acc-nav__menu {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}
.acc-nav__menu form {
  display: contents;
}
.acc-nav__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.acc-nav__link i {
  font-size: 1.25rem;
  color: #6b7280;
  transition: color 0.2s ease;
}
.acc-nav__link:hover {
  background: #f4f5f7;
  color: #d51f28;
}
.acc-nav__link:hover i {
  color: #d51f28;
}
.acc-nav__link.is-active {
  background: rgba(213, 31, 40, 0.07);
  color: #d51f28;
}
.acc-nav__link.is-active i {
  color: #d51f28;
}
.acc-nav__link--logout {
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
  border-radius: 0;
  margin-top: 0.35rem;
  padding-top: 0.95rem;
}

.acc-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
}
.acc-card--flush {
  padding: 0;
  overflow: hidden;
}

.otable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.otable th {
  padding: 0.85rem 1.25rem;
  background: #1c2430;
  border-bottom: 1px solid #1c2430;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: left;
  white-space: nowrap;
}
.otable td {
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  color: #1f2937;
  vertical-align: middle;
}
.otable tbody tr:last-child td {
  border-bottom: 0;
}
.otable tbody tr {
  transition: background-color 0.2s ease;
}
.otable tbody tr:hover {
  background: rgba(244, 245, 247, 0.6);
}
.otable__no {
  font-weight: 700;
  white-space: nowrap;
}
.otable__num {
  text-align: right;
  white-space: nowrap;
}
.otable__total {
  font-weight: 800;
}
.otable__action {
  text-align: right;
}
.otable__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1c2430;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.otable__btn i {
  font-size: 0.9rem;
}
.otable__btn:hover {
  background: #1c2430;
  border-color: #1c2430;
  color: #ffffff;
}
@media (max-width: 767px) {
  .otable thead {
    display: none;
  }
  .otable tbody tr {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
  }
  .otable tbody tr:last-child {
    border-bottom: 0;
  }
  .otable td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    border: 0;
  }
  .otable td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
  }
  .otable td:not([data-label])::before {
    content: none;
  }
  .otable .otable__action {
    justify-content: flex-end;
  }
}

.obadge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.obadge--pending {
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
}
.obadge--preparing {
  background: rgba(28, 36, 48, 0.1);
  color: #1c2430;
}
.obadge--shipped {
  background: rgba(2, 132, 199, 0.12);
  color: #0369a1;
}
.obadge--delivered {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}
.obadge--cancelled {
  background: rgba(213, 31, 40, 0.1);
  color: #d51f28;
}

.odetail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.odetail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.odetail__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.odetail__meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
}
.odetail__meta-value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f2937;
}
.odetail__heading {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid #e5e7eb;
}
.odetail__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: #1f2937;
}
.odetail__list span {
  font-weight: 600;
  color: #6b7280;
  margin-right: 0.25rem;
}

.page {
  max-width: 860px;
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}
.page__head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}
.page__title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1f2937;
}
.page__summary {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}
.page__media {
  margin: 0 0 1.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}
.page__media img {
  width: 100%;
  height: auto;
  display: block;
}
.page__body {
  color: #1f2937;
  font-size: 0.9375rem;
  line-height: 1.8;
}
.page__body :where(h2, h3, h4) {
  margin: 1.75rem 0 0.75rem;
  font-weight: 700;
  color: #1f2937;
}
.page__body :where(p, ul, ol) {
  margin-bottom: 1rem;
}
.page__body :where(ul, ol) {
  padding-left: 1.25rem;
}
.page__body a {
  color: #d51f28;
}
.page__body a:hover {
  text-decoration: underline;
}
.page__body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}