/* =========================================================
   Thiourea Importer — custom stylesheet
   Palette: ใบไม้เขียวเข้ม / เขียวใบไม้ / ทองข้าวสาลี / ดินน้ำตาล / ครีม
   Type: Kanit (หัวข้อ) + Sarabun (เนื้อหา)
   ========================================================= */

:root{
  --green-deep:   #22528d;   /* เขียวเข้ม - หลัก */
  --green-leaf:   #f9940b;   /* เขียวใบไม้ - รอง */
  --green-soft:   #79b2f733;   /* เขียวอ่อนมาก - background section */
  --gold:         #ff9607;   /* ทอง - accent/CTA */
  --gold-dark:    #f9940c;
  --soil:         #6B4226;   /* น้ำตาลดิน */
  --cream:        #FBF7EF;   /* ครีม - background หลัก */
  --ink:          #22281F;   /* ตัวอักษรหลัก */
  --ink-soft:     #55604F;

  --font-display: 'Kanit', sans-serif;
  --font-body:    'Sarabun', sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 10px 30px rgba(31,77,54,.10);
}

*{ box-sizing: border-box; }

html{ max-width: 100%; }

body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  max-width: 100%;
}

h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  color: var(--green-deep);
  font-weight: 700;
  margin-bottom: .6em;
}

a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; }

.section{ padding: 80px 0; }
.section-sm{ padding: 48px 0; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  background: var(--gold);
  display:inline-block;
}

.section-title{ font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); }
.section-lead{ color: var(--ink-soft); max-width: 720px; }

.bg-soft{ background: var(--green-soft); }
.bg-deep{ background: var(--green-deep); color: #fff; }
.bg-deep h1,.bg-deep h2,.bg-deep h3,.bg-deep h4{ color:#fff; }

/* =========================================================
   Topbar
   ========================================================= */
.topbar{
  background: var(--green-deep);
  color: rgba(255,255,255,.88);
  font-size: .85rem;
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 7px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-contact a{
  color: inherit; margin-right: 20px; opacity:.92;
}
.topbar-contact a:hover{ color: var(--gold); }
.topbar-social{ display:flex; align-items:center; gap:14px; }
.topbar-social a{ color: rgba(255,255,255,.85); font-size: 1rem; }
.topbar-social a:hover{ color: var(--gold); }
.topbar-cta{
  background: var(--gold);
  color: var(--green-deep) !important;
  font-weight:600;
  padding: 3px 14px;
  border-radius: 999px;
  font-size: .8rem;
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header{
  background: #fff;
  box-shadow: 0 2px 16px rgba(31,77,54,.07);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled{
  box-shadow: 0 6px 24px rgba(31,77,54,.14);
}
.brand-logo{ height: 56px; }

.main-menu .nav-link{
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  padding: 10px 16px !important;
  position: relative;
}
.main-menu .nav-link:hover,
.main-menu .nav-link.active{
  color: var(--green-deep);
}
.main-menu .nav-link.active::after{
  content:"";
  position:absolute;
  left:16px; right:16px; bottom:4px;
  height:3px; border-radius:3px;
  background: var(--gold);
}

.btn-call{
  background: var(--green-deep);
  color:#fff !important;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 999px;
  padding: 10px 22px;
  border: none;
}
.btn-call:hover{ background: var(--gold-dark); }

.navbar-toggler{
  border:none; font-size: 1.6rem; color: var(--green-deep); background:none;
}
.navbar-toggler:focus{ box-shadow:none; }

.mobile-menu{ width: 280px; }
.mobile-menu .nav-link{
  font-family: var(--font-display);
  padding: 12px 4px;
  border-bottom: 1px solid #eee;
  color: var(--ink);
}
.mobile-menu .nav-link.active{ color: var(--green-deep); font-weight:600; }

/* =========================================================
   Hero (full screen, กล่องข้อความทึบแสงชิดขวา)
   ========================================================= */
.hero{
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.3s ease;
}
.hero-slide.is-active{
  opacity: 1;
  z-index: 1;
}
.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(15,32,54,.55) 0%, rgba(15,32,54,0) 22%);
}

.hero-dots{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.hero-dot.is-active{
  background: var(--gold);
  border-color: var(--gold);
  width: 26px;
  border-radius: 6px;
}

.hero-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  background: rgba(15,32,54,.35);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.hero-arrow:hover{ background: rgba(15,32,54,.6); border-color: var(--gold); }
.hero-arrow-prev{ left: clamp(10px, 3vw, 30px); }
.hero-arrow-next{ right: clamp(10px, 3vw, 30px); }

@media (max-width: 767.98px){
  .hero-arrow{ display: none; }
}
.hero .hero-content{
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 100%;
  padding: 120px clamp(20px, 6vw, 90px) 60px !important;
}
.hero-panel{
  background: rgb(33 78 149 / 97%);
  backdrop-filter: blur(6px);
  padding: 46px 42px;
  max-width: 460px;
  width: 100%;
  text-align: left;
  border-top: 3px solid var(--gold);
}
.hero-panel .eyebrow{ color: var(--gold); }
.hero-panel .eyebrow::before{ background: var(--gold); }
.hero-title{
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  line-height: 1.2;
  color:#fff;
}
.hero-title span{ color: var(--gold); }
.hero-desc{
  color: rgba(255,255,255,.85);
  margin-bottom: 22px;
  font-size: .95rem;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-start; }
.btn-gold{
  background: var(--gold);
  color: var(--green-deep) !important;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 4px;
  padding: 12px 24px;
  border: none;
  font-size: .92rem;
}
.btn-gold:hover{ background:#fff; }
.btn-ghost-light{
  border: 1.5px solid rgba(255,255,255,.5);
  color:#fff !important;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: .92rem;
}
.btn-ghost-light:hover{ background: rgba(255,255,255,.12); }

.hero-stats{
  position: relative;
  z-index: 2;
  background: rgb(39 83 151);
  border-top: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(2px);
}
.hero-stats .container{ justify-content:center; }
.hero-stats .stat{
  padding: 18px clamp(20px, 5vw, 60px);
  text-align:center;
  color:#fff;
}
.hero-stats .stat b{
  display:block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
}
.hero-stats .stat span{ font-size:.85rem; color: rgba(255,255,255,.8); }

@media (max-width: 991.98px){
  .hero{ min-height: 94vh; min-height: 94svh; }
  .hero .hero-content{ align-items: flex-end; justify-content: center; padding: 100px 20px 40px !important; }
  .hero-panel{ max-width: 100%; text-align:center; }
  .hero-actions{ justify-content:center; }
}

/* มือถือ: ให้เห็นภาพเต็มๆ ก่อน แล้วค่อยเป็นกล่องข้อความพื้นทึบต่อด้านล่าง (ไม่ซ้อนทับบังภาพ) */
@media (max-width: 767.98px){
  .hero{
    display: block;
    min-height: auto;
    height: auto;
  }
  .hero-bg{
    position: relative;
    height: 52vh;
    min-height: 300px;
  }
  .hero-bg::after{ display: none; }
  .hero-dots{ display: none; }
  .hero .hero-content{
    position: static;
    display: block;
    padding: 30px 20px 34px !important;
    background: rgb(33 78 149 / 97%);
  }
  .hero-panel{
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    max-width: 100%;
    border-top: none;
    text-align: center;
  }
  .hero-title{ font-size: clamp(1.5rem, 1.2rem + 2vw, 2rem); }
  .hero-desc{ font-size: .9rem; }
}
@media (max-width: 575.98px){
  .hero-bg{ height: auto; width: 100%; }
  .hero .hero-content{ padding: 26px 18px 28px !important; }
}

/* =========================================================
   Growth-stage timeline — signature element (ตาใบ > ช่อดอก > ผล)
   ========================================================= */
.growth-cycle{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-top: 44px;
  flex-wrap: wrap;
  overflow: hidden;
}
.growth-step{
  flex:1 1 200px;
  text-align:center;
  position:relative;
  padding: 0 12px;
  max-width: 100%;
}
.growth-step .icon-wrap{
  width:74px; height:74px;
  margin:0 auto 16px;
  border-radius:50%;
  background:#fff;
  border: 2px solid var(--green-leaf);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  color: var(--green-deep);
  position:relative; z-index:2;
}
.growth-step h6{
  font-family: var(--font-display);
  color: var(--green-deep);
  margin-bottom:6px;
}
.growth-step p{ font-size:.9rem; color: var(--ink-soft); margin:0; }
.growth-track{
  position:absolute;
  top:37px; left:calc(50% + 37px); right:calc(-50% + 37px);
  height:2px;
  background: repeating-linear-gradient(to right, var(--gold) 0 8px, transparent 8px 16px);
  z-index:1;
}
.growth-step:last-child .growth-track{ display:none; }
@media (max-width: 767.98px){
  .growth-track{ display:none; }
  .growth-step{ flex: 1 1 45%; }
}

/* =========================================================
   Product cards
   ========================================================= */
.product-card{
  background:#fff;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  height:100%;
  display:flex; flex-direction:column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31,77,54,.16);
}
.product-card .product-img{
  aspect-ratio: 4/3;
  object-fit: cover;
  width:100%;
}
.product-card .product-body{
  padding: 24px;
  display:flex; flex-direction:column; flex:1;
}
.product-card .product-tag{
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight:600;
  letter-spacing:.06em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom:8px;
}
.product-card h5{ margin-bottom:10px; }
.product-card p{ color: var(--ink-soft); font-size:.92rem; flex:1; }
.product-card .btn-link-arrow{
  font-family: var(--font-display);
  font-weight:600;
  color: var(--green-deep);
  display:inline-flex; align-items:center; gap:6px;
  margin-top:10px;
}
.product-card .btn-link-arrow i{ transition: transform .2s; }
.product-card .btn-link-arrow:hover i{ transform: translateX(4px); }

/* usage list on product page */
.usage-list{ list-style:none; padding:0; margin:0; }
.usage-list li{
  display:flex; gap:12px; align-items:flex-start;
  padding: 10px 0; border-bottom: 1px dashed #dde3d7;
}
.usage-list li:last-child{ border-bottom:none; }
.usage-list i{ color: var(--green-leaf); font-size:1.2rem; margin-top:2px; }

/* =========================================================
   About / feature list band
   ========================================================= */
.feature-list{ list-style:none; padding:0; margin:0; }
.feature-list li{
  display:flex; gap:14px; align-items:flex-start;
  margin-bottom: 18px;
}
.feature-list .num{
  flex:0 0 auto;
  width:38px; height:38px;
  border-radius:50%;
  background: var(--green-deep);
  color:#fff;
  font-family: var(--font-display);
  font-weight:600;
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem;
}
.feature-list .txt strong{ display:block; color: var(--green-deep); font-family: var(--font-display); }
.feature-list .txt span{ color: var(--ink-soft); font-size: .92rem; }

.about-media-frame{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-soft);
}
.about-media-frame img{ width:100%; display:block; }
.about-media-badge{
  position:absolute; bottom:16px; left:16px;
  background: rgb(252 149 11);
  color:#fff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size:.85rem;
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery-tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 28px;
}
.gallery-tab{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-display);
  font-weight:600;
  font-size:.92rem;
  color: var(--ink-soft);
  background:#fff;
  border: 1.5px solid rgba(31,77,54,.12);
  border-radius: 999px;
  padding: 11px 22px;
  cursor:pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gallery-tab i{ font-size:1rem; }
.gallery-tab:hover{ border-color: var(--gold); color: var(--green-deep); }
.gallery-tab.is-active{
  background: var(--green-deep);
  color:#fff;
  border-color: var(--green-deep);
  box-shadow: var(--shadow-soft);
}
.gallery-tab.is-active i{ color: var(--gold); }

.gallery-panel{
  opacity:0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-panel.is-active{
  opacity:1;
  transform: translateY(0);
}
.gallery-panel[hidden]{ display:none; }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item{
  border-radius: var(--radius-md);
  overflow:hidden;
  aspect-ratio: 1/1;
  position:relative;
  cursor:pointer;
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease;
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item::after{
  content:"\f52a";
  font-family: "bootstrap-icons";
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:1.4rem;
  background: rgba(31,77,54,0);
  transition: background .25s ease, opacity .25s ease;
  opacity:0;
}
.gallery-item:hover::after{ background: rgba(31,77,54,.45); opacity:1; }

@media (max-width: 767.98px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   CTA band
   ========================================================= */
.cta-band{
      background: linear-gradient(120deg, var(--green-deep), #3e89e7);
  color:#fff;
  padding: 46px 0;
}
.cta-band h3{ color:#fff; margin-bottom:6px; }
.cta-band p{ color: rgba(255,255,255,.8); }
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-start; }
.btn-cta-light{
  background: var(--gold);
  color: var(--green-deep) !important;
  font-family: var(--font-display); font-weight:600;
  border-radius: 999px; padding: 12px 24px; border:none;
}
.btn-cta-light:hover{ background:#fff; }
.btn-cta-outline{
  border: 1.5px solid rgba(255,255,255,.5);
  color:#fff !important;
  font-family: var(--font-display); font-weight:500;
  border-radius: 999px; padding: 12px 24px;
}
.btn-cta-outline:hover{ background: rgba(255,255,255,.12); }

@media (max-width: 991.98px){
  .cta-actions{ justify-content:flex-start; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: #131313;
  color: rgba(255,255,255,.75);
  padding: 60px 0 24px;
  font-size:.92rem;
}
.footer-logo{ height:48px; filter: brightness(0) invert(1); opacity:.95; }
.footer-about{ color: rgba(255,255,255,.65); }
.footer-heading{
  font-family: var(--font-display);
  color:#fff; font-weight:600;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size:.82rem;
  letter-spacing:.06em;
}
.footer-links, .footer-contact{ list-style:none; padding:0; margin:0; }
.footer-links li, .footer-contact li{ margin-bottom: 10px; }
.footer-links a{ color: rgba(255,255,255,.68); }
.footer-links a:hover{ color: var(--gold); }
.footer-contact a{ color: rgba(255,255,255,.68); }
.footer-contact i{ color: var(--gold); width:18px; }
.footer-hours{ color: rgba(255,255,255,.65); margin:0; }
.footer-social{ display:flex; gap:12px; margin-top:6px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color:#fff;
}
.footer-social a:hover{ background: var(--gold); color: var(--green-deep); }
.footer-divider{ border-color: rgba(255,255,255,.12); margin: 34px 0 18px; }
.footer-bottom{ text-align:center; color: rgba(255,255,255,.5); font-size:.82rem; }

/* =========================================================
   Floating action buttons
   ========================================================= */
.floating-actions{
  position: fixed;
  right: 20px; bottom: 20px;
  display:flex; flex-direction:column; gap:10px;
  z-index: 1040;
}
.fab{
  width:48px; height:48px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.15rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  border:none;
}
.fab-call{ background: var(--green-deep); color:#fff; }
.fab-line{ background:#06C755; color:#fff; }
.fab-top{
  background:#fff; color: var(--green-deep);
  border: 1px solid #e2e2e2;
  opacity:0; visibility:hidden; transform: translateY(8px);
  transition: all .25s ease;
}
.fab-top.show{ opacity:1; visibility:visible; transform:none; }

/* =========================================================
   Page header (about / product / gallery / contact / return)
   ========================================================= */
.page-header{
  background: var(--green-deep);
  color:#fff;
  padding: 64px 0 56px;
  position:relative;
  overflow:hidden;
}
.page-header h1{ color:#fff; margin-bottom:8px; }
.page-header .breadcrumb-custom{
  color: rgba(255,255,255,.7);
  font-size:.9rem;
}
.page-header .breadcrumb-custom a{ color:#fff; }
.page-header .breadcrumb-custom a:hover{ color: var(--gold); }

/* =========================================================
   Contact page
   ========================================================= */
.contact-card{
  background:#fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
  height:100%;
}
.contact-info-item{
  display:flex; gap:16px; align-items:flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed #dde3d7;
}
.contact-info-item:last-child{ border-bottom:none; }
.contact-info-item .icon{
  width:46px; height:46px; border-radius:50%;
  background: var(--green-soft);
  color: var(--green-deep);
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto;
}
.form-label{ font-family: var(--font-display); font-weight:500; font-size:.9rem; }
.form-control{
  border-radius: var(--radius-md);
  border: 1px solid #dde3d7;
  padding: 12px 14px;
}
.form-control:focus{
  border-color: var(--green-leaf);
  box-shadow: 0 0 0 .2rem rgba(76,122,87,.15);
}
.btn-submit{
  background: var(--green-deep);
  color:#fff;
  font-family: var(--font-display); font-weight:600;
  border-radius: 999px;
  padding: 13px 30px;
  border:none;
}
.btn-submit:hover{ background: var(--gold-dark); }

/* =========================================================
   Return policy page
   ========================================================= */
.policy-block{
  background:#fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 36px;
}
.policy-block h4{ margin-top: 28px; }
.policy-block h4:first-child{ margin-top:0; }
.policy-block ol, .policy-block ul{ color: var(--ink-soft); }

/* utility */
.text-gold{ color: var(--gold-dark) !important; }
.divider-leaf{
  width:48px; height:48px;
  color: var(--gold);
  margin: 0 auto 18px;
}



/* =========================================================
   Checkout page (check-out.php)
   ใช้ร่วมกับ style.css — reuse .section, .page-header,
   .form-label, .form-control, .btn-submit เดิม ไม่ประกาศซ้ำ
   ========================================================= */

.checkout-card{
  background:#fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}
.checkout-card-title{
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #dde3d7;
}

/* =========================================================
   Order summary sidebar
   ========================================================= */
.order-summary{
  background:#fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  position: sticky;
  top: 24px;
}

.order-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding: 14px 0;
}
.order-item-thumb{
  position:relative;
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  overflow:hidden;
}
.order-item-thumb img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.order-item-thumb .order-item-qty{
  position:absolute;
  top:-6px; right:-6px;
  width:20px; height:20px;
  border-radius:50%;
  background: var(--green-deep);
  color:#fff;
  font-size:.72rem;
  font-weight:600;
  display:flex; align-items:center; justify-content:center;
}
.order-item-info{ flex:1; min-width:0; }
.order-item-name{
  margin:0;
  font-size:.92rem;
  color: var(--ink);
  line-height:1.4;
}
.order-item-price{
  flex:0 0 auto;
  font-family: var(--font-display);
  font-weight:600;
  font-size:.92rem;
  color: var(--green-deep);
  white-space: nowrap;
}

.order-summary-divider{
  border-top: 1px dashed #dde3d7;
  margin: 14px 0;
}

.order-summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:.92rem;
  color: var(--ink-soft);
  padding: 4px 0;
}

.order-summary-total{
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.15rem;
  color: var(--green-deep);
  padding: 6px 0 18px;
}
.order-summary-total span:last-child{ color: var(--gold-dark); }

.order-summary-note{
  margin: 14px 0 0;
  font-size:.8rem;
  color: var(--ink-soft);
  text-align:center;
}

@media (max-width: 991.98px){
  .order-summary{ position: static; margin-top: 8px; }
}


/* =========================================================
   Confirm order page (confirmorder.php)
   ใช้ร่วมกับ style.css + checkout.css — reuse .section,
   .page-header, .checkout-card, .checkout-card-title,
   .order-item*, .order-summary*, .usage-list, .btn-submit เดิม
   ไม่ประกาศซ้ำ
   ========================================================= */

.confirm-notice{
  background: var(--green-soft);
  border-left: 4px solid var(--green-leaf);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.confirm-notice p{
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}
.confirm-notice-line1{ color: var(--green-deep); }
.confirm-notice-line1 a{
  color: var(--green-deep);
  text-decoration: underline;
}
.confirm-notice-line2{ color: #c0392b; margin-top: 4px !important; }

/* =========================================================
   Customer / contact info list
   ========================================================= */
.info-list p{
  margin: 0;
  padding: 8px 0;
  font-size: .95rem;
  color: var(--ink);
  border-bottom: 1px dashed #dde3d7;
}
.info-list p:last-child{ border-bottom: none; }
.info-label{
  display: inline-block;
  min-width: 130px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-soft);
}
.info-label::after{ content: ":"; margin-right: 8px; }

.info-section-spacer{ margin-top: 28px; }