:root {
  --mocbt-bg: #f1f5f9;
  --mocbt-card: #ffffff;
  --mocbt-text: #0f172a;
  --mocbt-muted: #64748b;
  --mocbt-accent: var(--primary-red, #ef4444);
  --mocbt-radius: 18px;
  --mocbt-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  --mocbt-font: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body.mocbt-store-body {
  font-family: var(--mocbt-font);
  background: var(--mocbt-bg);
  color: var(--mocbt-text);
  padding-bottom: 88px;
  line-height: 1.5;
}
@media (min-width: 992px) { body.mocbt-store-body { padding-bottom: 0; } }

/* Header */
.mocbt-header {
  background: var(--mocbt-card);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.04);
  z-index: 1030;
}
.mocbt-header__top {
  background: var(--primary-blue, #2563eb);
  color: #fff;
  font-size: 0.8rem;
}
.mocbt-header__main { padding: 0.65rem 0; }
.mocbt-header__main .nav-link {
  font-weight: 600;
  color: var(--mocbt-text);
  padding: 0.5rem 0.85rem !important;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.mocbt-header__main .nav-link:hover,
.mocbt-header__main .nav-link:focus {
  color: var(--primary-blue);
  background: color-mix(in srgb, var(--primary-blue) 10%, transparent);
}
.mocbt-brand__text {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
}
.mocbt-brand__logo { max-height: 48px; width: auto; object-fit: contain; }
.mocbt-search { max-width: 380px; gap: 0.5rem; }
.mocbt-mega-menu {
  min-width: 560px;
  border: none;
  box-shadow: var(--mocbt-shadow);
  border-radius: var(--mocbt-radius);
  border-top: 4px solid var(--primary-yellow);
}
.mocbt-mega-link {
  display: block;
  padding: 0.4rem 0;
  color: var(--mocbt-text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s, transform 0.2s;
}
.mocbt-mega-link:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
}

/* Hero */
.mocbt-hero-slide {
  min-height: 300px;
  background-color: var(--primary-blue);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: #fff;
  position: relative;
}
.mocbt-hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--primary-blue) 55%, #0f172a);
  opacity: 0.75;
}
.mocbt-hero-slide__content { position: relative; z-index: 1; max-width: 420px; }
.mocbt-hero-slide h2 { font-weight: 800; font-size: 1.85rem; margin-bottom: 0.5rem; }
.mocbt-promo-card {
  background: var(--primary-red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  border: 3px solid color-mix(in srgb, var(--primary-yellow) 80%, transparent);
}
.mocbt-service-bar {
  background: var(--primary-blue);
  overflow: hidden;
  border: 3px solid var(--primary-green);
}
.mocbt-service-bar .col-6:nth-child(2) { background: color-mix(in srgb, #000 8%, transparent); }
.mocbt-service-bar .col-6:nth-child(3),
.mocbt-service-bar .col-lg-3:nth-child(3) { background: color-mix(in srgb, var(--primary-red) 35%, var(--primary-blue)); }
.mocbt-service-bar .col-6:nth-child(4),
.mocbt-service-bar .col-lg-3:nth-child(4) { background: color-mix(in srgb, var(--primary-green) 25%, var(--primary-blue)); }

.mocbt-cat-circle { text-decoration: none; color: var(--mocbt-text); display: block; }
.mocbt-cat-circle__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-blue) 12%, #fff);
  border: 2px solid color-mix(in srgb, var(--primary-blue) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem;
  font-size: 1.25rem;
  color: var(--primary-blue);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.mocbt-cat-circle:hover .mocbt-cat-circle__icon {
  transform: translateY(-5px);
  box-shadow: var(--mocbt-shadow);
  border-color: var(--primary-yellow);
  color: var(--primary-red);
}

.mocbt-tab-pills .nav-link {
  border: 2px solid transparent;
  color: var(--mocbt-muted);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: all 0.2s;
}
.mocbt-tab-pills .nav-link.active {
  color: #fff;
  background: var(--primary-red);
  border-color: var(--primary-red);
}
.mocbt-tab-pills .nav-link:hover:not(.active) {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

/* Product cards — modern premium layout */
.mocbt-product-grid .col-6 { min-width: 0; }
.mocbt-product-card {
  display: flex;
  flex-direction: column;
  background: var(--mocbt-card);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  height: 100%;
  border: 2px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}
.mocbt-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--mocbt-shadow);
  border-color: var(--primary-blue);
}
.mocbt-product-card__media {
  position: relative;
  padding: 1rem 1rem 0.75rem;
  background: #f8fafc;
  aspect-ratio: 1 / 1;
  max-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mocbt-product-card__overlay {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--primary-blue) 0%, transparent);
  transition: background 0.3s;
  pointer-events: none;
}
.mocbt-product-card:hover .mocbt-product-card__overlay {
  background: color-mix(in srgb, var(--primary-blue) 8%, transparent);
}
.mocbt-pcard-badges {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  max-width: calc(100% - 3.5rem);
}
.mocbt-pcard-badge {
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.22rem 0.4rem;
  border-radius: 6px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.mocbt-pcard-badge--flash { background: var(--primary-red); }
.mocbt-pcard-badge--new { background: var(--primary-green); }
.mocbt-pcard-badge--trend { background: var(--primary-blue); }
.mocbt-pcard-badge--off { background: var(--primary-yellow); color: #0f172a; }
.mocbt-pcard-badge--stock { background: var(--mocbt-muted); }
.mocbt-product-card__img {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}
.mocbt-product-card:hover .mocbt-product-card__img { transform: scale(1.06); }
.mocbt-product-card__actions {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.25s, transform 0.25s;
}
.mocbt-product-card:hover .mocbt-product-card__actions { opacity: 1; transform: none; }
.mocbt-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: var(--mocbt-text);
  transition: background 0.2s, color 0.2s;
}
.mocbt-icon-btn:hover { background: var(--primary-blue); color: #fff; }
.mocbt-product-card__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.mocbt-product-card__price-row { margin-top: auto; }
.mocbt-product-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mocbt-product-card--slider .mocbt-product-card__title { min-height: 2.35em; font-size: 0.86rem; }
.mocbt-product-card--slider .mocbt-product-card__order { padding: 0.55rem 0.75rem; font-size: 0.82rem; }
.mocbt-product-card--compact .mocbt-product-card__media { max-height: 140px; aspect-ratio: auto; min-height: 120px; }
.mocbt-product-card--compact .mocbt-product-card__img { max-height: 110px; }
.mocbt-product-card--compact .mocbt-product-card__body { padding: 0.65rem; }
.mocbt-product-card--compact .mocbt-product-card__title { min-height: auto; font-size: 0.8rem; }
.mocbt-product-card__title a { color: inherit; text-decoration: none; }
.mocbt-product-card__title a:hover { color: var(--primary-blue); }
.mocbt-product-card__model { font-size: 0.78rem; color: var(--mocbt-muted); margin: 0; }
.mocbt-product-card__price { margin: 0; }
.mocbt-product-card__price-current { color: var(--primary-red); font-weight: 800; font-size: 1.05rem; }
.mocbt-product-card__price-old {
  color: var(--mocbt-muted);
  text-decoration: line-through;
  font-size: 0.82rem;
  margin-right: 0.35rem;
}
.mocbt-product-card__order {
  width: 100%;
  margin-top: auto;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}
.mocbt-product-card__soldout-badge {
  display: block;
  text-align: center;
  padding: 0.5rem;
  background: var(--mocbt-muted);
  color: #fff;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: auto;
}
.mocbt-product-card--showcase .mocbt-product-card__media {
  min-height: 280px;
  max-height: none;
  aspect-ratio: 4 / 3;
  padding: 1.25rem;
}
.mocbt-product-card--showcase .mocbt-product-card__img { max-height: 240px; height: auto; }
.mocbt-product-card--showcase .mocbt-product-card__title { font-size: 1.05rem; min-height: auto; }
.mocbt-product-card--showcase .mocbt-product-card__order { padding: 0.75rem 1rem; }
.mocbt-btn--outline {
  background: transparent;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  font-weight: 700;
}
.mocbt-btn--outline:hover { background: var(--primary-blue); color: #fff; }

.mocbt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}
.mocbt-btn--primary {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--primary-red) 40%, transparent);
}
.mocbt-btn--primary:hover {
  filter: brightness(1.06);
  color: #fff;
  transform: translateY(-1px);
}
.mocbt-btn--light { background: #fff; color: var(--primary-blue); font-weight: 700; }
.mocbt-btn--light:hover { background: var(--primary-yellow); color: var(--mocbt-text); }

.mocbt-sidebar-card,
.mocbt-trending-cats {
  background: var(--mocbt-card);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.mocbt-price-sm { color: var(--primary-red); font-weight: 700; font-size: 0.85rem; }

.mocbt-btn--disabled,
.mocbt-btn--disabled:disabled {
  background: #94a3b8 !important;
  border-color: #94a3b8 !important;
  color: #fff !important;
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.92;
  box-shadow: none !important;
  transform: none !important;
}
.mocbt-badge--stock {
  background: var(--primary-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mocbt-chat-widget {
  position: fixed;
  bottom: 96px;
  right: 20px;
  z-index: 1040;
  font-family: inherit;
}
.mocbt-chat-widget__toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border: none;
  border-radius: 999px;
  background: var(--primary-green);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--primary-green) 40%, transparent);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.mocbt-chat-widget__toggle:hover { transform: translateY(-2px); color: #fff; }
.mocbt-chat-widget__toggle.is-open { background: var(--primary-blue); }
.mocbt-chat-widget__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.mocbt-chat-widget__toggle-text { font-size: 0.85rem; }
.mocbt-chat-widget__panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: min(340px, calc(100vw - 32px));
  background: var(--mocbt-card);
  border: 2px solid var(--primary-blue);
  border-radius: var(--mocbt-radius);
  box-shadow: var(--mocbt-shadow);
  overflow: hidden;
  animation: mocbtChatIn 0.25s ease;
}
@keyframes mocbtChatIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.mocbt-chat-widget__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  background: var(--primary-blue);
  color: #fff;
}
.mocbt-chat-widget__header small { display: block; opacity: 0.9; font-size: 0.75rem; }
.mocbt-chat-widget__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.25rem;
}
.mocbt-chat-widget__form {
  padding: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}
.mocbt-chat-widget__form .form-label { font-size: 0.75rem; font-weight: 600; margin-bottom: 0.2rem; }

.mocbt-mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1035;
  background: var(--mocbt-card);
  border-top: 3px solid var(--primary-blue);
  display: flex;
  justify-content: space-around;
  padding: 0.55rem 0 calc(0.55rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}
.mocbt-mobile-nav__item {
  flex: 1;
  text-align: center;
  background: none;
  border: none;
  color: var(--mocbt-muted);
  font-size: 0.68rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.mocbt-mobile-nav__item:hover,
.mocbt-mobile-nav__item:focus { color: var(--primary-blue); }
.mocbt-mobile-nav__item i { display: block; font-size: 1.15rem; margin-bottom: 0.2rem; }

.mocbt-footer {
  position: relative;
  background: #0f172a;
  color: #e2e8f0;
  border-top: 4px solid var(--primary-yellow);
  overflow: hidden;
}
.mocbt-footer__accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.mocbt-footer__accent--green { background: var(--primary-green); top: -40px; left: 10%; }
.mocbt-footer__accent--blue { background: var(--primary-blue); bottom: -50px; right: 8%; }
.mocbt-footer__brand { color: #fff; font-weight: 800; font-size: 1.35rem; margin-bottom: 0.75rem; }
.mocbt-footer__tagline { color: #cbd5e1; font-size: 0.92rem; line-height: 1.6; max-width: 320px; }
.mocbt-footer__heading {
  color: var(--primary-yellow);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.mocbt-footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  padding: 0.28rem 0;
  transition: color 0.2s, padding-left 0.2s;
}
.mocbt-footer-links a:hover { color: var(--primary-green); padding-left: 4px; }
.mocbt-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: #e2e8f0;
}
.mocbt-footer-contact a { color: #fff; text-decoration: none; }
.mocbt-footer-contact a:hover { color: var(--primary-green); }
.mocbt-footer__social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.mocbt-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.mocbt-footer__social a:hover { background: var(--primary-green); color: #fff; }
.mocbt-footer__divider { border-color: rgba(255,255,255,0.12); }
.mocbt-footer__legal { color: #94a3b8; font-size: 0.85rem; }
.mocbt-footer__news-btn {
  background: var(--primary-red);
  color: #fff;
  border: none;
  font-weight: 700;
}
.mocbt-footer__news-btn:hover { background: var(--primary-blue); color: #fff; }

.mocbt-search-results {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(540px, 94vw);
  max-height: 420px;
  overflow-y: auto;
  background: var(--mocbt-card);
  border-radius: var(--mocbt-radius);
  box-shadow: var(--mocbt-shadow);
  border: 2px solid var(--primary-blue);
  z-index: 1050;
  padding: 0.5rem;
}
.mocbt-search-item {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
}
.mocbt-search-item:hover { background: color-mix(in srgb, var(--primary-blue) 10%, transparent); }

.mocbt-card {
  background: var(--mocbt-card);
  border-radius: var(--mocbt-radius);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.skeleton-card {
  background: #e2e8f0;
  border-radius: var(--mocbt-radius);
  min-height: 260px;
  animation: mocbt-pulse-skel 1.2s ease-in-out infinite;
}
@keyframes mocbt-pulse-skel {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

[data-mocbt-theme="dark"] body.mocbt-store-body {
  --mocbt-bg: #0f172a;
  --mocbt-card: #1e293b;
  --mocbt-text: #f1f5f9;
  --mocbt-muted: #94a3b8;
}
[data-mocbt-theme="dark"] .mocbt-header { background: #1e293b; }
[data-mocbt-theme="dark"] .mocbt-product-card__media { background: #0f172a; }

/* Alipu showcase */
.mocbt-alipu-section {
  background: var(--primary-blue);
  padding: 3rem 0;
  border-top: 6px solid var(--primary-yellow);
  border-bottom: 6px solid var(--primary-red);
}
.mocbt-alipu-head { color: #fff; }
.mocbt-alipu-badge {
  display: inline-block;
  background: var(--primary-yellow);
  color: var(--mocbt-text);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
.mocbt-alipu-title { font-size: 2rem; font-weight: 800; color: #fff; }
.mocbt-alipu-sub { color: rgba(255,255,255,0.88); }
.mocbt-alipu-section .mocbt-btn--outline { border-color: #fff; color: #fff; }
.mocbt-alipu-section .mocbt-btn--outline:hover { background: #fff; color: var(--primary-blue); }

/* Shop subcategory grid */
.mocbt-subcat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--mocbt-card);
  border: 2px solid rgba(15,23,42,0.08);
  border-radius: var(--mocbt-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.mocbt-subcat-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: var(--mocbt-shadow);
  color: inherit;
}
.mocbt-subcat-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-blue) 12%, #fff);
  border: 3px solid var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-blue);
}
.mocbt-subcat-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.mocbt-subcat-card__count { font-size: 0.85rem; color: var(--mocbt-muted); }
.mocbt-shop-cat-link {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  color: var(--mocbt-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
  transition: background 0.2s, color 0.2s;
}
.mocbt-shop-cat-link:hover,
.mocbt-shop-cat-link.is-active {
  background: color-mix(in srgb, var(--primary-blue) 12%, transparent);
  color: var(--primary-blue);
  font-weight: 700;
}

/* Product detail */
.mocbt-pd-gallery { padding: 1rem; }
.mocbt-pd-gallery__main {
  position: relative;
  background: #f8fafc;
  border-radius: 12px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mocbt-pd-gallery__img { max-height: 420px; width: 100%; object-fit: contain; }
.mocbt-pd-gallery__empty { padding: 4rem; color: var(--mocbt-muted); }
.mocbt-pd-gallery__expand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.mocbt-pd-thumb {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 4px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}
.mocbt-pd-thumb.is-active { border-color: var(--primary-red); }
.mocbt-pd-thumb img { width: 100%; height: 64px; object-fit: cover; border-radius: 6px; }
.mocbt-pd-title { font-size: 1.75rem; font-weight: 800; line-height: 1.25; }
.mocbt-pd-meta { color: var(--mocbt-muted); font-size: 0.9rem; }
.mocbt-pd-rating { color: var(--primary-yellow); }
.mocbt-pd-price { font-size: 2rem; font-weight: 800; color: var(--primary-red); }
.mocbt-pd-price-old { font-size: 1.1rem; color: var(--mocbt-muted); text-decoration: line-through; margin-right: 0.5rem; }
.mocbt-pd-stock { display: inline-block; padding: 0.35rem 0.75rem; border-radius: 8px; font-size: 0.8rem; font-weight: 700; }
.mocbt-pd-stock--in { background: color-mix(in srgb, var(--primary-green) 15%, #fff); color: var(--primary-green); }
.mocbt-pd-stock--out { background: color-mix(in srgb, var(--primary-red) 15%, #fff); color: var(--primary-red); }
.mocbt-pd-order-box {
  background: #f8fafc;
  border: 2px solid color-mix(in srgb, var(--primary-blue) 20%, transparent);
  border-radius: var(--mocbt-radius);
  padding: 1.25rem;
}
.mocbt-pd-tag { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.72rem; font-weight: 700; margin-bottom: 0.5rem; }
.mocbt-pd-tag--yellow { background: var(--primary-yellow); color: var(--mocbt-text); }
.mocbt-pd-tabs .nav-link { font-weight: 600; color: var(--mocbt-muted); border: none; }
.mocbt-pd-tabs .nav-link.active { color: var(--primary-red); border-bottom: 3px solid var(--primary-red); background: transparent; }
.mocbt-pd-tab-content { border-radius: 0 0 var(--mocbt-radius) var(--mocbt-radius); padding: 1.5rem; }
.mocbt-spec-table th { width: 38%; background: #f8fafc; font-weight: 600; }
.mocbt-review-item { padding: 1rem 0; border-bottom: 1px solid rgba(15,23,42,0.08); }
.mocbt-pd-rating-sm { color: var(--primary-yellow); }
