:root {
  --primary: #f97316;
  --primary-dark: #ea6c0a;
  --primary-light: #ffedd5;
  --dark: #1e1b18;
  --gray-soft: #f8f5f2;
}

/* Font — Prompt (local) */
@font-face {
  font-family: 'promptregular';
  src: url('../fonts/prompt/prompt-regular-webfont.woff2') format('woff2'),
       url('../fonts/prompt/prompt-regular-webfont.woff') format('woff'),
       url('../fonts/prompt/prompt-regular-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Prompt';
  src: url('../fonts/prompt/prompt-extralight-webfont.woff2') format('woff2'),
       url('../fonts/prompt/prompt-extralight-webfont.woff') format('woff'),
       url('../fonts/prompt/prompt-extralight-webfont.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Prompt';
  src: url('../fonts/prompt/prompt-regular-webfont.woff2') format('woff2'),
       url('../fonts/prompt/prompt-regular-webfont.woff') format('woff'),
       url('../fonts/prompt/prompt-regular-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Prompt';
  src: url('../fonts/prompt/prompt-semibold-webfont.woff2') format('woff2'),
       url('../fonts/prompt/prompt-semibold-webfont.woff') format('woff'),
       url('../fonts/prompt/prompt-semibold-webfont.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Prompt';
  src: url('../fonts/prompt/prompt-black-webfont.woff2') format('woff2'),
       url('../fonts/prompt/prompt-black-webfont.woff') format('woff'),
       url('../fonts/prompt/prompt-black-webfont.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Prompt', sans-serif;
  color: #1e1b18;
  background: #fff;
  font-size:17px;
}

/* ===== TOP BAR ===== */
.top-bar-6 {
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.45rem 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.text-header {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


.top-bar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-list li {
  display: flex;
  align-items: center;
}

.top-bar-list a:not(.topbar-btn) {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.82rem;
  transition: all .2s;
  white-space: nowrap;
}

.top-bar-list a:not(.topbar-btn):hover {
  color: #fff;
  background: rgba(0,0,0,.12);
}

.top-bar-divider {
  color: rgba(255,255,255,.4);
}

/* ปุ่มภาพ โทร + LINE */
.topbar-img-btn {
  height: 54px;
  width: auto;
  display: block;
  transition: opacity .2s, transform .15s;
}

.topbar-img-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ปุ่มข้อความ โทร + LINE (เบอร์/ลิงก์ดึงจาก settings ผ่าน getSettingValue) */
.topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #fff !important;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}

.topbar-btn i {
  font-size: 18px;
}

.topbar-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff !important;
}

.topbar-btn-tel {
  background: #1b54a8;
}

.topbar-btn-line {
  background: #06c755;
}

@media (max-width: 767px) {
  .topbar-btn { height: 36px; font-size: 14px; padding: 0 16px; }
}

.top-bar-list .icon-header {
  height: 20px;
  width: auto;
  vertical-align: middle;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity .2s;
}

.top-bar-list a:hover .icon-header {
  opacity: 1;
}

.top-bar-divider {
  color: rgba(255,255,255,.25);
  padding: 0 0.25rem;
  user-select: none;
}

@media (max-width: 767px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
  }
  .top-social-list { justify-content: center; }
  .top-bar-list { justify-content: center; }
  .text-header { font-size: 15px; }
  .topbar-img-btn { height: 44px; }
}

/* ===== LOGO ===== */
.site-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  /* โลโก้มักมีพื้นหลังเข้ม ใช้ filter ให้ขาว */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* iPad */
@media (max-width: 991px) {
  .site-logo { height: 36px; }
}

/* มือถือ */
@media (max-width: 575px) {
  .site-logo { height: 30px; }
}

/* ===== NAVBAR ===== */
.navbar-brand span {
  color: var(--primary);
}

.navbar {
  background: rgba(255,255,255,0.97) !important;
  box-shadow: 0 2px 20px rgba(249,115,22,.10);
  padding: 0.75rem 0;
  transition: all .3s;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 18px;
  font-family: 'promptregular', sans-serif;
  color: #374151 !important;
  padding: 0.4rem 0.5rem !important;
  border-radius: 8px;
  transition: all .25s;
  position: relative;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

.navbar-nav .nav-link.btn-order {
  background: var(--primary);
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  margin-left: 0.4rem;
}

.navbar-nav .nav-link.btn-order:hover {
  background: var(--primary-dark);
  color: #fff !important;
}

/* ===== HEADER CONTACT ===== */
.header-contact-5 {
  align-items: center;
  gap: 0.5rem;
  margin-right: 0.75rem;
  padding-left: 0.75rem;
  white-space: nowrap;
}

.header-contact-5 .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fef3c7;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-5 {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-5 span {
  font-size: 17px;
  color: #6e777d;
  font-weight: 400;
}

.contact-5 a {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.contact-5 a:hover {
  color: var(--primary);
}

.header-btn {
  background: #eb2128;
  color: #fff !important;
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  margin-left: 0.25rem;
}

.header-btn:hover {
  background: #c81a20;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 50%, #fed7aa 100%);
  padding: 5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* ===== HERO BANNER ===== */
.hero-slider-section {
  background: #fff;
}

.hero-slider-section picture,
.hero-slider-section img {
  width: 100%;
  height: auto;
  display: block;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 70%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.hero h1 span {
  color: var(--primary);
}

.hero .lead {
  font-weight: 500;
}

.hero-img-wrap {
  position: relative;
}

.hero-img-wrap img {
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(249,115,22,.2);
}

.hero-float-card {
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-float-card .icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== SECTION COMMON ===== */
.section-title {
  font-weight: 600;
  color: var(--dark);
}

.section-title span {
  color: var(--primary);
}

.section-sub {
  color: #6b7280;
  font-size: 17px;
}

.divider-orange {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), #fb923c);
  border-radius: 2px;
  margin: 0 auto 1rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
  transition: all .3s;
  height: 100%;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(249,115,22,.12);
  transform: translateY(-5px);
}

.feature-card .icon-wrap {
  width: 60px; height: 60px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: transform .35s, background .35s, color .35s;
}

.feature-card:hover .icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1) rotate(-6deg);
}

/* ===== ABOUT PHOTO FRAME (hover zoom) ===== */
.about-img-frame {
  position: relative;
  isolation: isolate;
  aspect-ratio: 4 / 3;
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-img-frame:hover img {
  transform: scale(1.06);
}

.about-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -60px 60px -40px rgba(0,0,0,.35);
  pointer-events: none;
  z-index: 1;
}

/* ===== PRODUCT CARDS ===== */
#productGrid.four-cols > div {
  flex: 0 0 25%;
  max-width: 25%;
}

@media (max-width: 991px) {
  #productGrid > div,
  #productGrid.four-cols > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.product-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: all .3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card .badge-promo {
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  padding: 0.2rem 1.2rem;
  border-radius: 20px;
}

.product-card .price-old {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 0.9rem;
}

.product-card .price-new {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
}

.btn-detail {
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}

.btn-detail:hover {
  background: var(--primary-dark);
  color: #fff;
}

.product-img-wrap {
  background: #e2e5ea;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
  position: relative;
}

.product-img-wrap .badge-promo {
  position: absolute;
  top: 10px;
  right: 10px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

/* ===== STEPS ===== */
.step-item {
  position: relative;
  text-align: center;
}

/* ===== FAQ ACCORDION ===== */
.accordion-button {
  font-size: 17px;
}

.accordion-body {
  font-size: 17px;
}

.accordion-button:not(.collapsed) {
  color: var(--dark);
  background-color: #ffedd5;
}

.accordion-button:focus {
  box-shadow: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.faq-grid .accordion-item {
  min-width: 0;
}

.faq-grid .accordion-button {
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 767px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #fb923c);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 20px rgba(249,115,22,.3);
}

.step-connector {
  position: absolute;
  top: 36px; left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #fb923c 50%, #fbbf24 100%);
  border-radius: 24px;
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '🎁';
  position: absolute;
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: .15;
}

/* ===== SHIPPING ===== */
.shipping-card {
  border-left: 4px solid var(--primary);
  background: var(--gray-soft);
  border-radius: 0 16px 16px 0;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.table-modern > :not(caption) > * > * {
  border-color: #e5e7eb;
}

.table-modern > :not(caption) > * > *:first-child {
  border-right: 1px solid #e5e7eb;
}

.table-modern th,
.table-modern td {
  width: 50%;
}

/* ===== PAYMENT ===== */
.payment-step {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all .25s;
}

.payment-step:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(249,115,22,.1);
}

.payment-step .num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.bank-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all .25s;
}

.bank-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(249,115,22,.1);
}

.bank-logo {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  background: #1a56db22;
  color: #1a56db;
  padding: 6px;
  overflow: hidden;
}

.bank-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== CONTACT ===== */
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all .25s;
}

.contact-info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(249,115,22,.1);
}

.contact-info-card .icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #f3f4f6;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(249,115,22,.12);
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto .75rem;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.stat-card .num {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary);
}

/* ===== REVIEWS ===== */
.review-section {
  padding: 5rem 0;
  background: var(--gray-soft);
}

.review-swiper-wrap {
  overflow: hidden;
  padding-bottom: 0.5rem;
}

.reviewSwiper {
  overflow: visible !important;
  padding-bottom: 0.5rem !important;
}

.review-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: none;
  box-shadow: 0 6px 30px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
  transition: transform .35s ease, box-shadow .35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.13), 0 6px 16px rgba(0,0,0,.07);
}

.review-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}


.review-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.review-card:hover .review-img-wrap img {
  transform: scale(1.08);
}

.review-body {
  padding: 1.2rem 1.3rem 1.4rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.review-body::before {
  content: '\201C';
  position: absolute;
  top: -8px;
  right: 12px;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(249,115,22,.1);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  display: flex;
  gap: 2px;
}

.review-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.7rem;
  line-height: 1.5;
}

.review-customer {
  font-size: 13px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
}

.review-nav-group {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.review-ext-prev,
.review-ext-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(249,115,22,.2);
}

.review-ext-prev:hover,
.review-ext-next:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
}

/* ===== ADS BANNER ===== */
.ads-section {
  padding: 5rem 2rem;
  background: #fff;
}

.idx-trust-img-frame {
  aspect-ratio: 4 / 3;
}

.idx-trust-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idx-trust-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.idx-trust-item {
  padding: .5rem 0;
}

/* ===== OUR CUSTOMERS ===== */
.customers-section {
  padding: 5rem 0;
  background: var(--gray-soft);
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
}

.customers-grid img {
  width: 100%;
  aspect-ratio: 2 / 1;
  box-sizing: border-box;
  object-fit: contain;
  background: #ffffff;
  border: 2px solid #fb9915;
  border-radius: 14px;
  padding: 10px;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}

.customers-grid img:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(249,115,22,.18);
  transform: translateY(-3px);
}

@media (min-width: 640px) {
  .customers-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .customers-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 0;
  background: #fff;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 2px solid rgb(249 115 22);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: box-shadow .3s, border-color .3s;
}

.faq-item:hover {
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 4px 16px rgba(249,115,22,.1);
}

.faq-item.active {
  border-color: rgba(249,115,22,.5);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  background: transparent;
  border: none;
  text-align: left;
  transition: background-color .3s;
  font-family: inherit;
  gap: 1rem;
}

.faq-question:hover {
  background: #fff7ed;
}

.faq-item.active .faq-question {
  color: var(--primary);
  background: #fff7ed;
}

.faq-number {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  min-width: 44px;
  flex-shrink: 0;
}

.faq-question i {
  transition: transform .3s, color .3s;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.faq-item.active .faq-question i {
  color: var(--primary);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer > div {
  padding: 0 20px 20px 84px;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.5rem;
  align-items: start;
}

.faq-item:nth-child(odd)  { grid-column: 1; }
.faq-item:nth-child(even) { grid-column: 2; }

@media (max-width: 991px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-item:nth-child(odd),
  .faq-item:nth-child(even) {
    grid-column: 1;
  }
}

@media (max-width: 576px) {
  .faq-answer > div {
    padding: 0 16px 16px 16px;
  }
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--primary) 0%, #fb923c 50%, #fbbf24 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}


.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #f97316;
  z-index: 2;
}


.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-desc {
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.25);
  transition: background .25s, transform .25s, border-color .25s, box-shadow .25s;
}

.footer-social a:hover {
  background: rgba(255,255,255,.4);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.35);
}

.footer-social a[aria-label="Facebook"] {
  background: #1877F2;
}

.footer-social a[aria-label="LINE"] {
  background: #06C755;
}

.footer-social a[aria-label="Instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social a[aria-label="TikTok"] {
  background: #000000;
}

.footer-social a[aria-label="Shopee"] {
  background: #EE4D2D;
}

.footer-social a[aria-label="Lazada"] {
  background: #0F146D;
}

.footer-social a[aria-label="Facebook"]:hover,
.footer-social a[aria-label="LINE"]:hover,
.footer-social a[aria-label="Instagram"]:hover,
.footer-social a[aria-label="TikTok"]:hover,
.footer-social a[aria-label="Shopee"]:hover,
.footer-social a[aria-label="Lazada"]:hover {
  filter: brightness(1.15);
  border-color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 1rem;
}

.footer-links {
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 17px;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact {
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  margin-bottom: 0.75rem;
}

.footer-contact li i {
  font-size: 1rem;
  color: #fff;
  width: 20px;
  flex-shrink: 0;
}

.footer-divider {
  border-color: rgba(255,255,255,.25);
}

.footer-copy {
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  letter-spacing: .3px;
  background: #f97316;
  border-top: 2px solid #fff;
  padding: 1rem 1rem;
  position: relative;
  z-index: 1;
}

.footer-copy .brand {
  color: #fff;
  font-weight: 600;
  /* letter-spacing: .5px; */
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary);
  border: none;
  color: #fff;
  border-radius: 40px;
  padding: 0.7rem 2rem;
  font-weight: 500;
  font-size: 17px;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249,115,22,.3);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 40px;
  padding: 0.65rem 1.75rem;
  font-weight: 500;
  font-size: 17px;
  transition: all .25s;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  font-weight: 800;
  color: var(--dark);
}

.page-hero .breadcrumb-item.active {
  color: var(--primary);
}

/* ===== FORM ===== */
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(249,115,22,.2);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.4rem;
}

/* ===== ALERT ===== */
.alert-orange {
  background: var(--primary-light);
  border: 1.5px solid #fed7aa;
  color: #9a3412;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(249,115,22,.08);
}

/* ===== CATEGORY SLIDER ===== */
.cat-section {
  padding: 3rem 0 0;
  background: #fff;
}

.cat-section .container {
  overflow: hidden;
}

.catSwiper {
  overflow: visible !important;
  padding: 0.25rem 0 0.5rem !important;
}

/* การ์ดหมวดหมู่ */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.3;
  transition: color .2s;
  width: 100%;
}

.cat-card:hover {
  color: var(--primary);
}

/* กล่องรูปภาพ square */
.cat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  border: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, var(--primary), #fb923c);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}

.cat-card:hover .cat-img {
  box-shadow: 0 6px 20px rgba(249,115,22,.18);
  transform: translateY(-3px);
}

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

.cat-placeholder-icon {
  font-size: 2rem;
  color: #c4c4c4;
}

/* ปุ่ม ← → มุมขวาบน */
.cat-nav-group {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cat-ext-prev,
.cat-ext-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all .25s;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(249,115,22,.2);
}

.cat-ext-prev:hover,
.cat-ext-next:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
}

.cat-ext-prev.swiper-button-disabled,
.cat-ext-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ปุ่ม "ดูทั้งหมด" */
.btn-see-all {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  white-space: nowrap;
  transition: gap .2s;
}

.btn-see-all:hover {
  color: var(--primary-dark);
  gap: 0.4rem;
}

/* ===== BACK TO TOP ===== */
#backTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s;
  z-index: 999;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.4);
}

#backTop.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR TOGGLER ===== */
.navbar-toggler {
  border: none;
  padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* OFFCANVAS CUSTOM */
.offcanvas-header {
  background: var(--primary-light);
}

.offcanvas-header .site-logo {
  height: 34px;
}

.offcanvas-body .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

/* ===== PRODUCT DETAIL — MODERN REDESIGN ===== */

/* ── Breadcrumb ── */
.pd-breadcrumb {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  padding: 0.7rem 0;
  border-bottom: 1px solid #f0ebe5;
}
.pd-breadcrumb .breadcrumb {
  margin: 0;
  font-size: 16px;
}
.pd-breadcrumb .breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.pd-breadcrumb .breadcrumb-item.active {
  color: var(--bs-secondary-color) !important;
}
.pd-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #d1d5db;
}

/* ── Main section ── */
.pd-section {
  padding: 2.5rem 0 3.5rem;
  background: #fafaf9;
}

/* ── Gallery ── */
.pd-gallery {
  position: sticky;
  top: 76px;
}
.pd-main-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .09);
  cursor: zoom-in;
}
.pd-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}
.pd-main-img-wrap:hover img {
  transform: scale(1.06);
}
.pd-badge-main {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, var(--primary), #ff5500);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 0.28rem 0.85rem;
  border-radius: 30px;
  z-index: 2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(249, 115, 22, .5);
}

/* ── Thumbnails Swiper ── */
.pd-thumbs-wrap {
  position: relative;
  margin-top: 14px;
  padding: 0 20px;
}
.pd-thumbs-swiper {
  overflow: hidden;
}
.pd-thumb {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2.5px solid #e8e3dc;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  background: #fff;
}
.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.pd-thumb:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, .2);
}
.pd-thumb:hover img {
  transform: scale(1.1);
}
.pd-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light), 0 4px 14px rgba(249, 115, 22, .25);
}
.pd-thumb-prev,
.pd-thumb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1.5px solid #e8e3dc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.78rem;
  color: #374151;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .10);
  transition: all .2s;
}
.pd-thumb-prev { left: -2px; }
.pd-thumb-next { right: -2px; }
.pd-thumb-prev:hover,
.pd-thumb-next:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pd-thumb-prev.swiper-button-disabled,
.pd-thumb-next.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ── Info panel ── */
.pd-info {
  padding-left: 0.5rem;
}
.pd-meta-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.pd-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 17px;
  font-weight: 600;
  padding: 0.22rem 0.8rem;
  border-radius: 30px;
}
.pd-stock-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 17px;
  color: #16a34a;
  font-weight: 600;
}
.pd-stock-dot::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 2.5px rgba(34, 197, 94, .25);
}
.pd-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.65rem;
}
.pd-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.pd-stars {
  color: #f59e0b;
  font-size: 0.92rem;
  letter-spacing: 1px;
}
.pd-rating-count {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ── Price card ── */
.pd-price-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 1.4rem;
  position: relative;
  overflow: hidden;
}
.pd-price-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.pd-price-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(249, 115, 22, .06) 0%, transparent 70%);
  border-radius: 50%;
}
.pd-price-badge-row {
  margin-bottom: 0.5rem;
}
.pd-price-save {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #e02020;
  color: #fff;
  font-size: 16px;
  padding: 0.3rem 0.85rem;
  border-radius: 30px;
}
.pd-price-new {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary);
}
.pd-price-old-wrap {
  padding-bottom: 0.2rem;
}
.pd-price-old-label {
  font-size: 17px;
  color: #a19f9e;
  font-weight: 500;
  line-height: 1.2;
}
.pd-price-old {
  font-size: 1.05rem;
  color: #a19f9e;
  text-decoration: line-through;
  font-weight: 500;
}

/* ── Feature highlights ── */
.pd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.4rem;
}
.pd-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  background: #fff;
  border: 1.5px solid #f0ebe5;
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  transition: border-color .2s, box-shadow .2s;
}
.pd-feature-item:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(249, 115, 22, .08);
}
.pd-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.pd-feature-text {
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.5;
}
.pd-feature-text strong {
  display: block;
  color: var(--dark);
  font-size: 0.83rem;
  margin-bottom: 1px;
}

/* ── Short description list ── */
.pd-short-desc {
  color: #4b5563;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  padding-left: 1.2rem;
}
.pd-short-desc li {
  margin-bottom: 0.15rem;
}
.pd-short-desc li::marker {
  color: var(--primary);
}

/* ── Spec pills ── */
.pd-spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.4rem;
}
.pd-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1.5px solid #e8e3dc;
  border-radius: 30px;
  padding: 0.3rem 0.85rem;
  font-size: 0.8rem;
  color: #374151;
}
.pd-spec-pill span {
  color: #9ca3af;
}
.pd-spec-pill strong {
  color: var(--dark);
  font-weight: 700;
}

/* ── Divider ── */
.pd-divider {
  height: 1px;
  background: linear-gradient(90deg, #fde8d8, transparent);
  margin: 1.3rem 0;
}
.pd-tags-divider {
  border-top: 1px solid #f0ebe5;
  margin-top: 1rem;
}

/* ── Contact ── */
.pd-contact-label {
  font-size: 17px;
  font-weight: 600;
  color: #1e1b18;
  margin-bottom: 0.75rem;
}
.pd-contact-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pd-contact-btns a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  transition: all .25s;
  flex: 1;
  justify-content: center;
  min-width: 140px;
}
.pd-btn-tel {
  background: linear-gradient(135deg, var(--primary), #ff5500);
  color: #fff !important;
}
.pd-btn-tel:hover {
  transform: translateY(-3px);
}
.pd-btn-line {
  background: linear-gradient(135deg, #06c755, #00b348);
  color: #fff !important;
}
.pd-btn-line:hover {
  transform: translateY(-3px);
}
.pd-contact-btns i {
  font-size: 1.1rem;
}

/* ── Trust strip ── */
.pd-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 1px solid #f0ebe5;
}
.pd-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}
.pd-trust-item i {
  font-size: 1.1rem;
  color: var(--primary);
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-trust-item span {
  font-size: 17px;
  color: #6b7280;
  font-weight: 500;
  line-height: 1.3;
}

/* ── Sticky CTA (mobile) ── */
.pd-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .12);
  z-index: 999;
  gap: 10px;
}
.pd-sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
}

/* ── Detail section ── */
.pd-detail-section {
  padding: 3rem 0 3.5rem;
  background: #fafaf9;
}

/* Pill tabs */
.pd-tab-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  background: #fff;
  padding: 6px;
  border-radius: 16px;
  border: 1.5px solid #f0ebe5;
  width: fit-content;
}
.pd-tab-btn {
  background: none;
  border: none;
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border-radius: 11px;
  transition: all .2s;
  font-family: 'Prompt', sans-serif;
  white-space: nowrap;
}
.pd-tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(249, 115, 22, .35);
}
.pd-tab-btn:hover:not(.active) {
  background: var(--gray-soft);
  color: var(--dark);
}
.pd-tab-pane {
  display: block;
  margin-bottom: 1.5rem;
}
.pd-tab-pane:last-child {
  margin-bottom: 0;
}

/* Detail card */
.pd-detail-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
  border: 1.5px solid #f0ebe5;
}
.pd-detail-card h5 {
  font-weight: 600;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pd-detail-card h5 .h5-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pd-detail-card p,
.pd-detail-card li {
  color: #4b5563;
  line-height: 1.55;
  font-size: 17px;
}
.pd-detail-card strong {
  font-weight: inherit;
}
.pd-tag-label {
  font-size: 18px;
  font-weight: 500;
  color: #101112;
  padding-top: 0.25rem;
}
.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
}
.pd-tag {
  display: inline-block;
  font-size: 13px;
  color: var(--dark);
  background: var(--primary-light);
  border: 1px solid rgba(249, 115, 22, .2);
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease;
}
a.pd-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pd-detail-card ul,
.pd-detail-card ol {
  padding-left: 1.2rem;
}
.pd-detail-card ul li::marker,
.pd-detail-card ol li::marker {
  color: var(--primary);
}
.pd-detail-card li {
  margin-bottom: 0.4rem;
}

/* Step cards */
.pd-step-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fafaf9;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  border: 1.5px solid #f0ebe5;
}
.pd-step-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), #ff5500);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(249, 115, 22, .35);
}
.pd-step-body strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.pd-step-body p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Spec table */
.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pd-spec-table thead tr {
  background: linear-gradient(135deg, var(--primary), #ff5500);
}
.pd-spec-table th {
  color: #fff;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  text-align: left;
}
.pd-spec-table th:first-child {
  border-radius: 12px 0 0 0;
}
.pd-spec-table th:last-child {
  border-radius: 0 12px 0 0;
}
.pd-spec-table td {
  padding: 0.65rem 1.1rem;
  border-bottom: 1px solid #f5f0ea;
  color: #374151;
  vertical-align: middle;
}
.pd-spec-table tr:last-child td {
  border-bottom: none;
}
.pd-spec-table tr:nth-child(odd) td {
  background: #fafaf9;
}
.pd-spec-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 34%;
}

/* Shipping cards */
.pd-ship-card {
  background: #fafaf9;
  border: 1.5px solid #f0ebe5;
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
}
.pd-ship-card i {
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}
.pd-ship-card strong {
  display: block;
  font-size: 0.92rem;
  color: var(--dark);
}
.pd-ship-card small {
  color: #9ca3af;
  font-size: 0.78rem;
}

/* ── Related products ── */
.pd-related-section {
  padding: 3rem 0 5rem;
  background: #fff;
}
.pd-related-section .btn-outline-custom {
  font-size: 17px;
  padding: .4rem 1.1rem;
}
.pd-related-section .product-card {
  border: 1px solid #e9ecef;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: all .3s;
}
.pd-related-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, .15);
}
.pd-related-section .product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #e2e5ea;
}
.pd-related-section .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.pd-related-section .product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .pd-gallery { position: static; }
}
@media (max-width: 767px) {
  .pd-info { padding-left: 0; margin-top: 1.5rem; }
  .pd-title { font-size: 1.3rem; }
  .pd-price-new { font-size: 2rem; }
  .pd-features { grid-template-columns: 1fr; }
  .pd-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .pd-detail-card { padding: 1.25rem; }
  .pd-tab-btn { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
  .pd-contact-btns { display: none; }
  .pd-sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
}
@media (max-width: 575px) {
  .pd-tab-nav { width: 100%; }
  .pd-tab-nav .pd-tab-btn { flex: 1; text-align: center; }
}

/* ===== CONTACT PAGE ===== */
.page-hero .breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
}
.page-hero h1 span {
  color: var(--primary);
}
.contact-channels-section {
  padding: 5rem 0;
  background: #fff;
}
.contact-info-card--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  border: 1.5px solid #ede9e4;
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  transition: border-color .2s, background .2s;
}
.contact-info-card--center:hover {
  border-color: var(--primary);
  background: #fffcf9;
}
.contact-icon--lg {
  width: 72px;
  height: 72px;
  font-size: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}
.contact-info-card .icon.contact-icon--phone {
  background: #fee2e2;
  color: #dc2626;
}
.contact-info-card .icon.contact-icon--line {
  background: #dcfce7;
  color: #16a34a;
}
.contact-info-card .icon.contact-icon--facebook {
  background: #dbeafe;
  color: #2563eb;
}
.contact-info-card .icon.contact-icon--tiktok {
  background: #1e1b182e;
  color: #1e1b18;
}
.contact-link--primary {
  color: #343a40;
  font-weight: 600;
  font-family: sans-serif;
  text-decoration: none;
}
.contact-link--phone {
  color: #343a40;
  font-weight: 600;
  text-decoration: none;
}
.contact-link--line {
  color: #343a40;
  font-weight: 600;
  font-family: sans-serif;
  text-decoration: none;
}
.contact-link--facebook {
  color: #343a40;
  font-weight: 600;
  font-family: sans-serif;
  text-decoration: none;
}
.contact-hours-time {
  color: var(--primary);
  font-weight: 600;
  text-align: end;
  padding-right: 0;
}
.contact-form-section {
  padding: 4rem 0;
  background: var(--gray-soft);
}
.divider-orange--left {
  margin-left: 0;
  margin-right: 0;
}
.form-required {
  color: red;
}
.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  text-decoration: none;
  border: 1.5px solid #f3f4f6;
  min-width: 130px;
  font-weight: 500;
  font-size: 0.875rem;
}
.contact-social-link--facebook { color: #2563eb; }
.contact-social-link--line { color: #16a34a; }
.contact-social-link--instagram { color: #dc2626; }
.contact-social-link--tiktok { color: #1e1b18; }
.contact-map-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1.5px solid #e5e7eb;
}
.contact-map-placeholder iframe {
  border: 0;
}
.contact-map-icon {
  font-size: 3rem;
}

/* =========================================
   PRODUCTS PAGE — Sidebar + Grid Layout
   ========================================= */
.products-main-section {
    padding: 3rem 0 4rem;
    background: #fff;
}

/* --- Category Intro --- */
.category-intro-section {
  background: #fff;
  padding: 16px 0 0;
  border-bottom: 1px solid #e5e7eb;
}

.category-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}

.category-intro-info h1.desktop-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.category-intro-btn-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid #ccc;
  border-radius: 40px;
  cursor: pointer;
  color: #374151;
  font-size: 0.9rem;
  transition: all 0.3s;
  background: #e9e9e9;
}

.category-intro-btn-filters:hover {
  border-color: #374151;
}

.category-intro-btn-filters svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.category-intro-btn-filters .category-intro-show-text {
  display: none;
}

.category-intro-btn-filters.collapsed .category-intro-hide-text {
  display: none;
}

.category-intro-btn-filters.collapsed .category-intro-show-text {
  display: inline;
}

/* --- Tag page hero (หน้าแท็กสินค้า /product-tag) --- */
.tag-hero-section {
  background: linear-gradient(180deg, var(--primary-light) 0%, #fff 100%);
  padding: 2.5rem 0 1.75rem;
  border-bottom: 1px solid #f1e4d6;
}

.tag-hero {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.tag-hero-icon {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(249, 115, 22, .35);
}

.tag-hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: .02em;
  margin-bottom: 2px;
}

.tag-hero-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
}

.tag-hero-sub {
  margin: 0.35rem 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.tag-hero-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag-hero-chips-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-right: 0.25rem;
}

.tag-chip {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid rgba(249, 115, 22, .3);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  text-decoration: none;
  transition: all .2s ease;
}

.tag-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .tag-hero {
    gap: 0.9rem;
  }
  .tag-hero-icon {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
    border-radius: 14px;
  }
  .tag-hero-title {
    font-size: 1.4rem;
  }
}

/* --- Category Sidebar (foster card + tookjaishop menu) --- */
.cat-sidebar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.cat-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0.9rem 1.1rem;
  background: #fff;
  border-bottom: 2px solid #374151;
}

.cat-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-sidebar-toggle {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 11px;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
  flex-shrink: 0;
}

.cat-sidebar-toggle:hover {
  color: var(--primary);
}

/* --- List-group Category Tree (tookjaishop style) --- */
.list-group-root {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-group-root > .list-group-item {
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #f3f4f6 !important;
  padding: 0.65rem 1.1rem;
  background: transparent;
}

.list-group-root > .list-group-item:last-child {
  border-bottom: none !important;
}

.list-group-root a.item-list {
    color: #374151;
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
    transition: color .18s;
}

.list-group-root a.item-list:hover {
  color: var(--primary);
}

.list-group-root a.fi-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #9ca3af;
  text-decoration: none;
  font-size: 12px;
  flex-shrink: 0;
  transition: color .18s;
}

.list-group-root a.fi-list:hover {
  color: var(--primary);
}

.list-group-root a.fi-list .bi-chevron-down {
  display: inline-block;
  transition: transform .25s;
}

.list-group-root a.fi-list:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

/* Level 2: sub-menu */
.list-group-root > ul.list-group {
  background: #fafafa;
}

.list-group-root ul.list-group > .list-group-item {
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
  /* เยื้องเข้าจากเมนูหลักให้เห็นว่าเป็นเมนูย่อย */
  padding: 0.45rem 1.1rem 0.45rem 2.1rem;
  background: transparent;
}

.list-group-root ul.list-group > .list-group-item:last-child {
  border-bottom: none !important;
}

.list-group-root ul.list-group > li > a {
    color: #6b7280;
    font-size: 17px;
    text-decoration: none;
    transition: color .18s;
    display: inline-flex;
    align-items: center;
}

.list-group-root ul.list-group > li > a:hover {
  color: var(--primary);
}

/* Level 3: sub-sub-menu */
.list-group-root ul.list-group ul.list-group {
  background: #f3f4f6;
}

.list-group-root ul.list-group ul.list-group > .list-group-item {
  padding: 0.35rem 1.1rem 0.35rem 3.1rem;
  border-bottom: 1px solid #ebebeb !important;
}

.list-group-root ul.list-group ul.list-group > .list-group-item:last-child {
  border-bottom: none !important;
}

.list-group-root ul.list-group ul.list-group > li > a {
    color: #9ca3af;
    font-size: 17px;
    text-decoration: none;
    transition: color .18s;
    display: inline-flex;
    align-items: center;
}

.list-group-root ul.list-group ul.list-group > li > a:hover {
  color: var(--primary);
}

/* Level 4: sub-sub-sub-menu */
.list-group-root ul.list-group ul.list-group ul.list-group {
  background: #edeef0;
}

.list-group-root ul.list-group ul.list-group ul.list-group > .list-group-item {
  padding: 0.35rem 1.1rem 0.35rem 4.1rem;
}

/* จุดกลมเล็กหน้าเมนูชั้นลึกสุด */
.list-group-root ul.list-group ul.list-group ul.list-group > li > a .bi-circle-fill {
  font-size: 6px;
  margin-right: 8px !important;
  opacity: .6;
}

/* Active category — หมวดที่กำลังเปิดอยู่ (ค้าง active หลังคลิก) */
.list-group-root a.item-list.active,
.list-group-root ul.list-group > li > a.active,
.list-group-root ul.list-group ul.list-group > li > a.active {
  color: var(--primary);
  font-weight: 700;
}

.list-group-root .list-group-item.is-active {
  background: var(--primary-light);
  box-shadow: inset 3px 0 0 var(--primary);
}

/* Sidebar hidden */
.cat-sidebar-col-hidden {
  display: none !important;
}

/* --- Products Toolbar --- */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid #e5e7eb;
  flex-wrap: wrap;
  gap: .5rem;
}

.products-count {
  font-size: 13.5px;
  color: #6b7280;
}

.btn-show-cat {
  display: none;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.btn-show-cat:hover {
  background: var(--primary);
  color: #fff;
}

.btn-show-cat.visible {
  display: inline-flex;
}

/* --- Pagination --- */
.products-pagination .pagination {
  gap: 6px;
}

.products-pagination .page-link {
  color: var(--primary);
  border-color: #e5e7eb;
  padding: 0.55rem 1rem;
  font-size: 14px;
  border-radius: 10px !important;
  margin: 0;
  min-width: 40px;
  text-align: center;
  transition: all .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.products-pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,.3);
}

.products-pagination .page-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,.25);
  transform: translateY(-1px);
}

.products-pagination .page-item.disabled .page-link {
    color: #93979f;
    border-color: #e5e7eb;
    box-shadow: none;
}

/* --- SEO Content Section --- */
.seo-content-section {
  background: var(--gray-soft);
  padding: 2.5rem 0 3rem;
  /* border-top: 1px solid #e5e7eb; */
}

.seo-content-body h1.desktop-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #374151;
    margin: 0 0 0.75rem;
}

.seo-content-body p {
    color: #4b5563;
    font-size: 15px;
}

.seo-content-body h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #374151;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

/* --- About Page --- */
.about-info-list {
  border-top: 1px solid #f0ece8;
  padding-top: 1.2rem;
}
.about-info-row {
  display: flex;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid #f0ece8;
  font-size: 17px;
  align-items: flex-start;
}
.about-info-key {
  flex-shrink: 0;
  width: 130px;
  color: var(--primary-dark);
  font-weight: 600;
}
.about-info-val {
  color: #374151;
  line-height: 1.6;
}
.about-target-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transition: transform .35s, background .35s, color .35s;
}
.about-target-card {
  transition: transform .3s, box-shadow .3s;
}
.about-target-card:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px rgba(17,24,39,.1);
}
.about-target-card:hover .about-target-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.contact-channel-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: #fff;
  border-radius: 12px;
  padding: .9rem 1.1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
  color: inherit;
}
.contact-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(249,115,22,.12);
}
.contact-channel-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}
.contact-channel-label {
  font-size: .78rem;
  color: #9ca3af;
  margin-bottom: 2px;
}
.contact-channel-val {
  font-size: .9rem;
  font-weight: 600;
  color: #1f2937;
}

/* ===== INDEX.HTML (extracted from inline styles) ===== */
.idx-toggler-icon {
  color: var(--primary);
}

.idx-offcanvas-logo {
  height: 34px;
}

.idx-promo-section {
  padding: 4rem 0 0;
  background: #fff;
}

.idx-soft-border {
  border-color: #e5e7eb !important;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
}

.idx-promo-img {
  width: 100%;
  height: auto;
  display: block;
}

.idx-featured-section {
  padding: 5rem 0;
}

.idx-cta-section {
  padding: 4rem 0;
  background: var(--gray-soft);
  text-align: center;
}

.idx-cta-btn-tel {
  background: #1a56db;
  text-decoration: none;
}

.idx-cta-btn-line {
  background: #06C755;
  text-decoration: none;
}

.idx-cta-icon-tel {
  width: 32px;
  height: 32px;
  color: #1a56db;
  font-size: 1rem;
}

.idx-cta-icon-line {
  width: 32px;
  height: 32px;
  color: #06C755;
  font-size: 1.3rem;
}

.idx-cta-btn-label {
  color: #fff;
}

.idx-qr-img {
  width: 200px;
  height: 200px;
  display: block;
}

/* ===== ABOUT.HTML (extracted from inline styles) ===== */
.about-py5 {
  padding: 5rem 0;
}

.about-py5-gray {
  padding: 5rem 0;
  background: var(--gray-soft);
}

.about-py4-gray {
  padding: 4rem 0;
  background: var(--gray-soft);
}

.about-text-17 {
  font-size: 17px;
  line-height: 1.9;
}

.about-text-16 {
  font-size: 16px;
  line-height: 1.9;
}

.about-icon-primary {
  color: var(--primary);
}

.about-lead-narrow {
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PROMOTIONS.HTML (extracted from inline styles) ===== */
.promo-section-top {
  padding: 2rem 0 5rem;
  background: #fff;
}

.promo-lead {
  font-size: 17px;
}

.promo-img-auto {
  aspect-ratio: auto;
}

.promo-img-auto img {
  height: auto;
}

.promo-cta-section {
  padding: 4rem 0;
  background: var(--gray-soft);
  text-align: center;
}

.promo-cta-btn-tel {
  background: #1a56db;
  text-decoration: none;
}

.promo-cta-btn-line {
  background: #06C755;
  text-decoration: none;
}

.promo-cta-icon-tel {
  width: 32px;
  height: 32px;
  color: #1a56db;
  font-size: 1rem;
}

.promo-cta-icon-line {
  width: 32px;
  height: 32px;
  color: #06C755;
  font-size: 1.3rem;
}

.promo-cta-btn-label {
  color: #fff;
}

.promo-soft-border {
  border-color: #e5e7eb !important;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
}

.promo-qr-img {
  width: 200px;
  height: 200px;
  display: block;
}

.promo-terms-section {
  padding: 4rem 0;
  background: #fff;
}

.promo-terms-heading {
  font-size: 18px;
  font-weight: 600;
}

/* ===== HOW-TO-ORDER.HTML (extracted from inline styles) ===== */
.hto-section-top {
  padding: 5rem 0;
  background: #fff;
}

.hto-step-circle-lg {
  width: 80px;
  height: 80px;
  font-size: 2rem;
}

.hto-link-primary {
  color: var(--primary);
}

.hto-link-plain {
  color: inherit;
  text-decoration: none;
}

.hto-cta-section {
  padding: 4rem 0;
  background: var(--gray-soft);
  text-align: center;
}

.hto-cta-btn-tel {
  background: #1a56db;
  text-decoration: none;
}

.hto-cta-btn-line {
  background: #06C755;
  text-decoration: none;
}

.hto-cta-icon-tel {
  width: 32px;
  height: 32px;
  color: #1a56db;
  font-size: 1rem;
}

.hto-cta-icon-line {
  width: 32px;
  height: 32px;
  color: #06C755;
  font-size: 1.3rem;
}

.hto-cta-btn-label {
  color: #fff;
}

.hto-soft-border {
  border-color: #e5e7eb !important;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
}

.hto-qr-img {
  width: 200px;
  height: 200px;
  display: block;
}

/* ===== SHIPPING.HTML (extracted from inline styles) ===== */
.ship-section-top {
  padding: 5rem 0;
  background: #fff;
}

.ship-section-white {
  padding: 4rem 0;
  background: #fff;
}

.ship-highlight-card {
  background: var(--primary-light);
}

.ship-highlight-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ship-text-primary {
  color: var(--primary);
}

.ship-soft-border {
  border-color: #e5e7eb !important;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
}

.ship-th-highlight {
  background: #ffedd5;
  color: #000;
  font-weight: 600;
  font-size: 18px;
}

.ship-strong-label {
  font-weight: 600;
  font-size: 18px;
}

.ship-hr-soft {
  border-color: #e5e7eb;
}

.ship-cta-section {
  padding: 3rem 0;
  background: var(--gray-soft);
}

.ship-cta-heading {
  word-break: break-word;
  font-size: clamp(1.1rem, 4vw, 1.5rem);
}

.ship-cta-btn-tel {
  background: #1a56db;
  text-decoration: none;
}

.ship-cta-btn-line {
  background: #06C755;
  text-decoration: none;
}

.ship-cta-icon-tel {
  width: 32px;
  height: 32px;
  color: #1a56db;
  font-size: 1rem;
}

.ship-cta-icon-line {
  width: 32px;
  height: 32px;
  color: #06C755;
  font-size: 1.3rem;
}

.ship-cta-btn-label {
  color: #fff;
}

.ship-qr-img {
  width: 200px;
  height: 200px;
  display: block;
}

.ship-terms-heading {
  font-size: 18px;
  font-weight: 600;
}

/* ===== PAYMENT.HTML (extracted from inline styles) ===== */
.pay-section-top {
  padding: 5rem 0;
  background: #fff;
}

.pay-section-gray-4 {
  padding: 4rem 0;
  background: var(--gray-soft);
}

.pay-notice-section {
  padding: 3rem 0;
  background: var(--gray-soft);
}

.pay-account-number {
  color: var(--primary);
  font-size: 1.1rem;
}

.pay-step-title {
  font-size: 17px;
}

.pay-text-16 {
  font-size: 16px;
}

.pay-soft-border {
  border-color: #e5e7eb !important;
  box-shadow: 0 4px 16px rgba(17,24,39,.06);
}

.pay-required {
  color: red;
}

.pay-notice-heading {
  font-size: 18px;
  font-weight: 600;
}

.pay-strong {
  font-weight: 600;
}

