/*--------------------------- Color variations ----------------------*/
/* Medium Layout: 1280px */
/* Tablet Layout: 768px */
/* Mobile Layout: 320px */
/* Wide Mobile Layout: 480px */
/* =================================== */
/*  Basic Style 
/* =================================== */
::-moz-selection {
  /* Code for Firefox */
  background-color: #235ee7;
  color: #fff;
}

::selection {
  background-color: #ff8e3d;
  color: #fff;
}

body {
  color: #777777;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.625em;
  position: relative;
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

select {
  display: block;
}

figure {
  margin: 0;
}

a {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

iframe {
  border: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: 0;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
  text-decoration: none;
  outline: 0;
}

.card-panel {
  margin: 0;
  padding: 60px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 14px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: #ff6a00;
  transition: all 0.5s;
}

@media (max-width: 673px) {
  #logo {
    margin-left: 20px;
  }
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #235ee7;
}

#header #logo img {
  padding: 0;
  margin: 0;
   height: 60px;      /* 👈 ปรับตรงนี้ตามที่อยากให้สูง */
  width: auto; 
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }
  #header #logo img {
    max-height: 40px;
  }
}
/* จัดโลโก้ + ตัวหนังสือ ให้อยู่บรรทัดเดียวกัน */
#logo .logo-wrap {
  display: flex;
  align-items: center;
  gap: 20px;          /* ระยะห่างระหว่างโลโก้กับตัวหนังสือ */
}

/* สไตล์ข้อความชื่อบริษัท */
#logo .logo-text {
  color: #ffffff;     /* สีขาวให้ตัดกับแถบส้ม */
  font-size: 18px;    /* ปรับขนาดตามใจเลย */
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* ===========================
   Language Switcher – Glass Style
   =========================== */

.lang-switcher {
  margin-left: auto;
  display: flex;
  align-items: center;
}

/* ปุ่มด้านบน */
.btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.btn-lang:focus {
  outline: none;
}

.btn-lang:hover {
  background: rgba(0, 0, 0, 0.45);
}

/* ไอคอนลูกโลก + โค้ดภาษา */
.lang-icon {
  font-size: 13px;
  opacity: 0.9;
}

.lang-current {
  font-weight: 600;
  letter-spacing: 0.08em;
}

.lang-caret {
  font-size: 9px;
  opacity: 0.9;
}

/* กล่อง dropdown โปร่งใส */
.lang-switcher .dropdown-menu.lang-menu {
  min-width: 210px;
  border-radius: 16px;
  padding: 8px 0;
  background: rgba(5, 5, 10, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
}

/* รายการภาษา */
.lang-switcher .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  font-size: 13px;
  color: #f5f5f5;
}

.lang-switcher .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lang-short {
  width: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.lang-name {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .btn-lang {
    padding: 5px 12px;
    font-size: 10px;
  }
}
.btn-lang.dropdown-toggle::after {
  display: none !important;
}



/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

.section-gap {
  padding: 120px 0;
}

.section-title {
  padding-bottom: 30px;
}

.section-title h2 {
  margin-bottom: 20px;
}

.section-title p {
  font-size: 16px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .section-title p br {
    display: none;
  }
}

.p1-gradient-bg, .primary-btn, .home-about-area .home-about-right .primary-btn, .single-unique-product:hover .primary-btn, .faq-left .card-header, .single-footer-widget .click-btn, .generic-banner {
  background-image: -moz-linear-gradient(0deg, #235ee7 0%, #4ae7fa 100%);
  background-image: -webkit-linear-gradient(0deg, #235ee7 0%, #4ae7fa 100%);
  background-image: -ms-linear-gradient(0deg, #235ee7 0%, #4ae7fa 100%);
}

.p1-gradient-color, .footer-social a:hover i, .single-footer-widget .bb-btn {
  background: -moz-linear-gradient(0deg, #235ee7 0%, #4ae7fa 100%);
  background: -webkit-linear-gradient(0deg, #235ee7 0%, #4ae7fa 100%);
  background: -ms-linear-gradient(0deg, #235ee7 0%, #4ae7fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.primary-btn {
  line-height: 36px;
  padding-left: 30px;
  padding-right: 60px;
  border-radius: 25px;
  border: none;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
}

.primary-btn:focus {
  outline: none;
}

.primary-btn span {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  right: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.primary-btn:hover {
  color: #fff;
}

.primary-btn:hover span {
  color: #fff;
  right: 20px;
}

.primary-btn.white {
  border: 1px solid #fff;
  color: #fff;
}

.primary-btn.white span {
  color: #fff;
}

.primary-btn.white:hover {
  background: #fff;
  color: #235ee7;
}

.primary-btn.white:hover span {
  color: #235ee7;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.banner-area {
  background: url(../img/pageBG.png) center;
  background-size: cover;
}

@media (max-width: 1199.98px) {
  .banner-area .fullscreen {
    height: 800px !important;
  }
}

.banner-content {
  margin-top: -250px;
  text-align: center;
}

.banner-content h5 {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 50px;   /* ลดลงให้เล็กกว่าหัวใหญ่หน่อย จะดูแพงขึ้น */
  margin-top: -100px; /* ถ้าอยากให้ขยับขึ้นทั้งบล็อก */
  margin-bottom: 10px; /* ระยะห่างจาก h1 */
}

.banner-content h1 {
  color: #fff;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.2em;
  margin-top: 0;    /* เอา -80px ออก ไม่ต้องใช้ค่าติดลบแล้ว */
}


.banner-content h1 span {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .banner-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .banner-content h1 br {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .banner-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 414px) {
  .banner-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 1280px) {
  .banner-content br {
    display: none;
  }
}

.primary-btn {
  background: #fff;
  border: 1px solid transparent;
  color: #222;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 50px;
}

.primary-btn:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.video-left .primary-btn {
  background-color: #222;
  color: #fff;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.video-left .primary-btn:hover {
  border: 1px solid #222;
  background-color: transparent;
  color: #222;
}

.video-left h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #235ee7;
  font-size: 12px;
  font-weight: 300;
}

.video-left h1 {
  padding-bottom: 20px;
   color: #ff6a00;
}

.video-left p span {
  color: #000;
  font-weight: 400;
}

@media (max-width: 960px) {
  .video-left {
    margin-bottom: 30px;
  }
}

.video-right {
  background: url(../img/video-bg.png) no-repeat center;
  background-size: cover;
  height: 350px;
}

.video-right .overlay-bg {
  background-color: rgba(0, 0, 0, 0.78);
}

.video-right .play-btn {
  z-index: 2;
}

@media (max-width: 800px) {
  .video-right {
    margin-top: 100px;
  }
}

.top-course-area {
  background-color: #f9f9ff;
}
.top-course-area .title h1 {
  color: #ff6a00;   
}
/* ปรับขนาดรูปตรงกลางในส่วน Top Courses */
.course-middle img {
  max-width: 60%;   
  height : auto;     
}

.course-right .lnr, .course-left .lnr {
  color: #235ee7;
  font-size: 30px;
}

.course-right h4, .course-left h4 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #235ee7;
}

.single-course {
  margin-bottom: 40px;
}

.home-about-area .home-about-right {
  padding-right: 10%;
  padding-left: 4%;
}

.home-about-area .home-about-right h1 {
  margin-bottom: 20px;
    line-height: 1.2;
      font-size:35px;  
}
.sub-headline {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  color:  #ff6a00;
}

.home-about-area .home-about-right p span {
  font-weight: 500;
}

.home-about-area .home-about-right .primary-btn {
  color: #fff;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.home-about-area .home-about-right .primary-btn:hover {
  background: transparent;
  color: #235ee7;
  border-color: #235ee7;
}
.watch-spec {
  margin-bottom: 14px;   
}

.watch-spec .sub-headline {
  display: inline;       
  margin: 0;
  color: #ff6a00;     
  margin-right: 8px;     
}

.watch-spec .spec-text {
  display: inline;     
  margin: 0;
}

@media (max-width: 1366px) {
  .home-about-area .home-about-right {
    padding-right: 5%;
    padding-left: 4%;
  }
}

@media (max-width: 800px) {
  .home-about-area .home-about-right {
    margin-top: 40px;
  }
}

/* ===== Watch feature cards (expand horizontally) ===== */

/* ===== Service / lineup section ===== */
/* พื้นหลัง section */
.service-area {
  background-color: #f9f9ff;
}

/* แถบการ์ดแบบเลื่อนแนวนอน */
.watch-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-behavior: smooth;
    scrollbar-width: thin; 
  scrollbar-color: #ff8b3d8f transparent;
}

/* การ์ดพื้นฐาน (ยังไม่กาง) */
.watch-card {
  position: relative;
  flex: 0 0 48%;               /* สองใบต่อแถว */
  min-height:460px;
  border-radius: 18px;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: default;
  transition:
    flex-basis 0.35s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


/* overlay มืดบนรูป – ด้านซ้ายเข้มเพื่อให้ตัวอักษรชัด */
.watch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,   /* ซ้ายมืดมาก */
    rgba(0, 0, 0, 0.80) 30%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.10) 100%  /* ขวาสว่างเห็นรูป */
  );
  pointer-events: none;
}


/* แยกรูปแต่ละรุ่น */
/* base style เดิมของ watch-card ใช้ต่อได้เหมือนเดิม */

.watch-card-kw51-display {
  background-image: url("../img/KW51ULTRA3\ Dual.png");
}

.watch-card-kw51-fitness {
  background-image: url("../img/KW51\ ULTRA\ 3_2.png");
}

.watch-card-kw51-smart {
  background-image: url("../img/51_3.webp");
}
/* base style เดิมของ watch-card ใช้ต่อได้เหมือนเดิม */

.watch-card-kw25-display {
  background-image: url("../img/25_1.webp");
}

.watch-card-kw25-fitness {
  background-image: url("../img/25_2.webp");
}

.watch-card-kw25-smart {
  background-image: url("../img/25_3HD.webp");
}
/* base style เดิมของ watch-card ใช้ต่อได้เหมือนเดิม */

.watch-card-kw23-design {
  background-image: url("../img/23_1rugged.webp");
}

.watch-card-kw23-health {
  background-image: url("../img/23_2out.webp");
}

.watch-card-kw23-smart {
  background-image: url("../img/23_3allday.webp");
}


.watch-card-inner {
  position: relative;
  z-index: 1;
  padding: 24px 26px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content:  flex-start;
}

/* บรรทัดบน: ชื่อ + ปุ่ม + */
.watch-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.watch-card-title-group {
  max-width: 70%;
}

.watch-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffcf91;
}
/* เปลี่ยนสีหัวข้อใน section รุ่นนาฬิกา */
#models .header-text h1 {
  color: #ff6a00;  
}

#kw51 .header-text h1 { color: #ff6a00; }   /* รุ่น KW51 */
#kw25 .header-text h1 { color: #e8702f; }   /* รุ่น KW25 โทนทองอ่อน */
#kw23 .header-text h1 { color: #ff8e3d; }   /* รุ่น KW23 */

.watch-title {
  margin: 4px 0 2px;
  font-size: 20px;
  font-weight: 600;
 
}

.watch-sub {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}
/* ทำให้ตัวอักษรเด่นขึ้น + เงาจาง ๆ */
.watch-tag,
/* เปลี่ยนสีตัวอักษรของ KW23 ให้เป็นส้ม */
.watch-card-kw23 .watch-tag {
  color: #ff6a00;   /* ส้มหลักของเว็บ */
}

.watch-title,
.watch-sub,
.watch-extra,
.watch-extra li {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
}

/* ให้หัวข้อหนาขึ้นนิดนึง */
.watch-title {
  font-weight: 700;
}

/* ปุ่ม + / x */
.watch-toggle-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.386);
  color: #f98c5e;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.watch-toggle-btn .icon {
  margin-top: -1px;
}

.watch-card:hover .watch-toggle-btn {
  background: rgba(255, 255, 255, 0.22);
}

/* รายละเอียดที่ทับบนรูป (ตอนปิดจะซ่อน) */
.watch-extra {
  margin-top: 35px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  font-size: 14px;
}

.extra-lead {
  font-weight: 500;
  margin-bottom: 8px;
}

.watch-extra ul {
  padding-left: 18px;
  margin: 0;
}

/* ===== สถานะเปิด: การ์ดกางออกด้านขวา ===== */
.watch-card.is-open {
  flex-basis: 80%;                  /* 👉 ขยายกินทั้งแถว */
  box-shadow: none;
}

.watch-card.is-open .watch-extra {
  max-height: 220px;                 /* ให้มีที่พอใส่ list */
  opacity: 1;
}

.watch-card.is-open .watch-toggle-btn {
  background: #ffffff6d;
}

.watch-card.is-open .watch-toggle-btn .icon {
  font-size: 20px;
}

/* Responsive: mobile ให้เป็นการ์ดกางลงด้านล่าง */
@media (max-width: 991.98px) {
  .watch-strip {
    flex-direction: column;
    overflow-x: hidden;
  }
  .watch-card {
    flex: 0 0 100%;
  }
}
/* Chrome / Edge / Safari (WebKit) */
.watch-strip::-webkit-scrollbar {
  height: 0px;                                
}

.watch-strip::-webkit-scrollbar-track {
  background: transparent;                    
}
/* ลดช่องว่างสำหรับ section ที่เป็น service-area */
.service-area.section-gap {
  padding: 100px 0 70px;   /* top 100px, bottom 70px แล้วแต่ชอบ */
}

.service-area.section-gap + .service-area.section-gap {
  padding-top: 40px;       
}

.service-area .header-text {
  text-align: center;
}

.service-area .header-text h1 {
  margin-bottom: 20px;
}

/*product*/
/* =========================
   UNIQUE FEATURE AREA
   ========================= */
.unique-feature-area {
  background-color: #04091e; /* พื้นหลังดำเข้ม */
}

/* หัวข้อ section ใต้ title */
.unique-feature-area .title p.unique-subtitle {
  color: #d9dde7;
  max-width: 620px;
  margin: 0 auto;
}

/* กล่องสินค้า */
.single-unique-product {
  background-color: #ffffff;
  text-align: center;
  border-radius: 16px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* รูปนาฬิกา */
.single-unique-product img.img-fluid {
  padding: 32px 0 16px;
}

/* ส่วนล่าง (พื้นเทาอ่อน) */
.single-unique-product .desc {
  background-color: #f9f9ff;
  padding: 18px 18px 22px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

/* ชื่อรุ่น */
.single-unique-product .desc h4 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

/* ข้อความสั้นใต้ชื่อรุ่น */
.single-unique-product .unique-copy {
  font-size: 13px;
  color: #555c70;
  margin-bottom: 14px;
}

/* กล่องรวมปุ่ม */
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ปุ่ม Scan to shop now (เวอร์ชันเดียว ไม่ซ้ำ) */
.scan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff8b3d, #ff6a00);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 139, 61, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.scan-btn:hover {
  background: #ff9c55;
  box-shadow: 0 14px 32px rgba(255, 139, 61, 0.6);
  transform: translateY(-1px);
}

.scan-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* hover card ให้เด้งเบา ๆ */
.single-unique-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

/* ไม่ใช้ปุ่ม .primary-btn เดิมแล้ว */
.single-unique-product .primary-btn {
  display: none;
}

/* =========================
   QR POPUP
   ========================= */

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;              /* ซ่อนปกติ */
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.qr-modal.is-visible {
  display: flex;
}

/* ฉากดำด้านหลัง */
.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* กล่องป๊อปอัป */
.qr-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 92%;
  background: #f9f9fa;
  border-radius: 26px;
  padding: 26px 26px 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  color: #f9fafc;
}

/* ปุ่ม X ปิด */
.qr-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  font-size: 20px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  color: #230707;
  cursor: pointer;
}

.qr-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* หัวข้อด้านบน */
.qr-modal-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8b3d;
}

.qr-modal-sub {
  margin: 0 0 18px;
  font-size: 13px;
  text-align: center;
  color: #08090a;
}

/* แถว 3 QR */
.qr-modal-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* กล่องของแต่ละแอป */
.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* รูป QR */
.qr-item-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 14px 30px rgba(10, 8, 8, 0.35);
}

/* ชื่อแอปใต้รูป */
.qr-item-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8b3d;
}

/* มือถือ */
@media (max-width: 575.98px) {
  .qr-modal-dialog {
    padding: 22px 16px 20px;
  }
  .qr-item-img {
    width: 96px;
    height: 96px;
  }
}




/*end product*/



.faq-area {
  background: url(../img/faq-bg1.png) center;
  background-size: cover;
}

.faq-left .card {
  border: none;
  background: transparent;
  border-radius: 0 !important;
  margin-bottom: 10px;
}

.faq-left .card-header {
  padding: 5px;
  border-radius: 0 !important;
  border-bottom: none;
}

.faq-left .card-header .btn-link {
  border-radius: 0 !important;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 414px) {
  .faq-left .card-header .btn-link {
    font-size: 12px;
  }
}
.faq-left .card-header {
   background: linear-gradient(
    90deg,
    #cb6517 0%,
    #fe9d35 40%,
    #ffa527 100%   
      ); /* หรือจะใส่ gradient ใหม่ก็ได้ */
  border-radius: 8px 8px 0 0;
}


/*footer*/
/* ---------- FOOTER MODERN STYLE ---------- */

.footer-area.footer-modern {
  padding: 60px 0 30px;
  background: linear-gradient(180deg, #ff822f 0%, #fcb985 100%);
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
  color: #ff732d;
}

/* แถวล่างสุด (copyright) */
.footer-bottom-row {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
}

/* โลโก้ + ชื่อแบรนด์ */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

/* คำอธิบาย และ ที่อยู่ */
.footer-description {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fffefe;
}

.footer-address {
  margin-bottom: 0;
  font-size: 13px;
  color: #ffffff;
}

/* Social side */
.footer-right {
  margin-top: 20px;
}

.footer-follow-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

@media (min-width: 992px) {
  .footer-right .footer-social {
    justify-content: flex-end;
  }
}

/* วงกลมไอคอน */
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffefef;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.footer-social a i {
  font-size: 15px;
  color: #222;
}

.footer-social a:hover {
  background: #ff8b3d;
  box-shadow: 0 10px 24px rgba(255, 139, 61, 0.35);
  transform: translateY(-2px);
}

.footer-social a:hover i {
  color: #fff;
}

/* ข้อความลิขสิทธิ์ */
.footer-text {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}
