:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --ink: #101010;
  --ink-soft: #5f5f5f;
  --line: #e6e6e6;
  --line-dark: #d2d2d2;
  --accent: #111111;
  --radius: 14px;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "IBM Plex Sans Thai", "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
}

h1 {
  margin: 0 0 1.2rem;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 90px;
  width: 130px;
  object-fit: contain;
}

.mobile-cart-shortcut {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: #111;
  background: #fff;
}

.mobile-cart-shortcut:hover,
.menu-toggle:hover {
  background: #f7f7f7;
  border-color: #b9b9b9;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.mobile-cart-shortcut svg {
  width: 20px;
  height: 20px;
  stroke: #111;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  padding: 0 4px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: #111;
  stroke-width: 2;
  fill: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}

.main-nav-center {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

.main-nav a,
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 4px 12px;
  background: transparent;
  color: #151515;
  font-family: inherit;
}

.main-nav-right .top-account-link,
.mobile-bottom-nav a.top-account-link {
  border: 1px solid var(--line-dark);
  background: #ffffff;
  border-radius: 999px;
}

.main-nav-right .top-account-link:hover {
  background: #f2f2f2;
  transform: none;
}

.main-nav a:hover,
.lang-toggle:hover {
  border-color: var(--line-dark);
  background: #f7f7f7;
  transform: translateY(-1px);
}

.nav-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.nav-icon svg {
  width: 100%;
  height: 100%;
  stroke: #111;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-dropdown {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.nav-divider-left {
  margin-left: 4px;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.lang-toggle {
  cursor: pointer;
  min-width: 0;
  justify-content: center;
  gap: 5px;
}

.lang-caret {
  display: inline-flex;
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.lang-caret svg {
  width: 100%;
  height: 100%;
  stroke: #111;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 170px;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.18s ease;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu,
.lang-dropdown.is-open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-dropdown:hover .lang-caret,
.lang-dropdown:focus-within .lang-caret,
.lang-dropdown.is-open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu a {
  display: block;
  font-size: 13px;
  border-radius: 8px;
  padding: 8px 10px;
}

.lang-menu a:hover {
  background: #f6f6f6;
}

main {
  min-height: calc(100vh - 160px);
  padding-bottom: 50px;
}

.mobile-bottom-nav {
  display: none;
}

.home-slider {
  width: 100%;
}

.single-hero img {
  display: block;
  width: 100%;
  height: min(88vh, 860px);
  object-fit: cover;
}

.benefit-band {
  background: #efefef;
  padding: 12px 0;
}

.homepage-wrap {
  margin-top: 26px;
}

.benefit-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.benefit-tabs article {
  border: 0;
  border-radius: 0;
  padding: 10px 12px;
  background: transparent;
  min-height: 0;
  transition: none;
  box-shadow: none;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 10px;
  align-items: start;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.benefit-tabs article:hover {
  transform: none;
  box-shadow: none;
}

.benefit-tabs article:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.benefit-icon svg {
  width: 23px;
  height: 23px;
  stroke: #000;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-tabs h3 {
  margin: 0 0 2px;
  font-size: 17px;
  font-family: "Manrope", sans-serif;
  line-height: 1.2;
  grid-column: 2;
}

.benefit-tabs p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.35;
  grid-column: 2;
}

.home-section {
  margin-top: 34px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.section-head.compact {
  margin-bottom: 10px;
}

.section-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #6d6d6d;
  font-weight: 700;
}

.section-title {
  margin: 6px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 3.2vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
}

.section-note {
  margin: 8px 0 0;
}

.muted {
  color: var(--ink-soft);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.best-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-clickable {
  cursor: pointer;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.product-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f4f4f4;
}

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

.card-body {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.small-meta {
  font-size: 12px;
}

.product-name {
  margin-top: 3px;
  min-height: 40px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.price {
  font-size: 20px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}

.product-rating-mini,
.product-rating-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 12px;
  color: #766a61;
}

.product-rating-mini span,
.product-rating-detail span,
.product-review-stars {
  color: #d6a63f;
  letter-spacing: 0;
}

.product-rating-mini strong,
.product-rating-detail strong {
  color: #211b18;
}

.product-rating-mini em {
  font-style: normal;
}

.product-rating-detail {
  margin-bottom: 12px;
  font-size: 14px;
}

.product-rating-detail a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 16px;
  align-items: start;
}

.product-review-grid.is-single {
  grid-template-columns: 1fr;
}

.product-review-list {
  display: grid;
  gap: 10px;
}

.product-review-empty,
.product-review-item,
.product-review-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.product-review-empty {
  color: #766a61;
}

.product-review-item strong {
  display: block;
  margin-top: 4px;
}

.product-review-item p {
  margin: 8px 0;
  color: #51443b;
}

.product-review-photo {
  display: block;
  width: min(180px, 100%);
  margin-top: 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f6f2ec;
}

.product-review-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-review-form {
  background: #fbfaf8;
}

.stock {
  color: #696969;
  font-size: 12px;
}

.actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #cbcbcb;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  color: #131313;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  background: #f7f7f7;
  border-color: #b9b9b9;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.btn:disabled,
.btn[disabled],
.btn.is-disabled {
  cursor: not-allowed;
}

.btn:disabled:hover,
.btn[disabled]:hover,
.btn.is-disabled:hover {
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: #111;
  border-color: #111;
  color: #fff;
}

.btn-primary:hover {
  background: #2b2b2b;
  border-color: #2b2b2b;
}

.btn-danger {
  background: #af2626;
  border-color: #af2626;
  color: #fff;
}

.btn-danger:hover {
  background: #c83939;
  border-color: #c83939;
  color: #fff;
}

.btn-primary:disabled:hover,
.btn-primary[disabled]:hover {
  background: #111;
  border-color: #111;
  color: #fff;
}

.btn-danger:disabled:hover,
.btn-danger[disabled]:hover {
  background: #af2626;
  border-color: #af2626;
  color: #fff;
}

.btn-cart {
  gap: 6px;
}

.btn-cart svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.new-in-section {
  border-top: 1px solid #e9e9e9;
  padding-top: 24px;
}

.new-in-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 0;
  background: #f0f0f0;
  border-radius: var(--radius);
  overflow: hidden;
}

.new-in-visual {
  margin: 0;
  min-height: 560px;
  overflow: hidden;
}

.new-in-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.new-in-content {
  padding: clamp(34px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: #111;
  background: #fff;
}

.new-in-badge {
  align-self: flex-start;
  background: #ff6a00;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.new-in-product {
  width: min(220px, 55%);
  height: auto;
  display: block;
  margin: 2px 0 6px 30px;
  border-radius: 12px;
}

.new-in-content h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.new-in-content p {
  margin: 0;
  max-width: 520px;
  color: #242424;
  font-size: 20px;
  line-height: 1.6;
}

.new-in-cta {
  margin-top: 8px;
  width: fit-content;
  min-width: 340px;
  padding: 17px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.new-in-cta svg {
  width: 22px;
  height: 22px;
  stroke: #ff6a00;
  stroke-width: 2.1;
  fill: none;
}

.new-in-cta:hover {
  background: #111;
  transform: translateY(-1px);
}

.story-panel {
  border: 1px solid #ded6c9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7f2ea 0%, #efe3cf 100%);
  padding: 24px;
}

.story-panel h2 {
  margin: 8px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
}

.story-panel p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.story-tone {
  display: block;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.story-card {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #fdfdfd 0%, #f2f2f2 100%);
  padding: 16px;
}

.story-card h3 {
  margin: 0 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.story-card p {
  margin: 0;
  color: #555;
}

.tone-earth { background: #efe6d7; }
.tone-grey { background: #f2f2f2; }
.tone-warm { background: #e7dfd2; }
.tone-light { background: #f8f8f8; }
.tone-earth-soft { background: #ece4d8; }

.about-hero {
  background: linear-gradient(170deg, #fafafa 0%, #f1f2f4 100%);
  border-bottom: 1px solid #e2e4e8;
  padding: 54px 0 48px;
}

.about-hero-premium {
  background: transparent;
  overflow: hidden;
  padding: 0;
  border: 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 540px);
  gap: 18px;
  align-items: center;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.12);
  transition: transform 0.22s ease;
}

.about-hero-visual-full {
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  border: 0;
}

.about-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-hero-inner {
  max-width: 980px;
}

.about-hero h1 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.about-hero p {
  margin: 0;
  color: #3f4450;
  font-size: 16px;
  max-width: 760px;
}

.about-section {
  padding: 36px 0 0;
}

.about-brand-intro {
  padding-top: 28px;
}

.about-intro-kicker {
  margin-bottom: 10px;
}

.about-intro-title {
  margin: 0;
  max-width: 760px;
  font-family: "Manrope", "IBM Plex Sans Thai", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.about-intro-lead {
  margin: 14px 0 0;
  max-width: 820px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
  color: #303848;
  font-weight: 400;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.about-card-premium {
  background: linear-gradient(145deg, #ffffff 0%, #f7f8fb 100%);
}

.tone-grey-soft {
  background: linear-gradient(145deg, #f4f5f7 0%, #eceff3 100%);
  border-color: #d8dde5;
}

.about-card-full.tone-earth-wide {
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 52%, #242424 100%);
  border-color: #2b2b2b;
}

.about-card-full {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
}

.about-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-card-icon svg {
  width: 40px;
  height: 40px;
  stroke: #171717;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-card-full.tone-earth-wide h2,
.about-card-full.tone-earth-wide p {
  color: #f5f5f5;
}

.about-card-full.tone-earth-wide .about-card-icon {
  background: rgba(255, 255, 255, 0.12);
}

.about-card-full.tone-earth-wide .about-card-icon svg {
  stroke: #ffffff;
}

.about-card-visual {
  padding: 0;
  overflow: hidden;
}

.about-card-visual-combo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: #f3f4f6;
}

.about-card-visual-combo img {
  width: 100%;
  height: 100%;
  min-height: 304px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.about-card {
  border: 1px solid #dedfe3;
  border-radius: 16px;
  background: linear-gradient(145deg, #f4ecdf 0%, #ecdecc 55%, #e3d0b8 100%);
  padding: 18px;
}

.about-card h2 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.about-card p {
  margin: 0;
  color: #4e5462;
}

.about-values-wrap {
  padding-top: 18px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.tone-earth-card {
  background: linear-gradient(160deg, #f3ece2 0%, #e9decd 100%);
  border-color: #d8cbb8;
}

.tone-grey-card {
  background: linear-gradient(160deg, #f2f3f5 0%, #e7ebf0 100%);
  border-color: #d2d9e3;
}

.tone-dark-card {
  background: linear-gradient(160deg, #efefef 0%, #e5e5e5 100%);
  border-color: #d7d7d7;
}

.tone-dark-card h3,
.tone-dark-card p {
  color: #111111;
}

.about-value-card {
  border: 1px solid #e3e5ea;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.about-value-card h3 {
  margin: 0 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.about-value-card p {
  margin: 0;
  color: #565d6e;
  font-size: 13px;
}

.about-editorial {
  padding-top: 20px;
}

.about-editorial-panel {
  border: 1px solid #ded4ec;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4efff 0%, #ece3fb 52%, #e4d8f6 100%);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 0;
  overflow: hidden;
}

.about-editorial-copy {
  padding: clamp(22px, 3vw, 34px);
}

.about-editorial-copy h2 {
  margin: 8px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 3.3vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.about-editorial-copy p {
  margin: 0;
  color: #454c5d;
}

.about-editorial-media {
  margin: 0;
}

.about-editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.about-cta-panel {
  border: 1px solid #dde2ea;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f8fb 100%);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.available-at {
  padding-bottom: 10px;
}

.prefooter-available {
  margin-top: 50px;
  border-top: 1px solid #e1e1e1;
  background: #fff;
  padding: 22px 0 33px;
}

.social-highlights {
  margin-top: 42px;
  padding: 34px 0 8px;
  border-top: 1px solid #ededed;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.social-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.social-highlight-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  transition: transform .18s ease, box-shadow .18s ease;
}

.social-highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
}

.social-highlight-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.22), transparent 36%);
}

.social-highlight-card > * {
  position: relative;
  z-index: 1;
}

.social-highlight-card strong {
  font-size: 24px;
  line-height: 1;
}

.social-highlight-card span {
  font-weight: 800;
}

.social-highlight-card em {
  font-style: normal;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.social-highlight-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  margin-bottom: auto;
}

.social-highlight-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-highlight-card.is-tiktok { background: linear-gradient(135deg, #050505, #262626 55%, #fe2c55); }
.social-highlight-card.is-instagram { background: linear-gradient(135deg, #7f39fb, #e1306c 56%, #fcb045); }
.social-highlight-card.is-facebook { background: linear-gradient(135deg, #0b5ed7, #1877f2); }
.social-highlight-card.is-x { background: linear-gradient(135deg, #101010, #4a4a4a); }

.tiktok-feed-section {
  padding: 22px 0 4px;
}

.tiktok-feed-card {
  margin-top: 14px;
  border: 1px solid #e6e8ee;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
  padding: 12px;
  display: flex;
  justify-content: center;
}

.tiktok-feed-card .tiktok-embed {
  margin: 0 !important;
}

.available-head {
  margin-bottom: 8px;
  opacity: 1;
}

.available-title {
  margin: 5px 0 4px;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.available-sub {
  margin: 0;
  font-size: 11px;
  color: #1f1f1f;
  font-weight: 500;
}

.market-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.market-grid a {
  display: block;
}

.market-grid img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.contact-strip {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f7f7;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-strip p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}

.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
}

.auth-page-wrap {
  margin-top: 26px;
  max-width: 640px;
}

.auth-panel {
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

.auth-menu-tabs {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Manrope", sans-serif;
  margin-bottom: 14px;
}

.auth-menu-tabs a {
  font-size: 17px;
  color: #6f6f6f;
  font-weight: 700;
  transition: color 0.2s ease;
}

.auth-menu-tabs a.is-active {
  color: #111;
}

.auth-menu-tabs span {
  color: #9a9a9a;
}

.auth-otp-form {
  gap: 14px;
}

.otp-input-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 360px;
}

.otp-digit {
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid #cecece;
  padding: 12px 0;
  height: 56px;
}

.otp-digit:focus {
  border-color: #222;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.btn.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.86;
  cursor: wait;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: tsc-spin 0.72s linear infinite;
  flex: 0 0 auto;
}

@keyframes tsc-spin {
  to {
    transform: rotate(360deg);
  }
}

.auth-phone-input {
  width: 100%;
  font-family: "Manrope", "IBM Plex Sans Thai", sans-serif;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  padding: 14px 15px;
  border-radius: 12px;
  border-color: #bfc4cc;
  background: #fffdfa;
}

.rewards-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.rewards-points-card {
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  background: linear-gradient(140deg, #f8f8f8, #ededed);
  padding: 20px;
}

.rewards-points-card h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.rewards-points-big {
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 800;
  line-height: 1;
}

.rewards-tier-card {
  border-radius: 16px;
  padding: 18px;
  color: #101010;
  border: 1px solid #dedede;
  background: #f7f7f7;
}

.tier-silver { background: linear-gradient(150deg, #f7f7f7, #e5e5e5); }
.tier-gold { background: linear-gradient(150deg, #f8f2df, #e8d7a5); }
.tier-platinum { background: linear-gradient(150deg, #efefef, #d5d5d5); }

.rewards-tier-card h3 {
  margin: 0 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 14px;
}

.profile-hero-main {
  border: 1px solid #dfe3e8;
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f8fb 100%);
}

.profile-hero-main h1 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.03em;
}

.profile-point-strip {
  margin-top: 14px;
  border: 1px solid #d8dee8;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.profile-point-strip span {
  font-size: 12px;
  color: #596273;
}

.profile-point-strip strong {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.profile-tier-card {
  border-radius: 16px;
  padding: 18px;
  color: #101010;
  border: 1px solid #dedede;
  background: #f7f7f7;
}

.profile-tier-card.tier-silver {
  background: linear-gradient(150deg, #f7f7f7, #d9dee5);
  color: #26313d;
  border-color: #c7ced7;
}

.profile-tier-card.tier-gold {
  background: linear-gradient(150deg, #fff7df, #d8b864);
  color: #5f4310;
  border-color: #cfb06a;
}

.profile-tier-card.tier-platinum {
  background: linear-gradient(150deg, #fbfdff, #c9d9ea);
  color: #24384c;
  border-color: #b8c7d8;
}

.profile-tier-card h3 {
  margin: 0 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
}

.profile-detail-panel {
  border-color: #dde2ea;
  background: #fff;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.profile-detail-card {
  border: 1px solid #e5e8ef;
  border-radius: 12px;
  padding: 12px;
  background: #fbfcfe;
}

.profile-detail-card span {
  display: block;
  color: #5c6678;
  font-size: 12px;
  margin-bottom: 4px;
}

.profile-detail-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.profile-detail-card em {
  display: inline-flex;
  margin-top: 8px;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 8px;
}

.profile-detail-card em.is-ok {
  background: #ebf8f0;
  color: #17663c;
}

.profile-detail-card em.is-pending {
  background: #fff2e8;
  color: #915221;
}

.profile-line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.profile-line-connected {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(18,107,48,.18);
  background: #e7f7ec;
  border-radius: 8px;
}

.profile-line-connected img,
.profile-line-avatar-fallback {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
  flex: 0 0 auto;
}

.profile-line-avatar-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #06c755;
}

.profile-line-meta {
  min-width: 0;
  flex: 1;
}

.profile-line-name-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.profile-line-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-weight: 800;
  flex: 0 0 auto;
}

.filter-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
  padding: 14px;
  height: fit-content;
  position: sticky;
  top: 98px;
}

.filter-panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-family: "Manrope", sans-serif;
}

.filter-contact {
  margin-top: 14px;
  border-top: 1px dashed #d6d6d6;
  padding-top: 12px;
}

.filter-contact p {
  margin: 0 0 5px;
  color: #666;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.profile-side {
  position: sticky;
  top: 92px;
}

.profile-menu {
  display: grid;
  gap: 8px;
}

.profile-menu a {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  background: #fff;
}

.profile-menu a .nav-icon svg {
  stroke: #222;
}

.profile-menu a:hover {
  background: #f7f7f7;
}

.profile-menu a.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.profile-menu a.is-active .nav-icon svg {
  stroke: #fff;
}

.profile-menu-logout {
  margin-top: 6px;
  background: #fff !important;
  color: #b42323 !important;
  border-color: #d84b4b !important;
  text-align: center;
}

.profile-menu-logout:hover {
  background: #fff4f4 !important;
  border-color: #bf2f2f !important;
  color: #9f1f1f !important;
}

.profile-tier-rewards-mobile {
  display: none;
}

.checkout-ship-card {
  background: linear-gradient(180deg, #fcfcfc, #f6f7f8);
  border-color: #dfe3e8;
}

.checkout-payment-card {
  background: #fafafa;
}

.checkout-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.checkout-payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  padding: 13px;
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.checkout-payment-option strong,
.checkout-payment-option small {
  display: block;
}

.checkout-payment-option > span {
  display: flex;
  flex-direction: column;
}

.checkout-payment-logo {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 8px;
}

.checkout-payment-logo.is-card {
  max-width: 210px;
  height: 42px;
}

.checkout-payment-logo.is-promptpay {
  max-width: 190px;
  height: 42px;
}

.checkout-payment-logo.is-kplus,
.checkout-payment-logo.is-truemoney {
  max-width: 210px;
  height: 42px;
}

.checkout-payment-option small {
  min-height: 36px;
  margin-top: 3px;
  color: #766a61;
}

.checkout-payment-option strong {
  min-height: 42px;
  line-height: 1.32;
}

.checkout-payment-option:has(input:checked) {
  border-color: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.checkout-card-fields,
.checkout-payment-note {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: #fff;
}

.payment-status-panel {
  text-align: center;
}

.payment-status-icon {
  width: 60px;
  height: 60px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #fff5dc;
  color: #7b5200;
  font-size: 30px;
  font-weight: 900;
}

.payment-status-icon.is-paid {
  background: #e8f7ee;
  color: #176239;
}

.payment-qr-wrap img,
.payment-qr-inline img {
  width: min(280px, 100%);
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.payment-qr-inline {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: #fbfcff;
}

.checkout-address-form label {
  font-weight: 700;
  font-size: 12px;
  color: #333;
}

.checkout-address-form input {
  background: #fff;
}

.checkout-combo {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #cfd7e2;
  padding: 10px 11px;
  background: #fff;
  font-size: 14px;
}

.checkout-combo:disabled {
  background: #f1f3f6;
  color: #8a94a6;
}

.checkout-ship-card h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

.checkout-address-mode-row {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 8px;
  width: 100%;
}

.checkout-address-existing {
  margin-bottom: 10px;
}

.checkout-address-divider {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 12px 0 12px;
}

input, textarea, select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line-dark);
  padding: 10px 11px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: #111;
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #858585;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

th {
  font-weight: 700;
  color: #3d3d3d;
}

.alert {
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 14px;
  border: 1px solid;
}

.alert-error {
  background: #fff1f1;
  color: #891f1f;
  border-color: #f4cbcb;
}

.alert-success {
  background: #f1fff6;
  color: #0f5f2f;
  border-color: #c5ebd3;
}

.line-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.line-login-btn:hover {
  background: #20d86a !important;
  border-color: #20d86a !important;
  color: #fff;
}

.line-login-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 24px;
  border-radius: 7px;
  background: #fff;
  color: #06c755;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid #d8d8d8;
  background: #f3f3f3;
  padding: 24px 0 22px;
  color: #5f5f5f;
  font-size: 13px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-left {
  display: grid;
  gap: 10px;
}

.footer-brand-mark {
  display: grid;
  gap: 1px;
}

.footer-brand-title {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #151515;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-brand-sub {
  font-family: "IBM Plex Sans Thai", "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6f6f6f;
  font-weight: 600;
}

.footer-contact {
  display: grid;
  gap: 4px;
  align-items: start;
  justify-content: flex-start;
  font-size: 13px;
  text-align: left;
  margin-right: auto;
}

.footer-contact span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: #6e6e6e;
}

.footer-contact a {
  font-size: 18px;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  color: #101010;
  letter-spacing: 0.01em;
}

.footer-copy {
  font-size: 12px;
  color: #787878;
  line-height: 1.35;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid #d1d1d1;
  background: #fff;
  color: #111;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.footer-social a:hover {
  background: #f9f9f9;
  border-color: #aaa;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 95;
}

.cart-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, calc(100vw - 18px));
  height: 100vh;
  height: 100dvh;
  background: #fff;
  border-left: 1px solid #ddd;
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.12);
  transform: translateX(104%);
  transition: transform 0.26s ease;
  z-index: 96;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

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

.cart-drawer-head {
  border-bottom: 1px solid #e5e5e5;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-head h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

.cart-drawer-close {
  border: 1px solid #dbdbdb;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-drawer-close svg {
  width: 16px;
  height: 16px;
  stroke: #111;
  fill: none;
  stroke-width: 2;
}

.cart-drawer-items {
  overflow: auto;
  padding: 10px 12px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
}

.cart-drawer-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.cart-drawer-item img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-drawer-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.cart-drawer-meta {
  font-size: 12px;
}

.cart-drawer-name-secondary {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.35;
}

.cart-drawer-price {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.cart-drawer-foot {
  border-top: 1px solid #e5e5e5;
  padding: 12px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: grid;
  gap: 10px;
}

.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.cart-drawer-total strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.cart-drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cart-fly-image {
  position: fixed;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none;
  z-index: 120;
  transform: translate(0, 0) scale(1);
  transition: transform 0.52s cubic-bezier(.2,.75,.2,1), opacity 0.52s ease;
}

.cart-floating-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  z-index: 130;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.22s ease;
}

.cart-floating-notice.is-show {
  opacity: 1;
  transform: translateY(0);
}

.cart-floating-notice.is-error {
  background: #9b2222;
}

.admin-body {
  background: #eff1f5;
  color: #111;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 266px minmax(0, 1fr);
}

.admin-sidebar {
  background: #fff;
  color: #211b18;
  padding: 20px 14px 14px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #dde2ea;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #211b18;
  text-decoration: none;
  padding: 8px 10px 12px;
  border-bottom: 1px solid #ece3da;
}

.admin-sidebar-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.admin-sidebar-brand strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.admin-sidebar-brand span {
  display: block;
  font-size: 11px;
  color: #766a61;
  margin-top: 2px;
}

.admin-side-nav {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.admin-side-nav a {
  display: block;
  color: #51443b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.18s ease;
  border: 1px solid transparent;
}

.admin-side-nav a:hover {
  background: #f7f4ef;
  border-color: #eadfd3;
}

.admin-side-nav a.is-active {
  background: #211b18;
  color: #fff;
  border-color: #211b18;
}

.admin-side-foot {
  margin-top: auto;
  border-top: 1px solid #ece3da;
  padding: 12px 10px 4px;
  display: grid;
  gap: 10px;
}

.admin-side-user strong {
  display: block;
  font-size: 12px;
  color: #211b18;
}

.admin-side-user span {
  font-size: 11px;
  color: #766a61;
}

.admin-logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8cbbd;
  border-radius: 10px;
  background: #f7f4ef;
  color: #211b18;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  text-decoration: none;
}

.admin-logout-btn:hover {
  background: #eee6dc;
}

.admin-stage {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: #fff;
  border-bottom: 1px solid #dde2ea;
  min-height: 74px;
  padding: 12px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-sidebar-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #d8dce4;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.admin-topbar-title h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.admin-topbar-title p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #677285;
}

.admin-main {
  min-height: 0;
  padding: 20px 24px 30px;
}

.admin-page-wrap {
  max-width: 1460px;
  margin: 0 auto;
}

.admin-card-head h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.admin-card-head p {
  margin: 6px 0 12px;
  color: #5d6675;
}

.admin-form-panel {
  border-radius: 14px;
}

.admin-inline-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-link-user {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #111;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn-link-user:hover {
  color: #2f2f2f;
  background: #f7f7f7;
  border-radius: 6px;
  box-shadow: 0 0 0 4px #f7f7f7;
}

.admin-preview-box {
  background: #f4f6f9;
  border: 1px solid #dde2ea;
  border-radius: 10px;
  padding: 10px 12px;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.admin-footer {
  margin-top: auto;
  border-top: 1px solid #d9e0ea;
  background: #f6f8fb;
  padding: 14px 24px;
}

.admin-footer-wrap {
  max-width: 1460px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #586276;
  font-size: 12px;
}

.admin-footer-wrap p {
  margin: 0;
}

.admin-login-header {
  border-bottom: 1px solid #dde2ea;
  background: #fff;
  padding: 12px 20px;
}

.admin-login-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}

.admin-login-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.admin-login-main {
  padding: 18px;
}

.admin-container-tight {
  max-width: 980px;
  margin-top: 8px;
}

.admin-body .panel {
  border-color: #dbe1ea;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(13, 24, 39, 0.04);
}

.admin-body th {
  background: #f6f8fc;
  position: sticky;
  top: 0;
  z-index: 1;
}

.admin-body td,
.admin-body th {
  border-bottom-color: #e3e8ef;
  padding: 11px 10px;
}

.admin-body input,
.admin-body textarea,
.admin-body select {
  border-color: #d0d8e3;
  background: #fff;
}

.admin-body .section-title {
  font-size: 34px;
  letter-spacing: -0.03em;
}

.admin-modern-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #211b18 0%, #654d3d 58%, #c8a15f 100%);
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 20px 48px rgba(45, 34, 27, .16);
}

.admin-modern-hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0;
}

.admin-modern-hero p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
}

.admin-modern-hero-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.admin-modern-hero-icon svg {
  width: 42px;
  height: 42px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-modern-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.admin-modern-summary article {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(54, 41, 33, .1);
  box-shadow: 0 10px 26px rgba(13, 24, 39, .06);
}

.admin-modern-summary span {
  display: block;
  color: #677285;
  font-size: 13px;
  font-weight: 700;
}

.admin-modern-summary strong {
  display: block;
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  color: #211b18;
  letter-spacing: 0;
}

.admin-modern-panel {
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef3f9;
  color: #253247;
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
}

.admin-status-pill.is-pending { background: #fff5dc; color: #7b5200; }
.admin-status-pill.is-completed { background: #e8f7ee; color: #176239; }
.admin-status-pill.is-cancelled { background: #fdecec; color: #8a1f1f; }
.admin-status-pill.is-pending_payment { background: #eef4ff; color: #254b85; }
.admin-status-pill.is-paid { background: #e8f7ee; color: #176239; }

.admin-platform-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  font-weight: 800;
}

.admin-platform-logo img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #e3e8ef;
  padding: 2px;
}

code {
  background: #f5f5f5;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .best-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .market-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .single-hero img {
    height: 35vh;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    z-index: 300;
    left: -282px;
    transition: left 0.2s ease;
    width: 266px;
  }

  .admin-sidebar.is-open {
    left: 0;
  }

  .admin-sidebar-toggle {
    display: inline-flex;
  }

  .admin-topbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .admin-main {
    padding: 12px;
  }

  .benefit-tabs,
  .about-hero-grid,
  .about-intro-grid,
  .about-editorial-panel,
  .about-values-grid,
  .new-in-layout,
  .story-tone,
  .story-grid,
  .form-grid.two,
  .form-grid.three,
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .best-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .social-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tiktok-feed-section {
    padding-top: 16px;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .product-review-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .rewards-hero {
    grid-template-columns: 1fr;
  }

  .profile-hero {
    grid-template-columns: 1fr;
  }

  .profile-detail-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-card-full {
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .about-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .about-card-icon svg {
    width: 30px;
    height: 30px;
  }

  .about-hero-visual img {
    min-height: 320px;
  }

  .profile-side {
    position: static;
    top: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .profile-side.panel {
    padding: 12px;
    width: 100%;
    max-width: 100%;
  }

  .profile-side h3 {
    margin-bottom: 8px !important;
    font-size: 14px;
  }

  .profile-menu {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
  }

  .profile-menu a {
    flex: 0 0 auto;
    max-width: min(72vw, 230px);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 999px;
  }

  .profile-menu a .nav-icon {
    flex: 0 0 auto;
  }

  .profile-menu .profile-menu-mobile-hidden {
    display: none;
  }

  .profile-menu-logout {
    margin-top: 0;
  }

  .profile-tier-rewards-mobile {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    background: #111;
    border-color: #111;
    color: #fff;
  }

  .new-in-visual {
    min-height: 460px;
  }

  .new-in-content p {
    font-size: 18px;
  }

  .new-in-cta {
    min-width: 300px;
  }
}

@media (max-width: 760px) {
  .mobile-cart-shortcut { display: inline-flex; }
  .menu-toggle { display: none; }

  .single-hero {
    overflow: hidden;
  }

  .container {
    width: calc(100% - 28px);
  }

  .section-head {
    align-items: flex-start;
    gap: 10px;
  }

  .section-head .btn {
    width: 100%;
    justify-content: center;
  }

  .homepage-wrap {
    padding-top: 18px;
  }

  .home-section {
    margin: 26px 0;
  }

  .auth-panel {
    padding: 16px;
    border-radius: 14px;
  }

  .auth-menu-tabs a {
    font-size: 15px;
  }

  .otp-input-wrap {
    max-width: 100%;
    gap: 6px;
  }

  .otp-digit {
    font-size: 24px;
    height: 50px;
  }

  .benefit-band {
    padding: 10px 0 8px;
  }

  .benefit-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }

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

  .benefit-tabs::-webkit-scrollbar-thumb {
    background: transparent;
  }

  .benefit-tabs article {
    min-width: 0;
    padding: 8px 7px 7px;
    grid-template-columns: 26px 1fr;
    column-gap: 6px;
    border-radius: 0;
    box-shadow: none;
  }

  .benefit-icon {
    width: 24px;
    height: 24px;
  }

  .benefit-icon svg {
    width: 16px;
    height: 16px;
  }

  .benefit-tabs h3 {
    font-size: 11px;
    margin: 0 0 1px;
    line-height: 1.2;
  }

  .benefit-tabs p {
    font-size: 9.5px;
    line-height: 1.25;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 10px;
    width: min(320px, calc(100vw - 20px));
    border: 1px solid var(--line-dark);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a,
  .main-nav-center > li > a,
  .main-nav-right > li > a,
  .lang-toggle {
    border-radius: 10px;
    justify-content: flex-start;
    width: 100%;
  }

  .main-nav-center,
  .main-nav-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-left: 0;
  }

  .lang-dropdown,
  .lang-menu {
    width: 100%;
    position: static;
  }

  .lang-dropdown {
    border-left: 0;
    border-top: 1px solid var(--line);
    margin-left: 0;
    padding-left: 0;
    margin-top: 6px;
    padding-top: 8px;
  }

  .nav-divider-left {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
  }

  .lang-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border: 1px dashed var(--line-dark);
    box-shadow: none;
    margin-top: 4px;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .best-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero {
    padding: 34px 0 26px;
  }

  .about-hero.about-hero-premium {
    padding: 0;
  }

  .about-hero h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .about-editorial-copy h2 {
    font-size: clamp(26px, 9vw, 36px);
  }

  .about-intro-lead {
    line-height: 1.68;
  }

  .single-hero img {
    width: 120%;
    max-width: none;
    height: 22vh;
    object-fit: cover;
    object-position: center center;
    margin-left: -10%;
  }

  .mobile-bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: #fff;
    border-top: 1px solid #dfdfdf;
  }

  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.01em;
    margin: 4px 3px;
    border-radius: 10px;
  }

  .mobile-bottom-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    margin-bottom: 3px;
  }

  .mobile-bottom-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-nav a.is-active {
    color: #111;
    background: #f1f1f1;
  }

  body {
    padding-bottom: 56px;
  }

  .profile-content {
    min-width: 0;
  }

  .profile-hero-main,
  .profile-tier-card,
  .profile-detail-panel,
  .profile-line-panel,
  .profile-side.panel {
    border-radius: 12px;
    padding: 14px;
  }

  .profile-hero-main h1 {
    font-size: 28px;
  }

  .profile-point-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .profile-point-strip strong {
    font-size: 28px;
  }

  .profile-tier-card h3,
  .rewards-tier-card h3 {
    font-size: 26px;
  }

  .profile-line-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .profile-line-head h2 {
    font-size: 20px;
    line-height: 1.25;
  }

  .profile-line-connect-btn {
    width: 100%;
    justify-content: center;
  }

  .profile-line-connected {
    align-items: flex-start;
    border-radius: 12px;
  }

  .profile-detail-card strong,
  .profile-line-name-row strong {
    overflow-wrap: anywhere;
  }

  .profile-menu {
    margin-left: -2px;
    margin-right: -2px;
    width: calc(100% + 4px);
    max-width: calc(100% + 4px);
  }

  .profile-menu a,
  .profile-menu-logout {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    max-width: min(68vw, 210px);
  }

  .profile-menu .profile-menu-mobile-hidden {
    display: none;
  }

  .profile-tier-rewards-mobile {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    background: #111;
    border-color: #111;
    color: #fff;
  }

  .profile-layout .table-wrap,
  .profile-content .table-wrap {
    margin-left: -4px;
    margin-right: -4px;
    padding-bottom: 4px;
  }

  .profile-layout table,
  .profile-content table {
    min-width: 620px;
  }

  .payment-qr-inline {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .checkout-address-mode-row {
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 24px);
  }

  .single-hero img {
    width: 132%;
    height: 20vh;
    margin-left: -16%;
  }

  .benefit-tabs article {
    padding: 7px 6px;
    grid-template-columns: 22px 1fr;
    column-gap: 5px;
  }

  .benefit-icon {
    width: 20px;
    height: 20px;
  }

  .benefit-icon svg {
    width: 14px;
    height: 14px;
  }

  .benefit-tabs h3 {
    font-size: 10px;
  }

  .benefit-tabs p {
    font-size: 9px;
  }

  .market-grid {
    grid-template-columns: 1fr;
  }

  .social-highlight-grid {
    grid-template-columns: 1fr;
  }

  .social-highlight-card {
    min-height: 170px;
  }

  .grid,
  .best-row,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .card-body {
    gap: 10px;
  }

  .card .actions,
  .card .actions form,
  .btn-cart {
    width: 100%;
  }

  .btn-cart {
    justify-content: center;
  }

  .new-in-visual {
    min-height: 310px;
  }

  .new-in-content h3 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .new-in-content p {
    font-size: 16px;
  }

  .new-in-cta {
    width: 100%;
    min-width: 0;
    padding: 15px 18px;
  }

  .story-panel {
    padding: 22px 16px;
  }

  .story-panel h2 {
    font-size: 28px;
  }

  .profile-layout {
    gap: 10px;
  }

  .profile-detail-grid {
    gap: 8px;
  }

  .profile-line-connected {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .profile-line-connected img,
  .profile-line-avatar-fallback {
    width: 48px;
    height: 48px;
  }

  .profile-side h3 {
    display: none;
  }

  .profile-menu {
    gap: 6px;
    padding-bottom: 6px;
  }

  .profile-menu a,
  .profile-menu-logout {
    max-width: min(64vw, 190px);
    padding: 8px 10px;
    font-size: 12px;
  }

  .rewards-points-big {
    font-size: 42px;
  }

  th,
  td {
    padding: 9px 8px;
    font-size: 12px;
  }

  .about-card-visual-combo img,
  .about-editorial-media img {
    min-height: 230px;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}

@media (max-width: 980px) {
  .admin-modern-hero {
    align-items: flex-start;
  }

  .admin-modern-hero-icon {
    display: none;
  }

  .admin-modern-summary {
    grid-template-columns: 1fr;
  }
}
