@import 'https://cdn.jsdelivr.net/gh/lazywasabi/thai-web-fonts@7/fonts/Prompt/Prompt.css';

html,
body,
button,
input,
textarea,
select {
    font-family: 'Prompt', sans-serif;
}

:root {
    --text-dname: #c21b1b;
}
.header-contact {
    background: rgb(152,2,2);
        background: linear-gradient(90deg, rgba(152,2,2,1) 0%, rgba(208,18,18,1) 100%);
    height: auto; /* ความสูงปรับตามเนื้อหา */
}
.text-header {
    font-size: 12px;
}

.logo {
    width: 60px;
}
.logo-text {
    display: flex; /* ใช้ Flexbox เพื่อจัดวาง */
    align-items: center; /* จัดตำแหน่งแนวตั้งให้อยู่ตรงกลาง */
}

.logo {
    margin-right: 5px; /* เพิ่มระยะห่างระหว่างโลโก้และข้อความ */
}

.text {
    display: flex; /* ใช้ Flexbox เพื่อจัดวางข้อความ */
    flex-direction: column; /* จัดเรียงข้อความในแนวตั้ง */
}

.navbar-brand p {
    margin-top: -9px;
    font-size: 0.6em; /* ปรับขนาดตัวอักษร */
    font-family: 'Prompt', sans-serif;
}


.nav-link.active {
    color: #d41e1e !important; /* สีตัวอักษรเมื่อถูกเลือก */
    font-weight: bold; /* ตัวหนาเมื่อถูกเลือก */
    /* เพิ่มสไตล์อื่น ๆ ตามต้องการ */
}

.bg-contact {
    background: rgb(194, 16, 16);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    color: #fff;
}

.bg-contact:focus{
    box-shadow: none;
}






.card-cose img{
    border-radius: 12px;
    opacity: 0; /* ซ่อนองค์ประกอบเริ่มต้น */
    transform: translateY(50px); /* เลื่อนลงมา 50px จากตำแหน่งเดิม */
    animation: slideUp 0.8s ease-out forwards; /* เรียกใช้แอนิเมชัน */
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.1);
}

.overlay-cose {
    position: absolute;
    height: 100%;
        bottom: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(to top left, rgba(0, 0, 0, 0.9), rgba(136, 0, 0, 0.6), rgba(255, 0, 0, 0.048));
        /* เพิ่มสีดำทึบมากขึ้น */
        color: white;
        padding: 15px;
        opacity: 0;
        transition: opacity 0.6s ease;
        display: inline-block;
        text-align: right;
        margin: 0;
}

.image-container:hover .overlay-cose {
    opacity: 1;
    border-radius: 12px 0 12px 0;
}

.overlay-cose h4 {
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.overlay-cose p {
    color:#dbdbdbb7;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


















/* btn-eye */
.btn-eye {
    background-color: #f1f1f1;
}
.btn-add {
    background-color: rgb(62, 212, 42);
    color:#fff;
    border-radius: 12px;
    font-weight: 600;
}
.home-icon {
    text-decoration: none;
    color:#282525

}








/* form-control */
.form-control {
    font-size: 14.5px;
}



/* Tabel sytle */
.data-created {
    font-size: 12px;
}


.card-service {
    position: relative;
    overflow: hidden;
    background: rgb(152,2,2);
    background: linear-gradient(90deg, rgba(152,2,2,1) 0%, rgba(208,18,18,1) 100%);
    border-radius: 16px;
    border: solid 1px #ff4545;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    color: white;
}

.card-service:hover::before { /* เพิ่ม :hover */
    content: '';
    position: absolute;
    top: -100%;
    right: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(248, 16, 16, 0.699), rgba(255, 255, 255, 0));
    animation: shine 2s infinite linear;
    z-index: 1;
}

@keyframes shine {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-50%, 50%);
    }
}


.card-service-2 img {
    border-radius: 14px;
}
.card-service-2 h5 {
    color:#fff;
    margin-top: 10px;
}
.card-service-2 span {
    color:#ff8e8e;
    font-size: 13px;
}

.card-service-2 {
    position: relative;
    overflow: hidden;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    border: solid 1px #e2e2e2;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    color: white;
}

@keyframes shine {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50%, 50%);
    }
}


.card-service-2 img {
    border-radius: 14px;
}

.card-service-2 h5 {
    font-size: 22px;
    color: #222222;
    margin-top: 10px;
    font-weight: 600;
}

.card-service-2 span {
    color: #383838;
    font-size: 14px;
}

/* การตัดคำบรรทัด */
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-truncate-5 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.text-truncate-10 {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}










.card-postblog{
    background-color: #ffffff;
    position: relative; /* กำหนดตำแหน่ง relative */
    z-index: 2; /* กำหนด z-index ให้สูงกว่า img */
    margin-top: -5rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    border-radius: 0 16px 0 16px;
}
.card-postblog span{
    font-size: 13px;
}
.card-postblog p {
    color:#afafaf;
    font-size: 12px;
}
.card-postblog-img {
    border-radius: 12px;
    position: relative; /* กำหนดตำแหน่ง relative */
    z-index: 1; /* กำหนด z-index ให้น้อยกว่า card-postblog */
}

.text-content {
    padding: 20px;
}
.read-more-btn {
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin-top: 20px;
}











/* owl-carousel */
.owl-carousel .item img {
    width: 100%; /* ให้รูปภาพเต็มความกว้างของ item */
    height: auto;
    border-radius: 14px;
}

.owl-carousel .owl-dots {
  display: none;
}


.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background-color: rgba(36, 4, 4, 0.685); /* สีพื้นหลัง */
    color: rgb(255, 255, 255); /* สีตัวอักษร */
    width: 40px; /* ความกว้าง */
    border: solid 1px #a81b1b;
    height: 40px; /* ความสูง */
    border-radius: 12px; /* รัศมีมุม (ทำให้เป็นวงกลม) */
    cursor: pointer; /* เปลี่ยนเคอร์เซอร์เป็นรูปมือ */
    font-size: 20px; /* ขนาดตัวอักษร */
    display: flex; /* ใช้ Flexbox เพื่อจัดตำแหน่งเนื้อหา */
    justify-content: center; /* จัดตำแหน่งเนื้อหาให้อยู่ตรงกลางแนวนอน */
    align-items: center; /* จัดตำแหน่งเนื้อหาให้อยู่ตรงกลางแนวตั้ง */
    transition: background-color 0.3s ease; /* เพิ่ม transition */
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: rgb(255, 255, 255); /* สีพื้นหลังเมื่อ hover */
    color:#df4747;
}






.container-bg {
    background-image: url('/img/bg_course.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(190, 15, 15, 0.8), rgb(255, 255, 255)), url('/img/bg_course.jpg');
}

.text-center-course {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}




.container-bg-2 {
    background-image: url('/img/p2.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom, rgba(190, 15, 15, 0.8), rgb(255, 255, 255)), url('/img/p2.jpg');
}

.text-center-course {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}




.slideshow .slick-prev,
.slideshow .slick-next {
    position: absolute;
    transform: translateY(-50%);
    z-index: 10;
}

.slideshow .slick-prev {
    left: 10%;
    /* ปรับค่าตามต้องการ */
}

.slideshow .slick-next {
    right: 10%;
    /* ปรับค่าตามต้องการ */
}






.text-dname {
    color: var(--text-dname)
}



/* สไลด์ splide__slide */

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.splide__slide img {
    max-width: 100%; /* ให้รูปภาพเต็มความกว้างของ slide */
    max-height: 100%; /* ให้รูปภาพเต็มความสูงของ slide */
    object-fit: contain; /* ปรับขนาดรูปภาพให้พอดีกับ slide โดยไม่บิดเบี้ยว */
}

.splide__arrow {
    background-color: rgba(228, 30, 30, 0.5); /* สีพื้นหลัง */
    color: white; /* สีตัวอักษร */
    width: 40px; /* ความกว้าง */
    height: 40px; /* ความสูง */
    border-radius: 50%; /* รัศมีมุม (ทำให้เป็นวงกลม) */
    border: none; /* ลบเส้นขอบ */
    cursor: pointer; /* เปลี่ยนเคอร์เซอร์เป็นรูปมือ */
    font-size: 20px; /* ขนาดตัวอักษร */
    display: flex; /* ใช้ Flexbox เพื่อจัดตำแหน่งเนื้อหา */
    justify-content: center; /* จัดตำแหน่งเนื้อหาให้อยู่ตรงกลางแนวนอน */
    align-items: center; /* จัดตำแหน่งเนื้อหาให้อยู่ตรงกลางแนวตั้ง */
    transition: background-color 0.3s ease; /* เพิ่ม transition */
}

.splide__arrow:hover {
    background-color: rgba(0, 0, 0, 0.8); /* สีพื้นหลังเมื่อ hover */
}

.splide__arrow--prev {
    left: 10px; /* ระยะห่างจากขอบซ้าย */
}

.splide__arrow--next {
    right: 10px; /* ระยะห่างจากขอบขวา */
}





.btn-contact-a {
    border: solid 1px #c21b1b;
    color:#c21b1b;
    border-radius: 12px;
}
.btn-contact-a:hover{
    color:#fff;
    background-color: #c21b1b;
}

.btn-contact {
    background-color: #c21b1b;
    color:#fff;
    border-radius: 12px;
}
.btn-contact:hover {
    background-color: #ffffff;
    color:#c21b1b;
    border-radius: 12px;
    border: none;
}













/* อเนมิชั่น */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* Footer */
footer {
    background-color:#eaeaea;
    color: white;
}

footer a {
    color: rgb(48, 48, 48);
    text-decoration: none;
}

footer a:hover {
    color: #af0e0e;
}


.text_footer_p1 {
    font-size: 14px;
    color: #282525;
}
.text_footer_p {
    font-size: 12px;
    color: #282525;
}
.hr-borderx {
    width: 70px;
    margin-top: -10px
}

.social-icons img {
    width: 30px;
    margin-right: 10px;
}

.qr-code {
    position: relative;
}

.line-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2em;
    color: red;
    font-weight: bold;
    text-decoration: line-through;
}


.contact-details a {
    font-size: 13px;
}

.contact-details p {
    color: #af0e0e;
}


/* social-icons */
.social-icons{
    display: flex;
}

.social-icons a {
    border-radius: 6px;
    background-color: #ffffff;
    border: solid 1px #d8d8d8;
}
.social-icons a:hover{
    background-color: #e4e4e4;
}
.social-icons img {
    width: 16.5px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .col-md-3 {
        margin-bottom: 20px;
    }
}











.discord {
    font-size: 10px;
    color: #97a3f5;
}

.card {
    border: none;
}


.btn-dezen {
    color: #fff;
    background-color: #a2b2cb;
    border: solid 1px #a2b2cb;
    border-radius: 10px;
}

.btn-dezen:hover {
    border: none;
    border-bottom: solid 2px #87b6ff;
    background-color: #515a68;
}



/* Card Website My */

    .card-dezen {
        border-radius: 1rem;
        background-color: rgb(87, 87, 87);
        padding: 1rem;
      }
  
  .image {
    width: 50px;
  }
  
  .name {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
  }
  
  .function {
    font-size: 0.75rem;
    line-height: 1rem;
    color: rgba(156, 163, 175, 1);
  }
  
  
  .request {
    margin-top: 1.5rem;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    transition: all .3s ease;
  }
  
  .request:hover {
    background-color: rgb(118, 36, 194);
    color: #fff;
  }
  





  .card-banner {
    border-radius: 14px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  }

  /* Website */
  .btn-link {
    text-decoration: none;
    color: #3e7adb;
    font-size: 14px;
    background-color: #f0f6ff;
    border-radius: 18px;
  }
  .btn-link:hover::after {
    content: 'เข้าชม'; /* แสดงคำว่า 'Next' เมื่อ hover */
    color: #515a68;
    font-weight: 600;
    text-decoration: none;
  }
  
  .btn-link:hover {
    text-decoration: none;
    color: #515a68;
    color: transparent; /* ทำให้ข้อความเดิมหายไปเมื่อ hover */
  }

  .font-h6 {
    color: #3d5579;
    font-weight: 600;
  }
  .font-p {
    font-size: 13px;
  }


  .card-dezen-2 {
    background-color: #f1f7ff;
    border-radius: 12px;
    border: solid 1px #ddeaff;
    text-decoration: none;
    color: #494949;

  }
  .card-dezen-2:hover {
    text-decoration: none;
    border-bottom: solid 3px #87b6ff;
  }

/* ===== Homepage redesign 2026 ===== */
:root {
  --kt-navy: #4a2118;
  --kt-blue: #079fc8;
  --kt-cyan: #42c9e8;
  --kt-pale: #f8fafc;
  --kt-ink: #2d3748;
  --kt-cream: #ffffff;
  --kt-mist: #f1f5f9;
  --kt-brown: #4a2118;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.home-redesign {
  margin: 0;
  color: var(--kt-ink);
  font-family: 'Prompt', sans-serif;
  background: #fff;
}
.site-shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: relative; z-index: 20; background: #fff; }
.utility-bar { padding: 10px 0; background: #fff; }
.utility-inner { min-height: 95px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.utility-social { display: flex; align-items: center; gap: 8px; }
.utility-social > a:not(.phone-link), .contact-social a {
  display: inline-flex; align-items: center; justify-content: center; width: 35px; height: 35px; border-radius: 50%;
  color: #fff !important; text-decoration: none; transition: transform .2s ease, filter .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.08); border: 0 !important;
}
.utility-social > a:not(.phone-link):hover, .contact-social a:hover { transform: translateY(-2px); filter: brightness(1.1); color: #fff !important; }

/* Social Brand Colors */
.utility-social > a.social-btn-facebook, .utility-social > a[aria-label="Facebook"], .contact-social a.facebook, .contact-social a[aria-label*="Facebook"] { background: #1877f2 !important; color: #fff !important; }
.utility-social > a.social-btn-line, .utility-social > a[aria-label="LINE"], .contact-social a.line, .contact-social a[aria-label*="LINE"] { background: #06c755 !important; color: #fff !important; }
.utility-social > a.social-btn-tiktok, .utility-social > a[aria-label="TikTok"], .contact-social a.tiktok, .contact-social a[aria-label*="TikTok"] { background: #000000 !important; color: #fff !important; }
.utility-social > a.social-btn-instagram, .utility-social > a[aria-label="Instagram"], .contact-social a.instagram, .contact-social a[aria-label*="Instagram"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285ae6 90%) !important; color: #fff !important; }
.utility-social > a.social-btn-youtube, .utility-social > a[aria-label="YouTube"], .contact-social a.youtube, .contact-social a[aria-label*="YouTube"] { background: #ff0000 !important; color: #fff !important; }
.utility-divider { width: 1px; height: 38px; background: #bdeaf3; margin: 0 5px; }
.phone-link { color: var(--kt-blue); font-weight: 700; text-decoration: none; white-space: nowrap; }
.phone-link i { color: var(--kt-cyan); margin-right: 5px; }
.brand-lockup { display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--kt-navy); }
.navbar-logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 105px;
  width: auto;
  max-width: 320px;
  margin: 0;
  background: transparent;
  overflow: visible;
  border-radius: 0;
  clip-path: none;
}
.brand-lockup .navbar-logo-circle img {
  display: block;
  height: 100%;
  max-height: 105px;
  width: auto;
  max-width: 320px;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  transform: scale(1.4);
  transition: transform .2s ease;
}
.brand-lockup span { display: flex; flex-direction: column; line-height: 1.05; }
.brand-lockup strong { font-size: 22px; font-weight: 800; }
.brand-lockup small { color: #7c8999; font-size: 12px; margin-top: 7px; }
.header-actions { justify-self: end; display: flex; gap: 10px; align-items: center; }
.header-search { display: flex; height: 42px; width: 255px; border: 1px solid #9edfeb; border-radius: 8px; overflow: hidden; }
.header-search input { min-width: 0; width: 100%; border: 0; outline: 0; padding: 0 13px; color: #36516d; }
.header-search button { border: 0; background: #fff; }
.header-chat { color: #fff; background: var(--kt-brown); padding: 11px 16px; border-radius: 8px; text-decoration: none; font-weight: 700; white-space: nowrap; }
.main-nav { padding: 0; background: linear-gradient(100deg, #32130d, #6b3224); }
.nav-inner { min-height: 58px; display:flex; align-items:center; justify-content:center; }
.main-nav .navbar-collapse { width:100%; align-items:center; align-self:stretch; }
.main-nav .navbar-nav { min-height:58px; margin:auto; flex-wrap:wrap; align-items:center; justify-content:center; gap:2px; }
.main-nav .nav-item { display:flex; align-items:center; }
.main-nav .nav-link { min-height:48px; display:flex; align-items:center; justify-content:center; color:#fff !important; font-weight:600; line-height:1.35; padding:10px 15px !important; border-radius:8px; }
.main-nav .nav-link:hover, .main-nav .nav-link.active { background: rgba(255,255,255,.22); }
.mobile-brand { display: none; }
.mobile-drawer-toggle { display:none; }
.main-nav .navbar-toggler { color: #fff; border-color: rgba(255,255,255,.5); }
.hero { background: var(--kt-cream); overflow: hidden; }
.hero-slide { display: block; width: 100%; }
.hero-slide img { width: 100%; height: clamp(310px, 39vw, 590px); object-fit: cover; }
.desktop-banners .hero-slide img { height: auto; object-fit: cover; }
.mobile-banners { display: none !important; }
.hero-carousel .owl-nav { position: absolute; inset: 50% 0 auto; transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none; padding: 0 16px; }
.hero-carousel .owl-nav button { pointer-events: auto; width: 44px; height: 70px; border-radius: 8px !important; background: rgba(255,255,255,.72) !important; color: var(--kt-blue) !important; font-size: 40px !important; }
.hero-carousel .owl-dots { display: block; position: absolute; bottom: 13px; left: 0; right: 0; text-align: center; }
.hero-carousel .owl-dot span { width: 9px; height: 9px; margin: 4px; background: #fff; display: block; border-radius: 50%; }
.hero-carousel .owl-dot.active span { background: var(--kt-cyan); }
.quick-section { padding: 42px 0; background: var(--kt-pale); }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.quick-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.quick-links a { min-height: 170px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #1c4b90; text-decoration: none; font-weight: 700; background: #ffffff; border-radius: 16px; box-shadow: 0 4px 18px rgba(0,0,0,.05); transition: transform .25s ease, box-shadow .25s ease; padding: 20px 14px; }
.quick-links a:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(28,75,144,.12); }
.quick-links .block-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(28,75,144,0.05);
  color: #1c4b90;
  transition: background .25s, color .25s;
  margin: 0 auto;
  line-height: 1;
  text-align: center;
}
.quick-links .block-circle i {
  font-size: 26px;
  color: #1c4b90;
  transition: color .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  margin: 0;
}
.quick-links a:hover .block-circle { background: rgba(28,75,144,0.1); }
.quick-links a:hover .block-circle i { color: #1c4b90; }
.quick-links .block-text span { font-size: 17px; font-weight: 400; color: #1c4b90; text-align: center; display: block; }
.video-card { height: 100%; min-height: 100%; position: relative; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 4px 18px rgba(0,0,0,.06); }
.video-card video,
.video-card iframe { display: block; width: 100%; height: 100%; min-height: 100%; object-fit: cover; border: 0; border-radius: 16px; }
.video-caption { display: none; }
.home-section { padding: 76px 0; }
.soft-bg { background: var(--kt-cream); }
.section-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; }
.section-heading > span { position: relative; padding-left: 18px; color: var(--kt-navy); font-size: 31px; font-weight: 800; }
.section-heading > span:before { content:""; position:absolute; left:0; top:4px; bottom:4px; width:5px; border-radius:9px; background:var(--kt-cyan); }
.section-heading > a { border: 2px solid var(--kt-blue); border-radius: 30px; padding: 9px 18px; color: var(--kt-blue); text-decoration: none; font-weight: 700; }
.section-heading > a:hover { background: var(--kt-blue); color:#fff; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.promotion-card-yanhee {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid #ebdcd3;
  min-width: 0;
  width: 100%;
}
.promotion-card-yanhee:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 33, 24, 0.12);
}
.promo-card-thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}
.promo-card-thumb img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .35s ease;
}
.promotion-card-yanhee:hover .promo-card-thumb img {
  transform: scale(1.05);
}
.promo-card-body {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.promo-card-body h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  min-height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promo-card-body h4 a {
  color: var(--kt-brown);
  text-decoration: none;
}
.promo-card-date {
  color: var(--kt-blue);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-yanhee-detail {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: var(--kt-blue);
  color: #ffffff !important;
  text-align: center;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto;
  transition: background .2s ease, transform .2s ease;
}
.btn-yanhee-detail:hover {
  background: var(--kt-brown);
  color: #ffffff !important;
}
.image-tile { position: relative; height: 330px; border-radius: 14px; overflow: hidden; color: #fff; text-decoration: none; background:#dfeaf1; box-shadow: 0 4px 18px rgba(0,0,0,.05); }
.image-tile img { width:100%; height:100%; object-fit:cover; transition:.4s; }
.image-tile:after { content:""; position:absolute; inset:50% 0 0; background:linear-gradient(transparent,rgba(0,0,0,.45)); }
.image-tile > div { position:absolute; z-index:2; left:20px; right:20px; bottom:18px; display:flex; flex-direction:column; gap:5px; }
.image-tile strong { font-size:20px; }
.image-tile span { font-size:13px; opacity:.9; }
.image-tile:hover img { transform:scale(1.05); }
.image-tile:hover { color:#fff; }
.feature-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.feature-card { overflow:hidden; background:#fff; border-radius:14px; box-shadow:0 7px 28px rgba(20,55,90,.09); }
.feature-card > a { display:block; height:190px; overflow:hidden; }
.feature-card img { width:100%; height:100%; object-fit:cover; transition:.35s; }
.feature-card:hover img { transform:scale(1.04); }
.feature-content { padding:19px; }
.feature-content h3 { min-height:52px; margin:0 0 8px; color:var(--kt-navy); font-size:19px; font-weight:800; }
.feature-content p { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:48px; color:#667384; font-size:14px; }
.gradient-btn { display:block; margin-top:15px; padding:10px; border-radius:25px; background:linear-gradient(100deg,var(--kt-brown),#684b41); color:#fff; text-align:center; text-decoration:none; font-weight:700; }
.gradient-btn:hover { color:#fff; filter:brightness(1.06); }
.showcase-section { background: var(--kt-pale); }
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.center-title { text-align:center; margin-bottom:38px; }
.center-title h2 { color:var(--kt-navy); font-size:31px; font-weight:800; }
.center-title span { display:block; width:80px; height:4px; border-radius:4px; margin:12px auto; background:linear-gradient(90deg,var(--kt-cyan),var(--kt-blue)); }
.article-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.article-card { overflow:hidden; border-radius:14px; background:#fff; box-shadow:0 7px 28px rgba(22,59,96,.1); }
.article-card > a { display:block; height:210px; }
.article-card img { width:100%; height:100%; object-fit:cover; }
.article-card > div { padding:20px; }
.article-card small { color:var(--kt-cyan); font-weight:700; }
.article-card h3 { min-height:52px; margin:8px 0; color:var(--kt-navy); font-size:20px; font-weight:800; }
.article-card p { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; color:#687483; }
.article-card div > a { display:block; text-align:right; color:var(--kt-blue); text-decoration:none; font-weight:700; }
.contact-section { padding:76px 0; background:#fff; }
.contact-grid { display:grid; grid-template-columns:1fr 1.08fr; gap:42px; align-items:center; }
.contact-lead { margin-top:-20px; margin-bottom:25px; color:#57667a; }
.contact-channel { display:grid; grid-template-columns:48px 1fr auto; align-items:center; gap:12px; padding:12px 18px; margin:12px 0; border-radius:10px; color:#fff; text-decoration:none; font-weight:700; }
.contact-channel:hover { color:#fff; transform:translateX(3px); }
.contact-channel > i:first-child { font-size:28px; }
.contact-channel small { display:block; font-size:11px; opacity:.83; font-weight:400; }
.contact-channel.line { background:#06c755; }
.contact-channel.messenger { background:linear-gradient(135deg,#00b2ff 0%,#006aff 100%); }
.contact-channel.phone { background:linear-gradient(135deg,#2bbcf0 0%,#168bd4 100%); color:#fff; }
.contact-channel.phone:hover { color:#fff; }
.contact-social { display:flex; gap:9px; margin-top:24px; }
.location-card { overflow:hidden; border:1px solid #e0e8ef; border-radius:15px; box-shadow:0 10px 30px rgba(25,60,95,.08); }
.location-image { height:330px; background:#eaf3f6; }
.location-image img { width:100%; height:100%; object-fit:cover; }
.location-image iframe { display:block; width:100%; height:100%; border:0; }
.location-info { display:grid; grid-template-columns:35px 1fr auto; gap:10px; align-items:center; padding:17px; }
.location-info > i { color:#e04444; font-size:25px; }
.location-info p { margin:2px 0 0; color:#75808e; font-size:13px; }
.location-info a { color:var(--kt-blue); font-weight:700; text-decoration:none; }
.site-footer { margin-top:0; padding:65px 0 0; background:linear-gradient(135deg,#4f2d24 0%,#683d30 100%); color:#fff; }
.footer-grid { display:grid; grid-template-columns:1.6fr repeat(3,1fr); gap:48px; }
.footer-logo-wrapper {
  position:relative;
  overflow:hidden;
  width:min(76px,100%);
  aspect-ratio:2162/3886;
  margin-bottom:16px;
}
.footer-logo-mark {
  position:absolute;
  top:-52.93%;
  left:-135.02%;
  display:block;
  width:370.03%;
  max-width:none;
  height:auto;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.footer-brand-desc { margin:16px 0 24px; color:#f3e6de; font-size:16px; line-height:1.65; font-weight:500; }
.footer-contact-items { display:flex; flex-direction:column; gap:18px; }
.footer-contact-item { display:flex; align-items:center; gap:16px; }
.contact-icon-badge { display:grid; place-items:center; width:48px; height:48px; flex-shrink:0; border-radius:50%; border:2px solid rgba(255,255,255,.4); background:rgba(255,255,255,.1); color:#ffffff; font-size:20px; }
.contact-text-box small { display:block; color:#d6c2b6; font-size:13px; font-weight:500; margin-bottom:2px; }
.contact-text-box strong { font-size:19px; font-weight:400; color:#ffffff; line-height:1.3; }
.contact-text-box strong a { color:#ffffff; text-decoration:none; }
.contact-text-box strong a:hover { text-decoration:underline; color:#ffd8c8; }
.contact-text-box span { color:#f3e6de; font-size:15px; line-height:1.5; display:block; }
.footer-grid h3 { margin:8px 0 22px; font-size:20px; font-weight:400; color:#ffffff; }
.footer-grid > div > a { display:block; margin:12px 0; color:#e8d7cd; font-size:16px; text-decoration:none; font-weight:400; transition:color .2s,transform .2s; }
.footer-grid > div > a:hover { color:#ffffff; transform:translateX(4px); }
.footer-social-links { display:flex; flex-wrap:wrap; gap:12px; }
.footer-grid .footer-social-links > a {
  display:grid;
  place-items:center;
  width:46px;
  height:46px;
  margin:0;
  border:2px solid rgba(255,255,255,.9);
  border-radius:50%;
  color:#fff;
  text-decoration:none;
  font-size:21px;
  box-shadow:0 5px 16px rgba(0,0,0,.2);
  transition:transform .2s ease,filter .2s ease;
}
.footer-grid .footer-social-links > a:hover { color:#fff; transform:translateY(-3px); filter:brightness(1.08); }
.footer-social-links .facebook { background:#1877f2; }
.footer-social-links .line { background:#06c755; }
.footer-social-links .tiktok { background:#111; }
.footer-social-links .instagram { background:radial-gradient(circle at 32% 100%,#ffd600 0 18%,#ff7a00 29%,#ff0169 52%,#d300c5 72%,#7638fa 100%); }
.footer-social-links .youtube { background:#ff0000; }
.footer-bottom { margin-top:42px; padding:16px 0; background:rgba(0,0,0,.13); color:#bfcde0; font-size:13px; }
.floating-chat { position:fixed; z-index:50; right:24px; bottom:24px; width:68px; height:68px; border:3px solid #fff; border-radius:50%; background:var(--kt-brown); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; box-shadow:0 8px 25px rgba(0,0,0,.2); text-decoration:none; }
.floating-chat i { font-size:23px; }
.floating-chat span { font-size:10px; font-weight:800; }
.floating-chat:hover { color:#fff; background:var(--kt-blue); }

/* ===== All Subpages Background (Non-Home Pages) ===== */
body:not(.home-redesign),
.promotion-page,
.blog-list-page,
.detail-page,
.catalog-page,
.about-page,
.gallery-page,
.search-page,
.profile-page,
.schedule-page,
.news-list-page {
  background: radial-gradient(circle at 12% 20%, rgba(255,255,255,.72) 0, rgba(255,255,255,0) 31%), linear-gradient(135deg, #f3e4dc 0%, #fffaf5 54%, #e8ddd6 100%) !important;
}
.promotion-page { margin:0; color:var(--kt-ink); font-family:'Prompt',sans-serif; }
.promotion-main { padding:58px 0 90px; }
.promotion-hero { padding:12px 0 38px; }
.promotion-hero h1 { margin:0 0 14px; color:#2e2826; font-size:clamp(38px,4vw,58px); font-weight:800; letter-spacing:-1px; }
.promotion-breadcrumb { display:flex; align-items:center; gap:8px; color:#928a86; font-size:16px; font-weight:600; }
.promotion-breadcrumb a { color:var(--kt-brown); text-decoration:underline; }
.promotion-breadcrumb i { font-size:11px; }
.promotion-section-head { display:flex; align-items:flex-end; justify-content:space-between; border-bottom:1px solid #dedad7; }
.promotion-section-head h2 { position:relative; margin:0; padding:0 0 14px; color:var(--kt-brown); font-size:34px; font-weight:800; }
.promotion-section-head h2:after { content:""; position:absolute; left:0; bottom:-2px; width:88px; height:4px; border-radius:4px; background:var(--kt-blue); }
.promotion-arrows { display:flex; padding-bottom:13px; }
.promotion-arrows button, .btn-promo-arrow { display:grid; place-items:center; width:47px; height:42px; border:1.5px solid var(--kt-brown); background:transparent; color:var(--kt-brown); font-size:17px; text-decoration:none; transition:all .2s ease; }
.promotion-arrows button:first-child, .btn-promo-arrow:first-child { border-radius:24px 0 0 24px; }
.promotion-arrows button:last-child, .btn-promo-arrow:last-child { border-left:0; border-radius:0 24px 24px 0; }
.promotion-arrows button:hover, .btn-promo-arrow:hover:not(.disabled) { background:var(--kt-brown); color:#fff; }
.btn-promo-arrow.disabled { opacity:.35; pointer-events:none; }
.promotion-layout { display:grid; grid-template-columns:275px minmax(0,1fr); gap:38px; padding-top:24px; align-items:start; }
.promotion-feature { position:sticky; top:108px; min-height:705px; overflow:hidden; display:flex; flex-direction:column; justify-content:space-between; border-radius:14px; background:linear-gradient(165deg, #fffbf5 0%, #faf1e8 50%, #f4e4d7 100%); box-shadow:0 4px 20px rgba(74,33,24,.06); border:1px solid #ebdcd3; }
.promotion-feature-has-img { background: transparent !important; border: none !important; box-shadow: 0 4px 20px rgba(74,33,24,.08) !important; padding: 0 !important; }
.promotion-feature-banner-link { display: block; width: 100%; height: 100%; min-height: 705px; border-radius: 14px; overflow: hidden; text-decoration: none; }
.promotion-feature-banner-img { display: block; width: 100%; height: 100%; min-height: 705px; object-fit: cover; border-radius: 14px; transition: transform .35s ease; }
.promotion-feature-banner-link:hover .promotion-feature-banner-img { transform: scale(1.025); }

/* Wide Horizontal Promotion Banner */
.promotion-wide-banner-container {
  margin: 45px 0 35px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(74, 33, 24, 0.1);
}
.promotion-wide-banner-link {
  display: block;
  width: 100%;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
}
.promotion-wide-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform .35s ease;
}
.promotion-wide-banner-link:hover .promotion-wide-banner-img {
  transform: scale(1.02);
}
.promotion-default-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 38px;
  border-radius: 16px;
  background: linear-gradient(100deg, #18b5ea 0%, #0672ce 55%, #075294 100%);
  color: #ffffff;
}
.cta-bar-text strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.cta-bar-text p {
  margin: 0;
  font-size: 14px;
  opacity: .92;
}
.cta-bar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 30px;
  background: #f37021;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform .2s ease, filter .2s ease;
}
.cta-bar-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* Pagination Controls */
.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 35px 0 15px;
  grid-column: 1 / -1;
  width: 100%;
}
.catalog-pagination a,
.catalog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #dcd3cd;
  background: #ffffff;
  color: var(--kt-brown);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.catalog-pagination a:hover {
  background: var(--kt-brown);
  color: #ffffff;
  border-color: var(--kt-brown);
  transform: translateY(-2px);
}
.catalog-pagination .page-num.active {
  background: var(--kt-brown);
  color: #ffffff;
  border-color: var(--kt-brown);
  box-shadow: 0 4px 12px rgba(74, 33, 24, 0.2);
}
.catalog-pagination .page-disabled {
  opacity: .4;
  pointer-events: none;
}
.feature-copy { position:relative; z-index:2; padding:34px 25px 16px; }
.feature-kicker { color:var(--kt-blue); font-size:10px; letter-spacing:2.1px; font-weight:800; }
.feature-copy h2 { margin:15px 0 17px; color:#ae7863; font-size:36px; line-height:1.05; font-weight:800; }
.feature-copy h2 strong { color:var(--kt-brown); font-size:25px; }
.feature-copy p { color:#655750; font-size:16px; line-height:1.65; font-weight:600; }
.feature-copy > a { display:inline-flex; align-items:center; gap:8px; margin-top:10px; padding:10px 15px; border-radius:24px; background:var(--kt-brown); color:#fff; text-decoration:none; font-size:13px; font-weight:700; }
.feature-visual { height:330px; overflow:hidden; display:flex; align-items:flex-end; justify-content:center; background:radial-gradient(circle at 50% 30%,rgba(255,255,255,.9),transparent 66%); }
.feature-visual img { width:250px; height:250px; margin-bottom:-22px; border-radius:50%; object-fit:cover; box-shadow:0 15px 40px rgba(53,33,28,.18); }
.promotion-grid-wrap { min-width:0; overflow:hidden; }
.promotion-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; }
.promotion-card { min-width:0; overflow:hidden; display:flex; flex-direction:column; min-height:335px; border-radius:9px; background:#fff; box-shadow:0 6px 22px rgba(39,31,28,.1); transition:transform .25s,box-shadow .25s; }
.promotion-card:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(39,31,28,.15); }
.promotion-image { display:block; overflow:hidden; background:#eee9e5; }
.promotion-image img { display:block; width:100%; height:auto; object-fit:contain; transition:transform .35s; }
.promotion-card:hover .promotion-image img { transform:scale(1.025); }
.promotion-card-body { flex:1; display:flex; flex-direction:column; padding:17px 18px 15px; }
.promotion-card h3 { margin:0 0 16px; color:#3a302c; font-size:17px; line-height:1.4; font-weight:700; }
.promotion-meta { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto; padding-top:13px; border-top:1px solid #eee9e6; }
.promotion-meta span { color:#8b756c; font-size:12px; font-weight:600; }
.promotion-meta span i { margin-right:4px; color:var(--kt-blue); }
.promotion-meta a { display:grid; place-items:center; flex:0 0 30px; width:30px; height:30px; border-radius:50%; background:var(--kt-cream); color:var(--kt-brown); text-decoration:none; }
.promotion-empty { grid-column:1/-1; padding:80px 20px; border:1px dashed #cdbeb6; border-radius:12px; color:#8d7e77; text-align:center; }
.promotion-empty i { margin-bottom:15px; font-size:35px; }
.promotion-empty h3 { color:var(--kt-brown); }

/* ===== Blog/news listing ===== */
.blog-list-page { margin:0; color:var(--kt-ink); font-family:'Prompt',sans-serif; background:var(--kt-pale); }
.blog-list-main { padding:58px 0 90px; }
.blog-list-hero { padding:12px 0 38px; border-bottom:1px solid #dedad7; }
.blog-list-hero h1 { margin:0 0 14px; color:#2e2826; font-size:clamp(38px,4vw,58px); font-weight:800; letter-spacing:-1px; }
.blog-list-breadcrumb { display:flex; align-items:center; gap:8px; color:#928a86; font-size:16px; font-weight:600; }
.blog-list-breadcrumb a { color:var(--kt-brown); text-decoration:underline; }
.blog-list-breadcrumb i { font-size:11px; }
.blog-list-layout { display:grid; grid-template-columns:minmax(0,1fr) 310px; gap:54px; padding-top:34px; align-items:start; }
.article-list { min-width:0; }
.article-list-item { display:grid; grid-template-columns:43% minmax(0,1fr); gap:24px; padding:0 0 32px; margin:0 0 32px; border-bottom:1px solid #dedad7; }
.article-list-image { display:block; overflow:hidden; border-radius:4px; background:#eee9e6; }
.article-list-image img { display:block; width:100%; height:auto; object-fit:contain; transition:transform .4s; }
.article-list-item:hover .article-list-image img { transform:scale(1.035); }
.article-list-content { min-width:0; display:flex; flex-direction:column; align-items:flex-start; }
.article-list-meta { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:10px; color:#9a8981; font-size:12px; font-weight:600; }
.article-list-meta i { margin-right:4px; color:var(--kt-blue); }
.article-list-content h2 { margin:0 0 12px; font-size:24px; line-height:1.28; font-weight:800; }
.article-list-content h2 a { color:#352d29; text-decoration:none; }
.article-list-content h2 a:hover { color:#8b6557; }
.article-list-content p { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; overflow:hidden; margin:0 0 18px; color:#756c67; font-size:16px; line-height:1.65; }
.article-more { margin-top:auto; align-self:flex-end; display:inline-flex; align-items:center; gap:9px; padding:9px 15px; border:1px solid #d5cbc6; color:var(--kt-brown); text-decoration:none; font-size:14px; font-weight:700; }
.article-more:hover { border-color:var(--kt-brown); background:var(--kt-brown); color:#fff; }
.blog-sidebar { position:sticky; top:105px; display:flex; flex-direction:column; gap:38px; }
.sidebar-title-row { display:flex; justify-content:space-between; align-items:center; gap:15px; }
.sidebar-title-row h2 { margin:0; color:var(--kt-brown); font-size:30px; font-weight:800; }
.sidebar-title-row > a { padding:9px 13px; border:1px solid #d6ceca; color:#635752; text-decoration:none; font-size:13px; font-weight:700; }
.sidebar-title-row > a:hover { border-color:var(--kt-brown); color:var(--kt-brown); }
.sidebar-title-line { width:90px; height:3px; margin:10px 0 22px; border-radius:3px; background:var(--kt-blue); }
.sidebar-promotion-list { display:flex; flex-direction:column; gap:16px; }
.sidebar-promotion-item { display:grid; grid-template-columns:88px minmax(0,1fr); gap:13px; align-items:center; color:var(--kt-brown); text-decoration:none; }
.sidebar-promotion-item img { width:88px; height:62px; border-radius:4px; object-fit:cover; background:#eee8e4; }
.sidebar-promotion-item span { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; font-size:14px; line-height:1.4; font-weight:700; }
.sidebar-promotion-item:hover { color:var(--kt-blue); }
.sidebar-contact-card { padding:26px; border-radius:8px; background:linear-gradient(145deg,var(--kt-brown),#61473d); color:#fff; }
.sidebar-contact-card > span { color:#dbcac2; font-size:11px; font-weight:700; letter-spacing:1.4px; }
.sidebar-contact-card h2 { margin:8px 0 10px; font-size:24px; line-height:1.25; font-weight:800; }
.sidebar-contact-card p { color:#eee1dc; font-size:13px; line-height:1.55; }
.sidebar-contact-card a { display:inline-flex; align-items:center; gap:8px; margin-top:8px; padding:9px 13px; border-radius:24px; background:#fff; color:var(--kt-brown); text-decoration:none; font-size:13px; font-weight:800; }
.blog-list-empty { padding:90px 20px; border:1px dashed #cabbb4; border-radius:10px; color:#8c7b74; text-align:center; }
.blog-list-empty i { margin-bottom:14px; font-size:38px; }
.blog-list-empty h2 { color:var(--kt-brown); }
.news-list-page .article-list-meta span:last-child { color:#8b6557; }
.news-list-page .sidebar-title-row h2 { font-size:26px; }
.news-contact-card { background:linear-gradient(145deg,var(--kt-cyan),var(--kt-blue)); }
.news-list-item .article-list-image { background:var(--kt-mist); }

/* ===== Product and course catalogs ===== */
.catalog-page { margin:0; color:var(--kt-ink); font-family:'Prompt',sans-serif; background: transparent; }
.catalog-hero { overflow:hidden; padding:74px 0; background: transparent; }
.catalog-hero-grid { display:grid; grid-template-columns:1fr .9fr; gap:70px; align-items:center; }
.catalog-breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:32px; color:#8e817b; font-size:13px; font-weight:600; }
.catalog-breadcrumb a { color:var(--kt-brown); text-decoration:underline; }
.catalog-breadcrumb i { font-size:9px; }
.catalog-eyebrow { color:#947365; font-size:11px; letter-spacing:2.2px; font-weight:800; }
.catalog-hero-copy h1 { margin:14px 0 20px; color:var(--kt-brown); font-size:clamp(42px,4.5vw,66px); line-height:1.08; font-weight:800; letter-spacing:-1.2px; }
.catalog-hero-copy > p { max-width:570px; margin:0; color:#6e625d; font-size:17px; line-height:1.75; }
.catalog-hero-actions { display:flex; flex-wrap:wrap; align-items:center; gap:22px; margin-top:30px; }
.catalog-primary-btn { display:inline-flex; align-items:center; gap:10px; padding:13px 20px; border-radius:3px; background:var(--kt-brown); color:#fff; text-decoration:none; font-weight:700; }
.catalog-primary-btn:hover { color:#fff; background:#563c33; }
.catalog-text-btn { display:inline-flex; align-items:center; gap:9px; color:var(--kt-brown); text-decoration:none; font-weight:700; }
.catalog-text-btn:hover { color:#927063; }
.catalog-hero-visual { position:relative; min-height:480px; overflow:hidden; border-radius:0; background:#eee7e1; box-shadow:0 25px 55px rgba(53,33,28,.12); }
.catalog-hero-visual > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero-product-badge { position:absolute; z-index:2; top:25px; right:25px; padding:8px 13px; border-radius:20px; background:#fff; color:var(--kt-brown); font-size:12px; font-weight:800; box-shadow:0 7px 20px rgba(0,0,0,.1); }
.hero-product-caption { position:absolute; z-index:2; left:0; right:0; bottom:0; padding:65px 30px 28px; background:linear-gradient(transparent,rgba(53,33,28,.92)); color:#fff; }
.hero-product-caption small,.hero-product-caption strong { display:block; }
.hero-product-caption small { color:#dccbc3; font-size:10px; letter-spacing:1.8px; }
.hero-product-caption strong { margin-top:5px; font-size:20px; line-height:1.35; }
.catalog-benefits { border-bottom:1px solid #e5dfdb; background: rgba(255, 255, 255, 0.45); backdrop-filter: blur(8px); }
.catalog-benefit-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.catalog-benefit-grid > div { display:flex; align-items:center; gap:16px; padding:25px 34px; border-right:1px solid #e5dfdb; }
.catalog-benefit-grid > div:first-child { border-left:1px solid #e5dfdb; }
.catalog-benefit-grid i { display:grid; place-items:center; flex:0 0 46px; width:46px; height:46px; border-radius:50%; background:var(--kt-cream); color:var(--kt-brown); font-size:18px; }
.catalog-benefit-grid span { display:flex; flex-direction:column; }
.catalog-benefit-grid strong { color:var(--kt-brown); font-size:15px; }
.catalog-benefit-grid small { margin-top:3px; color:#8a7c76; font-size:11px; }
.catalog-section { padding:88px 0 100px; background: transparent; }
.catalog-section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:25px; margin-bottom:38px; }
.catalog-section-head > div > span { color:#9b7c6e; font-size:10px; letter-spacing:2px; font-weight:800; }
.catalog-section-head h2 { margin:5px 0 0; color:var(--kt-brown); font-size:38px; font-weight:800; }
.catalog-section-head > p { margin:0; color:#81736d; line-height:1.55; text-align:right; }
.catalog-card-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:26px; }
.catalog-card { overflow:hidden; display:flex; flex-direction:column; border-radius:9px; background:#fff; box-shadow:0 8px 25px rgba(53,33,28,.08); transition:transform .25s,box-shadow .25s; }
.catalog-card:hover { transform:translateY(-5px); box-shadow:0 16px 34px rgba(53,33,28,.14); }
.catalog-card-image { position:relative; display:block; overflow:hidden; background:#eee8e4; }
.catalog-card-image img { display:block; width:100%; height:auto; object-fit:contain; transition:transform .4s; }
.catalog-card-image > span { position:absolute; right:15px; bottom:15px; display:flex; align-items:center; gap:7px; padding:8px 12px; border-radius:20px; background:rgba(255,255,255,.94); color:var(--kt-brown); font-size:12px; font-weight:800; opacity:0; transform:translateY(8px); transition:.25s; }
.catalog-card:hover .catalog-card-image img { transform:scale(1.035); }
.catalog-card:hover .catalog-card-image > span { opacity:1; transform:none; }
.catalog-card-content { flex:1; display:flex; flex-direction:column; padding:22px; }
.catalog-card-content > small { color:#a28072; font-size:9px; letter-spacing:1.5px; font-weight:800; }
.catalog-card-content h3 { min-height:51px; margin:8px 0 10px; font-size:20px; line-height:1.3; font-weight:800; }
.catalog-card-content h3 a { color:#3e322d; text-decoration:none; }
.catalog-card-content > p { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; overflow:hidden; min-height:69px; margin:0 0 17px; color:#786c66; font-size:14px; line-height:1.62; }
.catalog-card-footer { display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:15px; border-top:1px solid #eee8e4; }
.catalog-card-footer > span { color:#78675f; font-size:13px; font-weight:700; }
.catalog-card-footer > a { display:grid; place-items:center; width:35px; height:35px; border-radius:50%; background:var(--kt-brown); color:#fff; text-decoration:none; }
.catalog-empty { padding:80px 20px; border:1px dashed #ccbdb5; color:#8a7770; text-align:center; }
.catalog-empty i { font-size:37px; }
.catalog-bottom-cta { padding:65px 0; background:linear-gradient(125deg,var(--kt-brown),#60453b); color:#fff; }
.catalog-cta-inner { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.catalog-cta-inner span { color:#dccbc3; font-size:12px; letter-spacing:1.2px; }
.catalog-cta-inner h2 { margin:7px 0 0; font-size:35px; line-height:1.2; font-weight:800; }
.catalog-cta-inner > a { display:inline-flex; align-items:center; gap:9px; padding:13px 20px; border-radius:27px; background:#fff; color:var(--kt-brown); text-decoration:none; font-weight:800; }
.catalog-cta-inner > a i { font-size:21px; }
.course-catalog-hero { background: transparent; }
.course-hero-visual { border-radius:0; }
.course-hero-label { position:absolute; z-index:2; left:22px; bottom:22px; padding:17px 20px; border-radius:6px; background:rgba(255,255,255,.93); color:var(--kt-brown); box-shadow:0 8px 24px rgba(0,0,0,.12); }
.course-hero-label span,.course-hero-label strong { display:block; }
.course-hero-label span { color:#9b7c6e; font-size:9px; letter-spacing:1.4px; text-transform:uppercase; }
.course-hero-label strong { margin-top:5px; line-height:1.25; }
.course-path-section { padding:76px 0; background:#fff; }
.course-path-head { max-width:650px; margin-bottom:34px; }
.course-path-head span { color:#9b7c6e; font-size:10px; letter-spacing:2px; font-weight:800; }
.course-path-head h2 { margin:7px 0 0; color:var(--kt-brown); font-size:34px; font-weight:800; }
.course-path-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.course-path-grid > div { position:relative; padding:27px; border:1px solid #e3dcd7; border-radius:8px; background:#fff; }
.course-path-grid > div > span { position:absolute; right:20px; top:14px; color:#eee5e0; font-size:45px; font-weight:900; }
.course-path-grid i { position:relative; color:#98776a; font-size:27px; }
.course-path-grid h3 { position:relative; margin:20px 0 8px; color:var(--kt-brown); font-size:20px; font-weight:800; }
.course-path-grid p { position:relative; margin:0; color:#7d716b; font-size:14px; line-height:1.6; }
.course-list-section { padding-top:82px; background:linear-gradient(145deg,#f8f7f5,#f3f7f7); }
.course-tags { display:flex; flex-wrap:wrap; gap:7px; margin-bottom:14px; }
.course-tags span { padding:5px 8px; border-radius:14px; background:var(--kt-cream); color:#76645c; font-size:10px; font-weight:700; }
.course-tags i { margin-right:3px; }
.course-bottom-cta { background:linear-gradient(125deg,var(--kt-blue),var(--kt-cyan)); }

/* ===== Shared detail pages ===== */
.detail-page { margin:0; color:var(--kt-ink); font-family:'Prompt',sans-serif; background:var(--kt-pale); }
.detail-main { padding:55px 0 95px; }
.detail-heading { padding:8px 0 30px; border-bottom:1px solid #dfd9d5; }
.detail-type { color:#997768; font-size:10px; letter-spacing:2px; font-weight:800; }
.detail-heading h1 { max-width:980px; margin:9px 0 13px; color:#302824; font-size:clamp(26px,3vw,36px); line-height:1.35; font-weight:700; letter-spacing:normal; }
.yanhee-toc-container {
  background: #f0f7fc;
  border: 1px solid #d0e7f7;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 18px 0 32px;
}
.yanhee-toc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 800;
}
.toc-title-main { color: #075294; }
.toc-title-sub { color: #f37021; font-size: 18px; font-weight: 700; }
.yanhee-toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.yanhee-toc-list li { border-bottom: 1px dashed #c8e2f5; padding-bottom: 10px; }
.yanhee-toc-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.toc-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #2b4c6f;
  font-weight: 600;
  font-size: 15.5px;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
}
.toc-link:hover { background: #e0f0fc; color: #075294; }
.toc-btn-click { color: #0076d6; font-weight: 700; font-size: 14.5px; flex-shrink: 0; margin-left: 12px; }
.toc-target-heading { scroll-margin-top: 100px; }
.detail-breadcrumb { display:flex; align-items:center; gap:7px; min-width:0; color:#9a918c; font-size:13px; font-weight:600; }
.detail-breadcrumb a { color:var(--kt-brown); text-decoration:underline; white-space:nowrap; }
.detail-breadcrumb i { flex:0 0 auto; font-size:8px; }
.detail-breadcrumb span { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.detail-layout { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:48px; padding-top:34px; align-items:start; }
.detail-article { min-width:0; }
.detail-cover { overflow:hidden; border-radius:7px; background:#eee8e4; box-shadow:0 9px 25px rgba(53,33,28,.09); }
.detail-cover img { display:block; width:100%; height:auto; max-height:720px; object-fit:cover; }
.product-detail-cover img,.course-detail-cover img { height:auto; object-fit:contain; }
.detail-content { margin-top:36px; }
.detail-section-title { display:flex; align-items:center; gap:11px; margin-bottom:20px; }
.detail-section-title span { width:4px; height:32px; border-radius:3px; background:var(--kt-blue); }
.detail-section-title h2 { margin:0; color:var(--kt-brown); font-size:28px; font-weight:800; }
.detail-richtext { color:#645a55; font-size:16px; line-height:1.85; overflow-wrap:anywhere; }
.detail-richtext h1,.detail-richtext h2,.detail-richtext h3,.detail-richtext h4,.detail-richtext h5 { color:#3d312c; font-weight:800; line-height:1.35; }
.detail-richtext h2 { margin:30px 0 12px; font-size:25px !important; }
.detail-richtext h3 { margin:25px 0 10px; font-size:21px !important; }
.detail-richtext h5 { font-size:16px !important; }
.detail-richtext p { margin:0 0 16px; }
.detail-richtext ul,.detail-richtext ol { margin:0 0 20px; padding-left:24px; }
.detail-richtext li { margin-bottom:8px; }
.detail-richtext img { max-width:100%; height:auto; margin:18px auto; border-radius:5px; }
.detail-richtext iframe,.detail-richtext video { max-width:100%; }
.detail-preline { white-space:normal; }
.detail-author-row,.article-detail-meta { display:flex; flex-wrap:wrap; gap:18px; margin-top:28px; padding:17px 0; border-top:1px solid #e2dcd8; border-bottom:1px solid #e2dcd8; color:#897b74; font-size:13px; }
.detail-author-row i,.article-detail-meta i { margin-right:5px; color:var(--kt-blue); }
.detail-sidebar { position:sticky; top:105px; display:flex; flex-direction:column; gap:35px; }
.detail-action-card { padding:27px; border-radius:9px; background:linear-gradient(145deg,var(--kt-brown),#5f453b); color:#fff; box-shadow:0 12px 28px rgba(53,33,28,.18); }
.detail-action-card > small { color:#d9c8c0; font-size:10px; letter-spacing:1.2px; }
.detail-action-card h2 { margin:9px 0 12px; font-size:24px; line-height:1.25; font-weight:800; }
.detail-action-card p { color:#eee0da; font-size:13px; line-height:1.6; }
.detail-action-card > a { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; margin-top:10px; padding:11px 14px; border-radius:25px; background:#fff; color:var(--kt-brown); text-decoration:none; font-weight:800; }
.detail-action-card > a i { font-size:19px; }
.detail-action-card > a.detail-call { border:1px solid rgba(255,255,255,.35); background:transparent; color:#fff; }
.course-action-card { background:linear-gradient(145deg,var(--kt-blue),var(--kt-cyan)); }
.detail-side-title { display:flex; align-items:center; justify-content:space-between; gap:15px; margin-bottom:18px; padding-bottom:10px; border-bottom:2px solid var(--kt-blue); }
.detail-side-title h2 { margin:0; color:var(--kt-brown); font-size:25px; font-weight:800; }
.detail-side-title a { color:#74655e; text-decoration:none; font-size:12px; font-weight:700; }
.detail-side-item { display:grid; grid-template-columns:86px minmax(0,1fr); gap:12px; align-items:center; margin-bottom:14px; color:#554640; text-decoration:none; }
.detail-side-item img { width:86px; height:60px; border-radius:4px; object-fit:cover; }
.detail-side-item span { display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; font-size:13px; line-height:1.4; font-weight:700; }
.detail-side-item:hover { color:#9a7161; }
.detail-mobile-cta { display:none; }
.course-detail-highlights { display:grid; grid-template-columns:repeat(3,1fr); margin-top:20px; border:1px solid #e2dbd7; border-radius:7px; background:#fff; }
.course-detail-highlights > div { display:flex; align-items:center; gap:11px; padding:18px; border-right:1px solid #e2dbd7; }
.course-detail-highlights > div:last-child { border-right:0; }
.course-detail-highlights i { color:#9b786a; font-size:21px; }
.course-detail-highlights span { display:flex; flex-direction:column; }
.course-detail-highlights strong { color:var(--kt-brown); font-size:13px; }
.course-detail-highlights small { color:#8a7c76; font-size:10px; }
.article-detail-cover img { width:100%; max-height:none; object-fit:contain; background:#fff; }
.article-detail-meta { margin:20px 0 0; }
.article-body { margin-top:30px; }
.article-share { display:flex; align-items:center; gap:9px; margin-top:30px; padding-top:20px; border-top:1px solid #dfd9d5; color:#6e615b; font-size:13px; font-weight:700; }
.article-share a { display:grid; place-items:center; width:34px; height:34px; border-radius:50%; background:var(--kt-brown); color:#fff; text-decoration:none; }
.detail-keywords h2 { margin:0 0 14px; color:var(--kt-brown); font-size:25px; font-weight:800; }
.detail-keywords > div { display:flex; flex-wrap:wrap; gap:7px; }
.detail-keywords span { padding:7px 9px; border:1px solid #ddd5d0; background:#fff; color:#6d5d56; font-size:12px; }
.detail-not-found { min-height:480px; display:flex; flex-direction:column; align-items:center; justify-content:center; color:#88766e; text-align:center; }
.detail-not-found i { margin-bottom:15px; font-size:48px; }
.detail-not-found h1 { color:var(--kt-brown); font-weight:800; }
.detail-not-found a { margin-top:10px; padding:10px 17px; background:var(--kt-brown); color:#fff; text-decoration:none; }

@media (max-width: 991px) {
  body:has(.site-header) { padding-top:82px; }
  .site-header { position:fixed; z-index:1035; inset:0 0 auto; background:#fff; box-shadow:0 3px 18px rgba(53,33,28,.1); }
  .utility-bar { padding:5px 0; }
  .utility-inner { min-height:72px; display:flex; justify-content:space-between; align-items:center; }
  .utility-social { display:none; }
  .brand-lockup { justify-self:start; }
  .header-actions { display:none; }
  .main-nav { display:none; }
  .mobile-drawer-toggle {
    display:flex; width:48px; height:48px; padding:10px 8px; border:0; border-radius:9px;
    background:transparent; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  }
  .mobile-drawer-toggle span { display:block; width:31px; height:4px; border-radius:4px; background:var(--kt-brown); transition:.2s; }
  .mobile-drawer-toggle:hover { background:var(--kt-cream); }
  .mobile-nav-drawer { width:min(88vw,370px) !important; border:0; background:#fff; color:var(--kt-ink); }
  .drawer-header { padding:20px; border-bottom:1px solid #eee5df; }
  .drawer-brand { min-width:0; display:flex; align-items:center; gap:11px; color:var(--kt-brown); text-decoration:none; }
  .drawer-logo { flex:0 0 58px; width:60px; height:60px; overflow:hidden; }
  .drawer-logo img { display:block; width:100%; height:100%; object-fit:cover; border-radius:50%; }
  .drawer-brand > span:last-child { min-width:0; display:flex; flex-direction:column; line-height:1.15; }
  .drawer-brand strong { font-size:16px; font-weight:800; }
  .drawer-brand small { margin-top:5px; color:#8a7770; font-size:9px; white-space:nowrap; }
  .drawer-close { flex:0 0 40px; width:40px; height:40px; border:0; border-radius:50%; background:var(--kt-cream); color:var(--kt-brown); font-size:20px; }
  .mobile-nav-drawer .offcanvas-body { display:flex; flex-direction:column; padding:16px 20px 24px; }
  .drawer-nav { display:flex; flex-direction:column; gap:5px; }
  .drawer-nav a { display:grid; grid-template-columns:34px 1fr auto; align-items:center; min-height:52px; padding:8px 13px; border-radius:10px; color:#584842; text-decoration:none; font-weight:700; }
  .drawer-nav a i { color:#9a8379; text-align:center; }
  .drawer-nav a:after { content:'›'; color:#bbaaa2; font-size:24px; font-weight:400; }
  .drawer-nav a:hover, .drawer-nav a.active { background:var(--kt-cream); color:var(--kt-brown); }
  .drawer-nav a:hover i, .drawer-nav a.active i { color:var(--kt-brown); }
  .drawer-contact { margin-top:auto; padding:18px; border-radius:14px; background:linear-gradient(135deg,var(--kt-brown),#5b4037); color:#fff; }
  .drawer-contact p { margin:0 0 10px; font-weight:700; }
  .drawer-contact a { display:block; margin:8px 0; color:#fff; text-decoration:none; font-size:14px; }
  .drawer-contact i { width:24px; }
  .quick-grid { grid-template-columns:1fr; }
  .video-card { aspect-ratio: 16/9; height: auto; min-height: unset; }
  .video-card iframe, .video-card video { height: 100%; }
  .product-grid, .feature-cards { grid-template-columns:repeat(2,1fr); }
  .showcase-grid { grid-template-columns:repeat(2,1fr); }
  .article-grid { grid-template-columns:repeat(2,1fr); }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  .promotion-main { padding-top:38px; }
  .promotion-layout { grid-template-columns:220px minmax(0,1fr); gap:22px; }
  .promotion-feature { top:95px; min-height:610px; }
  .promotion-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
  .feature-copy { padding:27px 20px; }
  .feature-copy h2 { font-size:31px; }
  .feature-copy h2 strong { font-size:21px; }
  .feature-visual { height:260px; }
  .feature-visual img { width:205px; height:205px; }
  .blog-list-main { padding-top:38px; }
  .blog-list-layout { grid-template-columns:minmax(0,1fr) 250px; gap:28px; }
  .article-list-item { grid-template-columns:1fr; gap:16px; }
  .article-list-content h2 { font-size:21px; }
  .blog-sidebar { top:92px; }
  .sidebar-promotion-item { grid-template-columns:72px minmax(0,1fr); }
  .sidebar-promotion-item img { width:72px; height:54px; }
  .catalog-hero { padding:55px 0; }
  .catalog-hero-grid { gap:35px; }
  .catalog-hero-copy h1 { font-size:43px; }
  .catalog-hero-visual { min-height:410px; }
  .catalog-benefit-grid > div { padding:20px 15px; }
  .catalog-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .detail-layout { grid-template-columns:minmax(0,1fr) 245px; gap:27px; }
  .detail-sidebar { top:92px; }
  .detail-action-card { padding:21px; }
  .course-detail-highlights { grid-template-columns:1fr; }
  .course-detail-highlights > div { border-right:0; border-bottom:1px solid #e2dbd7; }
  .course-detail-highlights > div:last-child { border-bottom:0; }
}
@media (max-width: 640px) {
  .site-shell { width:min(100% - 28px,1160px); }
  body:has(.site-header) { padding-top:74px; }
  .utility-inner { min-height:64px; gap:12px; }
  .navbar-logo-circle { height: 50px; width: auto; max-width: 160px; margin-right: 9px; }
  .brand-lockup strong { font-size:16px; }
  .brand-lockup small { font-size:10px; }
  .header-chat { padding:9px 12px; font-size:13px; }
  .desktop-banners { display: none !important; }
  .mobile-banners { display: block !important; }
  .mobile-banners .hero-slide img { height:auto; aspect-ratio:auto; object-fit:contain; }
  .hero-carousel .owl-nav button { width:34px; height:52px; }
  .quick-section, .home-section, .contact-section { padding:45px 0; }
  .quick-links { gap:10px; }
  .quick-links a { min-height:110px; font-size:14px; }
  .quick-links i { width:48px; height:48px; font-size:21px; }
  .section-heading { align-items:flex-end; margin-bottom:24px; }
  .section-heading > span, .center-title h2 { font-size:23px; }
  .section-heading > a { padding:6px 11px; font-size:12px; border-width:1px; }
  .product-grid, .feature-cards, .article-grid { grid-template-columns:1fr; gap:16px; }
  .image-tile { height:300px; }
  .feature-card { display:grid; grid-template-columns:42% 58%; }
  .feature-card > a { height:100%; min-height:190px; }
  .feature-content { padding:15px; }
  .feature-content h3 { min-height:auto; font-size:17px; }
  .showcase-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .showcase-grid a { height:260px; }
  .showcase-grid span { padding:35px 10px 14px; font-size:14px; }
  .article-grid { grid-template-columns:1fr; }
  .contact-grid { gap:25px; }
  .location-image { height:250px; }
  .location-info { grid-template-columns:28px 1fr; }
  .location-info > a { grid-column:2; }
  .footer-grid { grid-template-columns:1fr; gap:22px; }
  .footer-grid h3 { margin-bottom:10px; }
  .floating-chat { right:15px; bottom:15px; width:58px; height:58px; }
  .promotion-main { padding:28px 0 60px; }
  .promotion-hero { padding:4px 0 28px; }
  .promotion-hero h1 { margin-bottom:9px; font-size:32px; }
  .promotion-breadcrumb { font-size:13px; }
  .promotion-section-head h2 { font-size:27px; }
  .promotion-arrows button { width:42px; height:38px; }
  .promotion-layout { display:block; padding-top:18px; }
  .promotion-feature { position:relative; top:auto; min-height:360px; margin-bottom:22px; }
  .feature-copy { padding:25px 22px; }
  .feature-copy h2 { margin:10px 0; font-size:31px; }
  .feature-copy h2 strong { font-size:22px; }
  .feature-copy p { font-size:14px; line-height:1.45; }
  .feature-visual { position:absolute; right:-34px; bottom:-48px; width:220px; height:220px; background:none; opacity:.96; }
  .feature-visual img { width:190px; height:190px; margin:0; }
  .promotion-grid-wrap { margin-right:calc((100vw - 100%)/-2); padding-right:14px; overflow-x:auto; scrollbar-width:none; scroll-snap-type:x mandatory; }
  .promotion-grid-wrap::-webkit-scrollbar { display:none; }
  .promotion-grid { display:flex; gap:14px; }
  .promotion-card { flex:0 0 82vw; max-width:325px; min-height:390px; scroll-snap-align:start; }
  .blog-list-main { padding:28px 0 60px; }
  .blog-list-hero { padding:4px 0 26px; }
  .blog-list-hero h1 { margin-bottom:9px; font-size:31px; }
  .blog-list-breadcrumb { font-size:13px; }
  .blog-list-layout { display:flex; flex-direction:column; gap:40px; padding-top:25px; }
  .article-list-item { display:block; padding-bottom:25px; margin-bottom:25px; }
  .article-list-image { margin-bottom:16px; }
  .article-list-meta { margin-bottom:8px; }
  .article-list-content h2 { font-size:20px; }
  .article-list-content p { -webkit-line-clamp:3; font-size:14px; }
  .article-more { align-self:flex-start; }
  .blog-sidebar { position:static; width:100%; }
  .sidebar-title-row h2 { font-size:26px; }
  .sidebar-promotion-list { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
  .sidebar-promotion-item { display:block; }
  .sidebar-promotion-item img { width:100%; height:auto; margin-bottom:8px; }
  .sidebar-promotion-item span { font-size:13px; }
  .catalog-hero { padding:28px 0 42px; }
  .catalog-hero-grid { display:flex; flex-direction:column; gap:30px; }
  .catalog-hero-copy { width:100%; }
  .catalog-breadcrumb { margin-bottom:24px; }
  .catalog-hero-copy h1 { margin:10px 0 14px; font-size:35px; }
  .catalog-hero-copy > p { font-size:15px; line-height:1.65; }
  .catalog-hero-actions { gap:15px; margin-top:23px; }
  .catalog-primary-btn { padding:11px 15px; font-size:13px; }
  .catalog-text-btn { font-size:13px; }
  .catalog-hero-visual,.course-hero-visual { width:100%; min-height:360px; border-radius:0; }
  .catalog-benefit-grid { display:flex; overflow-x:auto; scrollbar-width:none; }
  .catalog-benefit-grid::-webkit-scrollbar { display:none; }
  .catalog-benefit-grid > div { flex:0 0 82%; border-left:0 !important; }
  .catalog-section { padding:58px 0 65px; }
  .catalog-section-head { display:block; margin-bottom:25px; }
  .catalog-section-head h2 { font-size:30px; }
  .catalog-section-head > p { margin-top:9px; font-size:14px; text-align:left; }
  .catalog-card-grid { grid-template-columns:1fr; gap:18px; }
  .catalog-card-content h3 { min-height:auto; }
  .catalog-cta-inner { display:block; }
  .catalog-cta-inner h2 { margin-bottom:22px; font-size:29px; }
  .course-path-section { padding:55px 0; }
  .course-path-head h2 { font-size:28px; }
  .course-path-grid { grid-template-columns:1fr; gap:12px; }
  .course-path-grid > div { padding:23px; }
  .course-list-section { padding-top:58px; }
  .detail-main { padding:28px 0 60px; }
  .detail-heading { padding:4px 0 23px; }
  .detail-heading h1 { font-size:30px; line-height:1.18; }
  .detail-breadcrumb { font-size:11px; }
  .detail-layout { display:flex; flex-direction:column; gap:38px; padding-top:22px; }
  .detail-cover { border-radius:5px; }
  .product-detail-cover img,.course-detail-cover img { aspect-ratio:auto; max-height:none; object-fit:contain; }
  .detail-content { margin-top:27px; }
  .detail-section-title h2 { font-size:24px; }
  .detail-richtext { font-size:15px; line-height:1.75; }
  .detail-richtext h2 { font-size:22px !important; }
  .detail-richtext h3 { font-size:19px !important; }
  .detail-sidebar { position:static; width:100%; }
  .detail-mobile-cta { display:block; margin-top:13px; }
  .detail-mobile-cta a { display:flex; align-items:center; justify-content:center; gap:7px; width:100%; padding:11px; border-radius:24px; background:var(--kt-brown); color:#fff; text-decoration:none; font-weight:800; }
  .course-detail-highlights { grid-template-columns:1fr; }
  .article-detail-meta { gap:10px 15px; font-size:11px; }
  .article-detail-heading h1 { font-size:29px; }
  .detail-keywords { order:2; }
  .detail-side-list { order:1; }
}

  .card-out {
    background-color: rgb(240, 76, 76);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    
  }
  .card-out:hover{
    color: #fff;
    background-color: rgb(165, 67, 67);
    text-decoration: none;
    
  }

  .icon-bg{
    background-color: #fff6d8;
    color: #ffc60a;
    padding: 1.5px 2.5px;
    font-size: 18px;
    border-radius: 5px;
  }

  .card-over {
    background-color: #f7f7f7;
    box-shadow: rgba(6, 58, 100, 0.06) 0px 2px 4px 0px inset;
    border-radius:5vh;
  }
  

  /* btn style */
  .btn-ecyy{
    background-color: #fafafa;
    text-decoration: none;
    color: #494949;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  }
  .btn-ecyy:hover {
    text-decoration: none;
    color: #97a3f5;
    border-bottom:solid 2px #97a3f5;
  }

  .btn-conn {
    background-color: #006eff;
    border: solid 1px #12669e;
    color:#ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    width: 100%;
  }
  .btn-conn:hover{
    color:#fff;
    background-color: #0d51aa;
  }


  .btn-on {
    background-color: #0b380e;
    color:#40ff2f;
    border-radius: 14px;
    font-size: 12px;
    padding:  3px 10px;
  }

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

  .btn-inactive {
    padding:  3px 10px;
    background-color: rgb(87, 3, 3);
    color: #c91f1f;
    }


  .text-namegallery {
    font-size: 14.5px;
  }


  /* Table Button Style */ /* ปุ่มแก้ไข ลบ */
  .btn-edit {
    background-color: #fff;
    border: solid 1px #1aa125;
    color:#1aa125;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
  }
  .btn-edit:hover{
    background-color: #1aa125;
    color:#fff;

  }
  .btn-edit-2 {
    background-color: #1aa125;
    color:#fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
  }
  .btn-edit-2:hover{
    background-color: #fff;
    border: solid 1px #1aa125;
    color:#1aa125;
  }

  .btn-del-2 {
    background-color: #b81e1e;
    color:#fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
  }
  .btn-del-2:hover{
    background-color: #fff;
    border: solid 1px #b81e1e;
    color:#b81e1e;
  }


  .btn-del {
    background-color: #861e1e;
    font-size: 18px;
    color:#fff;
    font-weight: 600;
    border-radius: 14px;
  }
  .btn-del:hover{
    background-color: #fff;
    border: solid 1px #861e1e;
    color:#861e1e;
  }








  .card-item {
    border: solid 1px #d8d8d8;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  }


  .hr-border {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent 50%, #33333d 50%);
    background-size: 10px 100%; 
    margin-top: 20px; 
    margin-bottom: 20px;
  }


  .form-control {
    border-radius: 12px;
    padding: 0.85rem;
  }



  .model-dezenx {
    border-radius: 16px;
  }



/* popupSwal */
.success-popupSwal {
    border-radius: 25px;
    background-color: #223320;
    border: solid 1px #447244;
    color:#fff;
}

.warning-popupSwal {
    border-radius: 25px;
    background-color: #342d1c;
    border: solid 1px #695532;
    color:#fff;
}


.error-popupSwal {
    border-radius: 25px;
    background-color: #9b1c1c;
    border: solid 1px #ff3a3a;
    color:#ffffff;
}

.edit-popupSwal {
    border-radius: 25px;
    background-color: #1f1f1f;
    border: solid 1px #2b2b2b;
    color:#ffffff;
}





.Swal-Button {
    background-color: #14151696;
    border: solid 1px #323435;
    color:#fff;
    border-radius: 2.5vh;
    padding: 1rem 6rem;

}

.Swal-cButton {
    background-color: #84414198;
    border: solid 1px #b94242;
    color:#fff;
    border-radius: 1.5vh;

}
            


.vdo_input {
    background-color: #111114;
    box-shadow: rgba(31, 33, 44, 0.1) 0px 4px 12px;
    border-radius: 13px;
    
}

/* ===== Client revision: homepage, contact and information pages ===== */
.main-nav {
  background: linear-gradient(105deg, #32130d 0%, #682f22 38%, #92533d 66%, #421a12 100%);
  box-shadow: inset 0 1px rgba(255,255,255,.1), inset 0 -1px rgba(35,15,10,.3);
}
.phone-link {
  color: #087fa5;
  font-weight: 800;
}
.phone-link i { color: #087fa5; }

.utility-social > a:not(.phone-link),
.contact-social a {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 3px 11px rgba(32,40,51,.13);
}
.utility-social > a[aria-label="Facebook"],
.contact-social > a[aria-label="Facebook"] { background: #1877f2; }
.utility-social > a[aria-label="LINE"],
.contact-social > a[aria-label="LINE"] { background: #06c755; }
.utility-social > a[aria-label="TikTok"],
.contact-social > a[aria-label="TikTok"] { background: #111; }
.utility-social > a[aria-label="Instagram"],
.contact-social > a[aria-label="Instagram"] {
  background: radial-gradient(circle at 32% 100%,#ffd600 0 18%,#ff7a00 29%,#ff0169 52%,#d300c5 72%,#7638fa 100%);
}
.utility-social > a[aria-label="YouTube"],
.contact-social > a[aria-label="YouTube"] { background: #ff0000; }
.utility-social > a:not(.phone-link):hover,
.contact-social a:hover {
  color: #fff;
  border-color: transparent;
  filter: brightness(.93);
}

.promotion-home-section { background: var(--kt-pale); }
.service-category-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 22px;
  align-items: stretch;
}
.service-category-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  border-radius: 16px;
  background: #ffffff;
  color: #0c4a80;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-category-card:nth-child(5) { grid-column: 2; }
.service-category-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .4s ease;
}
.service-category-card strong {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 6px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 24%, rgba(255, 255, 255, 0.97) 100%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: #0c4a80;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.service-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(12, 74, 128, 0.15);
  color: #0c4a80;
}
.service-category-card:hover img { transform: scale(1.05); }

.review-category-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 20px;
}
.review-category-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: auto;
  border-radius: 14px;
  background: #ffffff;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(74,33,24,0.08);
  border: 1px solid #ebdcd3;
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-category-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .4s ease;
}
.review-category-card strong {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: block;
  padding: 52px 12px 16px;
  background: linear-gradient(180deg, rgba(185, 138, 105, 0) 0%, rgba(165, 115, 82, 0.75) 42%, rgba(115, 70, 44, 0.96) 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.review-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(115,70,44,0.22);
  color: #ffffff;
}
.review-category-card:hover img { transform: scale(1.05); }

.course-pricing-section {
  padding: 82px 0;
  background: linear-gradient(130deg,#fff 0%,var(--kt-cream) 55%,var(--kt-mist) 120%);
}
.course-pricing-head { margin-bottom: 32px; }
.course-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px;
}
.course-pricing-grid a {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background: #fff;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(53,33,28,.12);
}
.course-pricing-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .35s;
}
.course-pricing-grid span {
  position: absolute;
  inset: auto 13px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(53,33,28,.92);
  font-weight: 700;
}
.course-pricing-grid a:hover { color: #fff; }
.course-pricing-grid a:hover img { transform: scale(1.025); }

.profile-page,
.schedule-page {
  margin: 0;
  color: var(--kt-ink);
  font-family: 'Prompt',sans-serif;
  background: #f8f6f4;
}
.profile-main,
.schedule-main { overflow: hidden; }
.profile-hero,
.schedule-hero {
  padding: 66px 0 58px;
  background: linear-gradient(120deg,#fff 0%,var(--kt-cream) 55%,var(--kt-mist) 130%);
}
.profile-hero .catalog-breadcrumb,
.schedule-hero .catalog-breadcrumb { margin-bottom: 35px; }
.profile-kicker {
  color: var(--kt-blue);
  font-size: 11px;
  letter-spacing: 2.2px;
  font-weight: 800;
}
.profile-hero h1,
.schedule-hero h1 {
  margin: 8px 0 12px;
  color: var(--kt-brown);
  font-size: clamp(40px,5vw,62px);
  font-weight: 800;
}
.profile-hero p,
.schedule-hero p {
  max-width: 700px;
  margin: 0;
  color: #6f625c;
  font-size: 18px;
  line-height: 1.7;
}
.expert-profile-section { padding: 82px 0 94px; background: #fff; }
.expert-profile-grid {
  display: grid;
  grid-template-columns: minmax(280px,390px) minmax(0,1fr);
  gap: 68px;
  align-items: center;
}
.expert-portrait {
  overflow: hidden;
  position: relative;
  margin: 0;
  border-radius: 0;
  background: #f5ece6;
  box-shadow: 0 18px 46px rgba(53,33,28,.15);
}
.expert-portrait img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.expert-portrait figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 24px 22px 20px;
  background: linear-gradient(transparent,rgba(53,33,28,.95));
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  text-align: center;
}
.expert-copy > span {
  color: var(--kt-blue);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
}
.expert-copy h2 {
  margin: 10px 0 4px;
  color: var(--kt-brown);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
}
.expert-name-en { margin: 0 0 20px; color: #87756d; font: 600 18px Georgia,serif; }
.expert-facebook {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  padding: 11px 15px;
  border-radius: 8px;
  background: #edf4ff;
  color: #165ea7;
  text-decoration: none;
  font-weight: 700;
}
.expert-facebook i:last-child { margin-left: auto; font-size: 11px; }
.expert-copy ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding-left: 21px;
  color: #5e524c;
  font-size: 16px;
  line-height: 1.65;
}
.expert-copy li::marker { color: var(--kt-blue); }
.expert-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.expert-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px;
  border-radius: 26px;
  background: var(--kt-brown);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.expert-actions a:last-child { background: #06c755; }

.schedule-list-section { padding: 80px 0 95px; background: #fff; }
.schedule-poster-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 95px;
  background:
    radial-gradient(circle at 88% 15%, rgba(255,255,255,.68) 0, rgba(255,255,255,0) 28%),
    linear-gradient(135deg,#eee4de 0%,#fff9f4 52%,#eadbd3 100%);
}
.schedule-poster-heading {
  max-width: 800px;
  margin: 0 auto 30px;
  color: var(--kt-brown);
  text-align: center;
}
.schedule-poster-heading > span {
  color: #a67654;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.schedule-poster-heading h2 {
  margin: 8px 0 9px;
  color: var(--kt-brown);
  font-size: clamp(30px,4vw,46px);
  font-weight: 800;
}
.schedule-poster-heading p {
  margin: 0;
  color: #74655d;
  font-size: 16px;
  line-height: 1.7;
}
.schedule-poster {
  width: min(940px,100%);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(83,57,45,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 55px rgba(73,48,37,.14);
}

.schedule-poster-list {
    display: grid;
    gap: 32px;
    max-width: 980px;
    margin: 0 auto;
}

.schedule-poster-list .schedule-poster {
    margin: 0;
}
.schedule-poster a,
.schedule-poster img {
  display: block;
  width: 100%;
}
.schedule-poster a {
  overflow: hidden;
  border-radius: 10px;
  background: #f5f0ec;
}
.schedule-poster img {
  height: auto;
  max-height: none;
  object-fit: contain;
}
.schedule-poster figcaption {
  padding: 13px 6px 2px;
  color: #88756b;
  font-size: 13px;
  text-align: center;
}
.schedule-poster-action {
  margin-top: 26px;
  text-align: center;
}
.schedule-poster-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 255px;
  padding: 12px 22px;
  border-radius: 28px;
  background: #06c755;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(6,199,85,.2);
}
.schedule-poster-action a:hover { color:#fff; filter:brightness(.96); }
.schedule-card-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 25px;
}
.schedule-card {
  overflow: hidden;
  border: 1px solid #e4dbd6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(53,33,28,.09);
}
.schedule-card-image { overflow: hidden; background: #f5f1ee; }
.schedule-card-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform .35s;
}
.schedule-card:hover .schedule-card-image img { transform: scale(1.03); }
.schedule-card-copy { padding: 23px; }
.schedule-card-copy > span {
  color: var(--kt-blue);
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 800;
}
.schedule-card-copy h2 {
  min-height: 52px;
  margin: 8px 0 10px;
  color: var(--kt-brown);
  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
}
.schedule-card-copy p {
  min-height: 70px;
  margin: 0 0 18px;
  color: #766b65;
  font-size: 14px;
  line-height: 1.65;
}
.schedule-card-copy a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 24px;
  background: linear-gradient(100deg,#35211c,#684b41);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.footer-brand a { color: inherit; text-decoration: none; }
.footer-brand a:hover { color: #fff; text-decoration: underline; }
.footer-brand p:last-child { line-height: 1.55; }

@media (max-width: 991px) {
  .service-category-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .service-category-card:nth-child(5) { grid-column: auto; }
  .review-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .course-pricing-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .expert-profile-grid { grid-template-columns: 300px minmax(0,1fr); gap: 34px; }
  .schedule-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .service-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .service-category-card { height: 250px; }
  .service-category-card strong { min-height: 44px; padding: 4px 5px; font-size: 11px; }
  .review-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .review-category-card { height: 270px; }
  .review-category-card strong { padding: 30px 8px 12px; font-size: 13.5px; }
  .course-pricing-section { padding: 55px 0; }
  .course-pricing-grid { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .course-pricing-grid::-webkit-scrollbar { display: none; }
  .course-pricing-grid a { flex: 0 0 84%; scroll-snap-align: start; }
  .profile-hero,
  .schedule-hero { padding: 34px 0 42px; }
  .profile-hero .catalog-breadcrumb,
  .schedule-hero .catalog-breadcrumb { margin-bottom: 25px; }
  .profile-hero h1,
  .schedule-hero h1 { font-size: 37px; }
  .profile-hero p,
  .schedule-hero p { font-size: 15px; }
  .expert-profile-section,
  .schedule-list-section { padding: 48px 0 60px; }
  .expert-profile-grid { display: flex; flex-direction: column; gap: 30px; }
  .expert-portrait { width: min(100%,340px); border-radius: 0; }
  .expert-copy h2 { font-size: 27px; }
  .expert-name-en { font-size: 15px; }
  .expert-facebook { align-items: flex-start; font-size: 13px; line-height: 1.4; }
  .expert-copy ul { font-size: 14px; }
  .expert-actions { flex-direction: column; }
  .expert-actions a { justify-content: center; }
  .schedule-card-grid { grid-template-columns: 1fr; gap: 16px; }
  .schedule-card-copy h2,
  .schedule-card-copy p { min-height: auto; }
  .schedule-poster-section { padding: 45px 0 65px; }
  .schedule-poster-heading { margin-bottom: 22px; }
  .schedule-poster-heading h2 { font-size: 31px; }
  .schedule-poster-heading p { font-size: 14px; }
  .schedule-poster { padding: 7px; border-radius: 11px; }
  .schedule-poster a { border-radius: 7px; }
  .schedule-poster-action a { width:100%; min-width:0; }
}

/* ===== Homepage alternating section backgrounds ===== */
body.home-redesign {
  --oa-greige: #ded5cf;
  --oa-greige-light: #eee6e0;
  --oa-ivory: #fffaf5;
  --oa-blush: #f4e1d9;
  --oa-brown: #5a493f;
  background: var(--oa-greige);
}

body.home-redesign .quick-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.72) 0, rgba(255,255,255,0) 31%),
    linear-gradient(135deg, #f3e4dc 0%, #fffaf5 54%, #e8ddd6 100%);
}

/* ===== Service articles ===== */
.service-article-page { margin:0; color:var(--kt-ink); font-family:'Prompt',sans-serif; background:transparent; }
.service-article-shell { width:min(1160px,calc(100% - 40px)); margin:0 auto; }
.service-article-header { padding:48px 0 22px; background:transparent; }
.service-article-header .service-article-shell { padding-bottom:22px; border-bottom:1px solid #dedede; }
.service-article-header h1 { margin:0 0 7px; color:#403b38; font-size:clamp(32px,3vw,40px); line-height:1.15; font-weight:800; }
.service-article-breadcrumb { display:flex; flex-wrap:wrap; align-items:center; gap:6px; color:#999; font-size:14px; }
.service-article-breadcrumb a { color:var(--kt-brown); text-decoration:underline; }
.service-article-breadcrumb a:hover { color:#6f4b3f; }
.service-article-section { padding:28px 0 90px; background:transparent; }
.service-article-layout { display:grid; grid-template-columns:minmax(0,790px) minmax(250px,1fr); gap:42px; align-items:start; }
.service-article-main { min-width:0; }
.service-article-cover { overflow:hidden; margin:0 0 42px; aspect-ratio:16/8.4; background:#eee9e5; }
.service-article-cover img { display:block; width:100%; height:100%; object-fit:cover; }
.service-article-content { padding:0 14px 20px; color:#3f3a37; font-size:17px; line-height:1.9; }
.service-richtext { color: #615650; font-size: 16px; line-height: 1.85; overflow-wrap: anywhere; columns:auto!important; column-count:1!important; }
.service-richtext > :is(div,p,section,article,header,footer,aside,figure,blockquote,ul,ol,h1,h2,h3,h4,h5,h6) { display:block!important; float:none!important; clear:both!important; width:100%!important; max-width:100%!important; columns:auto!important; column-count:1!important; }
.service-richtext h1,.service-richtext h2,.service-richtext h3,.service-richtext h4,.service-richtext h5,.service-richtext h6 { margin:30px 0 15px; color:var(--kt-blue); line-height:1.35; font-weight:800; }
.service-richtext h2 { font-size:30px; }
.service-richtext h3 { font-size:25px; }
.service-richtext p { margin: 0 0 15px; }
.service-richtext ul,.service-richtext ol { margin: 0 0 18px; padding-left: 24px; }
.service-richtext img { display:block!important; float:none!important; clear:both!important; max-width:100%!important; height:auto!important; margin:25px auto!important; }
.service-richtext:after { display:block; clear:both; content:""; }
.service-richtext blockquote { margin:25px 0; padding:18px 22px; border-left:4px solid var(--kt-blue); background:#fff; }
.service-richtext iframe,.service-richtext video { width: 100%; max-width: 100%; }
.service-richtext table { display:block; overflow-x:auto; width:100%; margin:22px 0; border-collapse:collapse; background:#fff; }
.service-richtext th,.service-richtext td { min-width:120px; padding:11px; border:1px solid #ddd4cf; }
.service-content-empty { padding: 70px 20px; border: 1px dashed #cdbfb8; color: #88766e; text-align: center; }
.service-content-empty i { display: block; margin-bottom: 12px; font-size: 38px; }
.service-article-sidebar { position:sticky; top:24px; min-width:0; }
.service-sidebar-block { margin-bottom:32px; }
.service-article-page .service-richtext h1,
.service-article-page .service-richtext h2,
.service-article-page .service-richtext h3,
.service-article-page .service-richtext h4,
.service-article-page .service-richtext h5,
.service-article-page .service-richtext h6 { color:#3f3a37 !important; }
.service-article-page .service-article-content,
.service-article-page .service-article-content * { color:#3f3a37 !important; }
.service-article-page .service-richtext a { color:var(--kt-brown) !important; text-decoration:underline; }
.service-article-page .service-richtext a:hover { color:#6f4b3f !important; }
.service-article-page .service-richtext blockquote { border-left-color:var(--kt-brown); }
.service-sidebar-block h2 { margin:0 0 14px; color:var(--kt-brown); font-size:23px; line-height:1.2; font-weight:800; }
.service-sidebar-title-row { display:flex; align-items:center; justify-content:space-between; gap:12px; border-bottom:1px solid #ddd; }
.service-sidebar-title-row h2 { margin-bottom:9px; }
.service-sidebar-title-row>a { color:#625a56; font-size:13px; text-decoration:none; }
.service-keyword-list { display:flex; flex-wrap:wrap; gap:8px; }
.service-keyword-list a { padding:8px 11px; border:1px solid #d9d9d9; background:#fff; color:#514a46; font-size:13px; line-height:1.25; text-decoration:none; }
.service-keyword-list a:hover,.service-keyword-list a.active { border-color:var(--kt-brown); background:var(--kt-brown); color:#fff; }
.service-sidebar-products a { display:grid; grid-template-columns:76px minmax(0,1fr); gap:11px; align-items:center; padding:11px 0; color:#413b38; font-size:14px; line-height:1.35; text-decoration:none; }
.service-sidebar-products img { display:block; width:76px; height:52px; object-fit:cover; background:#eee; }
.service-sidebar-products a:hover span { color:var(--kt-brown); }
.service-sidebar-links { border-top:1px solid #ddd; }
.service-sidebar-links a { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:11px 2px; border-bottom:1px solid #ddd; color:#4d4744; font-size:14px; text-decoration:none; }
.service-sidebar-links i { color:#6f4b3f; font-size:10px; }
.service-sidebar-links a:hover span { color:var(--kt-brown); }

.product-category-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 34px; }
.product-category-nav a { padding: 10px 16px; border: 1px solid #d8cec8; background: #fff; color: var(--kt-brown); text-decoration: none; font-weight: 700; }
.product-category-nav a:hover,.product-category-nav a.active { border-color: var(--kt-brown); background: var(--kt-brown); color: #fff; }

@media (max-width: 991px) {
  .service-article-layout { grid-template-columns:minmax(0,1fr) 260px; gap:28px; }
}

@media (max-width: 640px) {
  .service-article-shell { width:min(100% - 28px,1160px); }
  .service-article-header { padding:30px 0 14px; }
  .service-article-header .service-article-shell { padding-bottom:17px; }
  .service-article-header h1 { font-size:32px; }
  .service-article-section { padding:20px 0 60px; }
  .service-article-layout { display:block; }
  .service-article-cover { margin-bottom:28px; aspect-ratio:16/10; }
  .service-article-content { padding:0 2px 20px; }
  .service-richtext { font-size: 15px; line-height: 1.75; }
  .service-richtext h2 { font-size:25px; }
  .service-richtext h3 { font-size:22px; }
  .service-article-sidebar { position:static; margin-top:44px; padding-top:30px; border-top:1px solid #ddd; }
  .product-category-nav { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .product-category-nav::-webkit-scrollbar { display: none; }
  .product-category-nav a { flex: 0 0 auto; }
}

body.home-redesign .services-home-section {
  background: #faf5e8;
}

body.home-redesign .promotion-home-section {
  background:
    radial-gradient(circle at 8% 82%, rgba(255,255,255,.65) 0, rgba(255,255,255,0) 32%),
    linear-gradient(140deg, #f2ddd5 0%, #fff8f2 55%, #eadfd8 100%);
}

body.home-redesign .soft-bg {
  background: #f6ebe5;
}

body.home-redesign .showcase-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(255,255,255,.72) 0, rgba(255,255,255,0) 30%),
    linear-gradient(140deg, #f4e1d9 0%, #fff9f4 54%, #e9ded7 100%);
}

body.home-redesign .news-section {
  background: #f7ede7;
}

body.home-redesign .contact-section {
  background:
    radial-gradient(circle at 12% 78%, rgba(255,255,255,.7) 0, rgba(255,255,255,0) 31%),
    linear-gradient(140deg, #f3dfd7 0%, #fffaf5 56%, #e7dcd5 100%);
}

body.home-redesign .quick-section,
body.home-redesign .home-section,
body.home-redesign .contact-section {
  border-top: 1px solid rgba(90, 73, 63, .075);
}

/* ===== Trainee gallery ===== */
body.gallery-page {
  margin: 0;
  color: var(--kt-ink);
  font-family: 'Prompt', sans-serif;
}
.trainee-gallery-main { min-height: 60vh; }
.trainee-gallery-hero { padding: 58px 0 42px; }
.trainee-gallery-hero .catalog-breadcrumb { margin-bottom: 24px; }
.trainee-gallery-kicker {
  color: #987364;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}
.trainee-gallery-hero h1 {
  margin: 8px 0 12px;
  color: var(--kt-brown);
  font-size: 26px;
  font-weight: 400;
}
.trainee-gallery-hero p {
  max-width: 720px;
  margin: 0;
  color: #756862;
  font-size: 16px;
  line-height: 1.75;
}
.trainee-gallery-section { padding: 10px 0 96px; }
.trainee-gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(74,33,24,.14);
}
.trainee-gallery-heading h2 {
  margin: 0;
  color: var(--kt-brown);
  font-size: 26px;
  font-weight: 400;
}
.trainee-gallery-heading > span { color: #8a7770; font-size: 13px; }
.trainee-card-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 22px;
}
.trainee-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  padding: 0;
  border: 1px solid #eadbd2;
  border-radius: 14px;
  background: #fff;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 24px rgba(74,33,24,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}
.trainee-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #eee5df;
}
.trainee-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.trainee-card-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 62px 16px 17px;
  background: linear-gradient(180deg,transparent 0%,rgba(142,93,63,.76) 43%,rgba(74,33,24,.96) 100%);
}
.trainee-card-caption strong {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.trainee-card-caption small {
  overflow: hidden;
  color: rgba(255,255,255,.8);
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.trainee-card:hover,
.trainee-card:focus-visible {
  z-index: 1;
  outline: none;
  transform: translateY(-5px);
  box-shadow: 0 15px 36px rgba(74,33,24,.18);
}
.trainee-card:focus-visible { box-shadow: 0 0 0 3px rgba(66,201,232,.45),0 15px 36px rgba(74,33,24,.18); }
.trainee-card:hover img { transform: scale(1.045); }
.trainee-gallery-empty { background: rgba(255,255,255,.5); }
.trainee-gallery-empty h2 { margin: 12px 0 7px; font-size: 26px; font-weight: 400; }
.trainee-gallery-empty p { margin: 0; }
body.trainee-lightbox-open { overflow: hidden; }
.trainee-lightbox[hidden] { display: none; }
.trainee-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 64px minmax(0,1100px) 64px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 70px 24px 30px;
  background: rgba(28,17,13,.94);
}
.trainee-lightbox figure {
  overflow: hidden;
  max-height: calc(100vh - 100px);
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(0,0,0,.4);
}
.trainee-lightbox figure > img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 195px);
  object-fit: contain;
  background: #201713;
}
.trainee-lightbox figcaption { padding: 15px 18px 17px; }
.trainee-lightbox figcaption strong,
.trainee-lightbox figcaption span { display: block; }
.trainee-lightbox figcaption strong { color: var(--kt-brown); font-size: 16px; font-weight: 600; }
.trainee-lightbox figcaption span { margin-top: 3px; color: #746761; font-size: 13px; }
.trainee-lightbox-close,
.trainee-lightbox-nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
}
.trainee-lightbox-close { position: absolute; top: 18px; right: 22px; }
.trainee-lightbox-nav { justify-self: center; }
.trainee-lightbox-close:hover,
.trainee-lightbox-nav:hover { background: #fff; color: var(--kt-brown); }

@media (max-width: 991px) {
  .trainee-card-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
}
@media (max-width: 640px) {
  .trainee-gallery-hero { padding: 32px 0 30px; }
  .trainee-gallery-hero p { font-size: 14px; }
  .trainee-gallery-section { padding: 5px 0 62px; }
  .trainee-gallery-heading { margin-bottom: 18px; }
  .trainee-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .trainee-card { border-radius: 10px; }
  .trainee-card-caption { padding: 44px 10px 11px; }
  .trainee-card-caption strong { font-size: 12px; }
  .trainee-card-caption small { display: none; }
  .trainee-lightbox { grid-template-columns: 42px minmax(0,1fr) 42px; gap: 5px; padding: 62px 7px 20px; }
  .trainee-lightbox figure { max-height: calc(100vh - 86px); }
  .trainee-lightbox figure > img { max-height: calc(100vh - 170px); }
  .trainee-lightbox-nav { width: 38px; height: 38px; }
  .trainee-lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .trainee-lightbox figcaption { padding: 12px 14px 14px; }
}

/* Decorative botanical branches for the LINE OA-inspired background */
body.home-redesign .services-home-section,
body.home-redesign .promotion-home-section,
body.home-redesign .soft-bg,
body.home-redesign .showcase-section,
body.home-redesign .news-section,
body.home-redesign .contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

body.home-redesign .services-home-section > .site-shell,
body.home-redesign .promotion-home-section > .site-shell,
body.home-redesign .soft-bg > .site-shell,
body.home-redesign .showcase-section > .site-shell,
body.home-redesign .news-section > .site-shell,
body.home-redesign .contact-section > .site-shell {
  position: relative;
  z-index: 1;
}

/* Completely remove all background leaf/botanical pseudo elements */
.services-home-section::before,
.services-home-section::after,
.promotion-home-section::before,
.promotion-home-section::after,
.soft-bg::before,
.soft-bg::after,
.showcase-section::before,
.showcase-section::after,
.news-section::before,
.news-section::after,
.contact-section::before,
.contact-section::after,
.home-section::before,
.home-section::after,
body.home-redesign .services-home-section::before,
body.home-redesign .promotion-home-section::before,
body.home-redesign .soft-bg::before,
body.home-redesign .showcase-section::before,
body.home-redesign .news-section::before,
body.home-redesign .contact-section::before,
body.home-redesign .services-home-section::after,
body.home-redesign .promotion-home-section::after,
body.home-redesign .soft-bg::after,
body.home-redesign .showcase-section::after,
body.home-redesign .news-section::after,
body.home-redesign .contact-section::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ===== Uniform headings on selected information pages ===== */
:is(
  body.promotion-page,
  body.blog-list-page,
  body.news-list-page,
  body.about-page,
  body.profile-page,
  body.schedule-page
) main :is(h1,h2,h3,h4,h5,h6) {
  font-size: 26px !important;
  font-weight: 400 !important;
}

:is(
  body.promotion-page,
  body.blog-list-page,
  body.news-list-page,
  body.about-page,
  body.profile-page,
  body.schedule-page
) main :is(h1,h2,h3,h4,h5,h6) :is(a,strong,b) {
  font-size: inherit !important;
  font-weight: inherit !important;
}

/* ===== Uniform section headings on homepage ===== */
body.home-redesign main :is(.section-heading > span, .center-title h2) {
  font-size: 26px !important;
  font-weight: 400 !important;
}

/* About page: use a regular rectangular image frame. */
body.about-page .expert-portrait {
  border-radius: 0 !important;
}

/* ===== Uniform H2 and H3 headings on course catalog page ===== */
body.course-catalog-page main :is(h2, h3) {
  font-size: 26px !important;
  font-weight: 400 !important;
}
