/* ============================================
   TTY ENTERPRISE — DESIGN TOKENS
   ============================================ */
 @font-face {
  font-family: 'DB Heavent';
  src: url('./fonts/DB Heavent.woff2') format('woff2'),
       url('./fonts/DB Heavent.woff') format('woff'),
       url('./fonts/DB Heavent.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* เรียกใช้ฟอนต์กับทั้งหน้าเว็บ */
body {
  body {
  font-family: 'DB Heavent', sans-serif;
  

}

}
:root {
  --navy: #0F1F3D;
  --navy-deep: #0A1530;
  --steel: #5A6B85;
  --silver: #C9CDD3;
  --amber: #E8A33D;
  --amber-deep: #C9842A;
  --warm-white: #F7F6F3;
  --ink: #14171C;

 --font-display: 'DB Heavent', sans-serif;
--font-body: 'DB Heavent', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-w: 1180px;
  --radius: 10px;
  --shadow-card: 0 8px 24px -8px rgba(15, 31, 61, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin-top: 0 !important;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy-deep);
}
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-small { padding: 10px 20px; font-size: 1.05rem; }

.btn-full { width: 100%; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;        /* เปลี่ยนจาก sticky เป็น fixed เพื่อให้ล็อคอยู่บนสุดของจอเสมอ */
    top: 0;
    left: 0;                /* เพิ่มบรรทัดนี้ เพื่อให้ชิดขอบซ้ายสุด */
    width: 100%;            /* เพิ่มบรรทัดนี้ เพื่อให้แถบยาวเต็มหน้าจอพอดี */
    z-index: 100;
    background: rgba(15, 31, 61, 0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.logo-text {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--silver);
}
.logo img {
    height:50px;
    width: auto;
    display:block;
}
.main-nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--silver);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
}
.spec-strip {
  position: absolute;
  top: -10%;
  width: 9%;
  height: 130%;
  transform: skewX(-12deg);
  background: linear-gradient(180deg, rgba(232,163,61,0.16), rgba(201,205,211,0.06));
}
.strip-1 { left: 8%; }
.strip-2 { left: 26%; background: linear-gradient(180deg, rgba(201,205,211,0.14), rgba(232,163,61,0.05)); }
.strip-3 { left: 68%; }
.strip-4 { left: 86%; background: linear-gradient(180deg, rgba(201,205,211,0.14), rgba(232,163,61,0.05)); }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.spec-callout {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spec-value {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
}
.spec-value small {
  font-size: 0.9rem;
  color: var(--silver);
  margin-left: 2px;
}
.spec-label {
  font-size: 0.82rem;
  color: var(--silver);
}
.spec-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.18);
}

/* ============================================
   PAGE HEADER (used on sub-pages instead of hero)
   ============================================ */
.page-header {
  margin-top: 0 ;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 72px 0 56px;
  
}
.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 14px;
}
.page-sub {
  color: var(--silver);
  max-width: 560px;
  font-size: 1.05rem;
}

/* ============================================
   TEASER GRID (home page links to other pages)
   ============================================ */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(15, 31, 61, 0.25);
}
.teaser-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--amber-deep);
}
.teaser-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.teaser-card p {
  font-size: 0.9rem;
  color: var(--steel);
  flex: 1;
}
.teaser-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--navy-deep);
  font-weight: 600;
}

/* ============================================
   VALUE GRID (about page)
   ============================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--warm-white);
  border: 1.5px solid #E6E3DC;
  border-radius: var(--radius);
  padding: 28px 24px;
}
.value-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--amber-deep);
  background: rgba(232,163,61,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.92rem;
  color: var(--steel);
}

/* ============================================
   PAGE CTA (bottom-of-page call to action band)
   ============================================ */
.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #E6E3DC;
}
.page-cta p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy-deep);
}

.about-cta { margin-top: 32px; }

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--silver);
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */
.section {
  padding: 96px 0;
}
.section-alt { background: #fff; }
.section-dark {
  background: var(--navy-deep);
  color: #fff;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 14px;
}
.section-eyebrow-light { color: var(--amber); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.25;
  max-width: 640px;
  margin-bottom: 16px;
  color: var(--navy-deep);
}
.section-title-light { color: #fff; }

.section-desc {
  max-width: 560px;
  color: var(--steel);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ============================================
   PRODUCTS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(15, 31, 61, 0.25);
}

.product-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-body { padding: 22px 22px 26px; }
.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.product-body p {
  font-size: 0.92rem;
  color: var(--steel);
  margin-bottom: 14px;
}
.product-spec {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--amber-deep);
  background: rgba(232,163,61,0.12);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.about-copy p {
  color: var(--steel);
  margin-bottom: 16px;
  max-width: 520px;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stats strong {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  color: var(--navy-deep);
}
.about-stats span {
  font-size: 0.82rem;
  color: var(--steel);
}

.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

/* ============================================
   REVIEWS
   ============================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: #fff;
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
.review-card p {
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 16px;
}
.review-card footer {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--steel);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  color: var(--silver);
  max-width: 460px;
  margin-bottom: 36px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: opacity 0.15s ease;
}
.contact-line:hover { opacity: 0.75; }
.contact-label {
  font-family: var(--font-mono);
  font-size:1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}
.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-card);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid #DDE0E5;
  border-radius: 8px;
  color: var(--ink);
  background: var(--warm-white);
  resize: vertical;
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--amber);
  outline: none;
}
.form-note {
  font-size: 0.85rem;
  color: var(--amber-deep);
  min-height: 1.2em;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  color: var(--silver);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.footer-copy {
  font-size: 0.82rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 14px 24px; width: 100%; }
  .main-nav a::after { display: none; }

  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .product-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
  .spec-callout { gap: 20px; }
  .teaser-grid { grid-template-columns: 1fr; }
  .page-cta { flex-direction: column; align-items: flex-start; }
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   PAGE TRANSITIONS (View Transitions API)
   ============================================ */
@keyframes slide-out-left {
  to { transform: translateX(-6%); opacity: 0; }
}
@keyframes slide-in-right {
  from { transform: translateX(6%); opacity: 0; }
}

::view-transition-old(root) {
  animation: 0.42s cubic-bezier(0.4, 0, 0.2, 1) both slide-out-left;
}
::view-transition-new(root) {
  animation: 0.42s cubic-bezier(0.4, 0, 0.2, 1) both slide-in-right;
}

/* Fallback fade/slide for browsers without View Transitions support,
   driven by .is-leaving / .is-entering classes toggled in script.js */
body {
  opacity: 1;
  transform: translateX(0);
}
body.is-leaving {
  opacity: 0;
  transform: translateX(-2%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
body.is-entering {
  animation: page-enter 0.32s ease both;
}
@keyframes page-enter {
  from { opacity: 0; transform: translateX(2%); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none !important; }
  body.is-leaving, body.is-entering { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Active nav link state */
.main-nav a.is-active { color: #fff; }
.main-nav a.is-active::after { width: 100%; }
body{
    background:#0F1F3D !important
}
/* สไตล์สสำหรับหน้ารายละเอียดสกรู */
.screw-detail-container {
    display: flex;
    gap: 48px;
    margin-top: 120px; /* เว้นระยะจากแถบ Header สีขาวด้านบน */
    margin-bottom: 60px;
}

.screw-gallery {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-product-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.screw-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-tag {
    color: var(--amber); /* ใช้ตัวแปรสีที่คุณตั้งไว้ */
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.screw-info h1 {
    font-size: 2.5rem;
    margin: 0;
}

.product-price {
    font-size: 1.25rem;
    color: #e74c3c;
    font-weight: bold;
}

.product-description ul {
    padding-left: 20px;
    margin-top: 10px;
}

.product-description li {
    margin-bottom: 8px;
    color: #555;
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
/* --- โค้ดปรับพื้นหลังแบบสว่าง --- */
body {
    background-color: #f8f9fa !important; /* เปลี่ยนพื้นหลังเว็บเป็นสีขาวเทา */
}

.screw-detail-container {
    background: #ffffff; /* ทำกล่องเนื้อหาเป็นสีขาว */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* ใส่เงาละมุนๆ ให้กล่อง */
}

/* ปรับสีตัวหนังสือให้เข้มขึ้นเพื่อให้เห็นชัดเจนบนพื้นสว่าง */
.screw-info h1 {
    color: #1a1a1a !important; 
}

.product-description h3 {
    color: #333333 !important;
}

.product-description li {
    color: #555555 !important;
}
/* จัดการกล่องแสดงสินค้าย่อยให้เรียงเป็นแถวหน้ากระดานอัตโนมัติ */
.screw-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
    margin-bottom: 60px;
}

/* ตกแต่งการ์ดสินค้าย่อยแต่ละตัว */
.screw-item-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.screw-item-card:hover {
    transform: translateY(-5px); /* เวลาเอาเมาส์ชี้แล้วกล่องจะลอยขึ้นเล็กน้อย */
}

.screw-item-card img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.screw-item-card h4 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin: 10px 0 5px 0;
}

.screw-item-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ปุ่มกดดูรายละเอียดสินค้า */
.btn-detail {
    display: inline-block;
    background-color: #1c2541;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
}
.btn-detail:hover {
    background-color: var(--amber);
    color: #111;
}
/* ดันเนื้อหาของหน้ารวมสินค้าย่อยลงมา ไม่ให้แถบเมนูสีน้ำเงินลอยมาทับ */
body {
    padding-top: 72px; /* เว้นระยะห่างจากด้านบนเผื่อพื้นที่ให้เมนู */
}

/* ปรับให้พื้นหลังของหน้ารวมสินค้าเป็นสีสว่างและมีระยะห่างที่สวยงาม */
main.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* จัดระยะตำแหน่งหัวข้อหมวดหมู่ในหน้ารวมสินค้า */
.category-title {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--amber);
    font-size: 1.8rem;
}
/* --- สไตล์สำหรับหน้า screw-detail โฉมใหม่ --- */
.screw-detail-card {
    background: #ffffff;
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    margin-bottom: 60px;
}

/* จัดฝั่งรูปภาพ */
.screw-detail-gallery {
    flex: 1;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 350px;
}

.screw-main-img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
}

/* จัดฝั่งข้อความรายละเอียด */
.screw-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.screw-tag {
    color: var(--amber);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.screw-title {
    color: #1a1a1a !important;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
}

.screw-price {
    font-size: 1.2rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
}

.screw-specs h3 {
    color: #333333 !important;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.screw-specs ul {
    padding-left: 20px;
    margin: 0;
}

.screw-specs li {
    color: #555555 !important;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
}

/* จัดกลุ่มปุ่มกด */
.screw-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}
/* บังคับการ์ดสินค้าจัดเรียงเนื้อหาเป็นแนวตั้ง */
.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ดันปุ่มให้ตกลงไปอยู่ล่างสุดเสมอ */
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ปรับแต่งให้ปุ่มกว้างเต็มกล่อง ไม่หด ไม่เบี้ยว */
.product-card .btn, 
.product-card a.btn-primary {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: auto !important; /* ดันปุ่มลงล่างสุด */
    padding: 12px 0 !important;   /* เว้นระยะบนล่างของปุ่ม */
    clear: both !important;
}
/* บังคับให้กล่องสินค้าขยายความสูงตามปริมาณตัวหนังสือโดยอัตโนมัติ */
.product-card {
    height: auto !important;          /* ปลดล็อคความสูงตายตัว ให้ยืดตามเนื้อหา */
    min-height: 480px;                /* กำหนดความสูงขั้นต่ำไว้ เพื่อให้ทุกกล่องเท่ากันสวยงาม */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important; /* ดันปุ่มสีเหลืองให้ตกไปอยู่ล่างสุดเสมอ */
    box-sizing: border-box !important;
}

/* จัดการส่วนเนื้อหาและข้อความด้านในการ์ด */
.product-card h3,
.product-card p,
.product-meta {
    word-wrap: break-word;            /* บังคับให้ตัดคำขึ้นบรรทัดใหม่เมื่อยาวเกินขอบ */
    overflow-wrap: break-word;
    margin-bottom: 12px;
}

/* ดันปุ่มให้อยู่ล่างสุดของการ์ดเสมอ ไม่ลอยไปทับข้อความ */
.product-card .btn-full {
    margin-top: auto !important;
}
/* --- โค้ดปรับแต่งหน้าเว็บสำหรับโทรศัพท์มือถือ --- */
@media screen and (max-width: 768px) {
    
    /* 1. จัดบอดี้หลักให้มีระยะขอบที่พอดี ไม่ล้นจอ */
    body {
        padding-top: 90px !important; /* ลดระยะห่างจากเมนูด้านบนลงมาหน่อย */
    }
    
    .container {
        padding: 0 16px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* 2. เปลี่ยนแถบเมนูด้านบนไม่ให้ซ้อนกันเบี้ยว */
    .header-inner {
        flex-direction: column !important; /* จัดโลโก้และเมนูเรียงลงมา */
        gap: 10px;
        padding: 10px !important;
    }
    
    .main-nav {
        display: flex;
        flex-wrap: wrap; /* ให้ลิงก์เมนูขึ้นบรรทัดใหม่ได้ถ้าหน้าจอแคบ */
        justify-content: center;
        gap: 12px !important;
    }

    /* 3. ปรับหน้ารวมสินค้าและหน้าสกรูให้เรียงเป็นแถวเดี่ยวในมือถือ */
    .screw-grid, 
    .products-grid {
        grid-template-columns: 1fr !important; /* บังคับให้แสดงแถวละ 1 กล่องสินค้าพอดีจอ */
        gap: 20px !important;
    }

    /* 4. ปรับหน้ารายละเอียดสินค้า (Screw Detail) ให้รูปอยู่บน ข้อความอยู่ล่าง */
    .screw-detail-card {
        flex-direction: column !important; /* เปลี่ยนจากซ้ายขวา เป็นบนล่าง */
        padding: 20px !important;
        gap: 20px !important;
    }

    .screw-detail-gallery {
        min-height: auto !important;
    }

    .screw-main-img {
        max-height: 250px !important; /* ลดขนาดรูปภาพลงมาให้พอดีจอมือถือ */
    }

    .screw-title {
        font-size: 1.6rem !important; /* ลดขนาดตัวหนังสือหัวข้อในมือถือ */
        text-align: center;
    }

    .screw-price {
        text-align: center;
    }

    .screw-actions {
        flex-direction: column !important; /* ปรับให้ปุ่มกดเรียงต่อกันเป็นแนวตั้งซ้อนกัน */
        gap: 10px !important;
    }
}
/* บังคับให้รูปภาพสินค้าในหน้ารวมสกรูอยู่กึ่งกลางกล่องเสมอ */
.screw-item-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* จัดทุกอย่างในการ์ดให้อยู่ตรงกลางรวมถึงรูปภาพ */
    text-align: center !important;
}

.screw-item-card img {
    margin: 0 auto 15px auto !important; /* ดันขอบซ้ายขวาของรูปให้อยู่กึ่งกลางอัตโนมัติ */
    display: block !important;
    max-width: 100% !important;
}
#page-transition-overlay {
    position: fixed;
    top: -50px; /* ดึงขอบม่านขึ้นไปข้างบนสุดเพื่อปิดช่องขาว */
    left: 0;
    width: 100%;
    height: calc(100vh + 50px); /* ขยายม่านให้ยาวลงมาครอบคลุมหน้าจอพอดี */
    
    /* ก๊อปปี้ลายไล่เฉดสีแบบเดิมจากบรรทัดที่ 291 มาใส่ตรงนี้ */
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); 
    
    z-index: 99999;
    pointer-events: none;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.0s cubic-bezier(0.25, 1, 0.5, 1), transform 1.0s cubic-bezier(0.25, 1, 0.5, 1);
}
/* โค้ดชุดใหม่ เจาะจงเฉพาะกล่องข้อความด้านล่าง ไม่กระทบด้านบน */
.about-grid, 
[class*="about-grid"] {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 40px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 40px auto 0 auto !important;
}

.about-grid > div,
[class*="about-grid"] > div {
    flex: 1 1 500px !important;
    max-width: 500px !important;
    text-align: left !important;
}
/* โค้ดบังคับให้แผงกล่องข้อความขยับมาตรงกลางหน้าจอ */
.about-grid, 
[class*="about-grid"] {
    display: flex !important;
    justify-content: center !important; /* จัดกลุ่มกล่องให้อยู่ตรงกลาง */
    align-items: flex-start !important;
    margin: 40px auto !important; /* บังคับระยะขอบซ้าย-ขวาให้เท่ากันอัตโนมัติ */
    width: 100% !important;
    max-width: 1140px !important; /* ปรับขนาดแผงรวมให้พอดี */
    padding: 0 20px !important;
}

/* ปรับให้กล่องย่อยแต่ละกล่องขยับตามมาด้วย */
.about-grid > div,
[class*="about-grid"] > div {
    margin: 0 !important; /* ลบ margin เก่าที่อาจจะดึงให้เบี้ยวออก */
}
/* โค้ดจัดกึ่งกลางสำหรับกล่องข้อความ 01, 02, 04 */
.teaser-grid {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 32px !important; /* ระยะห่างระหว่างกล่อง */
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* ควบคุมขนาดกล่องย่อยให้เท่ากันสวยงาม */
.teaser-grid > .teaser-card {
    flex: 1 1 300px !important;
    max-width: 360px !important;
}
about-media img {
    width: 100%;
    height: auto;
    display: block;
}
/* ---- ตั้งค่าแสดงผลบนจอคอมพิวเตอร์ (เริ่มต้นซ่อนปุ่ม 3 ขีด) ---- */
.nav-toggle {
    display: none; /* ซ่อนปุ่มเปิดเมนูบนจอคอม */
}

/* ---- ตั้งค่าแสดงผลเฉพาะบนมือถือ (หน้าจอเล็กกว่า 768px) ---- */
@media (max-width: 768px) {
    /* 1. เปิดใช้งานและจัดสไตล์ปุ่ม 3 ขีดของคุณ */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001; /* ให้อยู่เหนือแผงเมนู */
    }

    /* สไตล์เส้นภายในปุ่ม <span/> ทั้ง 3 เส้น */
    .nav-toggle span {
        width: 100%;
        height: 3px;
        background-color: #ffffff; /* เปลี่ยนเป็นสีขาวให้ตัดกับพื้นหลัง */
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    /* 2. ซ่อนปุ่มขอใบเสนอราคาเดิมบนแถบ Header ปกติ */
    .header-cta {
        display: none !important; 
    }

    /* 3. ดัดแปลงกล่องเมนูลิงก์ (.main-nav) ให้กลายเป็นแผงสไลด์ด้านข้าง */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* ซ่อนแผงเมนูไว้ทางขวานอกจอ */
        width: 70%;    /* ความกว้างแผงเมนู 70% ของจอ */
        height: 100vh;
        background: #0F1F3D; /* สีน้ำเงินเข้มตามธีมเว็บของคุณ */
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        gap: 25px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* สไลด์นุ่มนวล ไม่กระตุก */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    /* ลิงก์เมนูข้างในปรับให้เรียงเป็นแนวตั้งตัวโตๆ */
    .main-nav a {
        font-size: 1.2rem;
        color: #ffffff;
        text-decoration: none;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    /* 4. คำสั่งสั่งให้แผงเมนูสไลด์เข้ามาในจอ (ทำงานร่วมกับ JS) */
    .main-nav.active {
        right: 0; /* สไลด์ออกมาแสดงผล */
    }

    /* ทำแอนิเมชันปุ่ม 3 ขีดหมุนไขว้เป็นกากบาท (X) เมื่อเมนูถูกเปิด */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0; /* ซ่อนเส้นกลาง */
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
@media (max-width: 768px) {
    /* จัดการกล่องครอบใหญ่ให้เรียงโลโก้และปุ่ม 3 ขีดแนวนอน */
    .header-inner {
        display: flex !important;
        flex-direction: row !important; /* บังคับให้เรียงแนวนอน */
        justify-content: space-between !important; /* ผลักโลโก้ไปซ้าย สุด ผลักปุ่ม 3 ขีดไปขวาสุด */
        align-items: center !important; /* จัดให้อยู่กึ่งกลางแนวตั้งพอดีกัน */
        width: 100% !important;
        padding: 0 20px !important; /* เพิ่มระยะห่างจากขอบจอซ้ายขวา */
        box-sizing: border-box !important;
    }

    /* ตรวจเช็กขนาดปุ่ม 3 ขีดให้ล็อกขนาดไว้ ไม่ให้เบี้ยว */
    .nav-toggle {
        margin: 0 !important; /* ลบ margin ที่อาจจะดันตรงกลางออก */
    }
}
@media (max-width: 768px) {
    /* บังคับซ่อนตัวลิงก์เมนูเดิมไม่ให้โครงสร้างโผล่มาดันหน้าจอสีขาว */
    .main-nav:not(.active) {
        display: none !important;
    }
}
/* ---------- Class Selector ---------- */

.class-selector{
    display:flex;
    align-items:center;
    gap:12px;
    margin:28px 0;
}

.selector-title{
    font-size:18px;
    font-weight:600;
    color:#555;
    margin-right:8px;
}

.class-option{

    width:42px;
    height:42px;

    border-radius:50%;

    border:1.5px solid #d8d8d8;

    background:#fff;

    color:#333;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:.25s ease;

}

.class-option:hover{

    border-color:#0B3D91;

    color:#0B3D91;

    transform:translateY(-2px);

}

.class-option.active{

    background:#0B3D91;

    border-color:#0B3D91;

    color:#fff;

    box-shadow:0 8px 20px rgba(11,61,145,.18);

}
.coil-img {
    width: 250px;
    height: 180px;
    object-fit: contain;
    display: block;
    margin: auto;
}
/* ปรับขนาดรูปสินค้าให้เท่ากัน */
.screw-detail-gallery {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.screw-main-img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    object-position: center;
    display: block;
}
/* ขนาดรูปสินค้า */
.screw-main-img{
    width:100%;
    height:350px;
    object-fit:contain;
    object-position:center;
    transition:transform .25s ease;
}

/* ขยายรูป Class 2 ให้เท่า Class 3 */
.screw-main-img.class-2{
    transform:scale(1.28);
}

.screw-main-img.class-3{
    transform:scale(1);
}
/* ปรับขนาดรูป Class 2 และ Class 3 */

.screw-main-img{
    width:100%;
    height:350px;
    object-fit:contain;
    object-position:center;
    transition:transform .25s ease;
}

.screw-main-img.class-2{
    transform:scale(1.28);
}

.screw-main-img.class-3{
    transform:scale(1);
}
.screw-main-img{
    transition: transform .25s ease;
}
/* เฉพาะหน้าฟอยล์ */
.foil-page .screw-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 30px auto 60px;
}

/* มือถือยังเป็น 1 คอลัมน์ */
@media (max-width:768px){
    .foil-page .screw-grid{
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}
/* ==========================================
   ปรับฟอนต์ DB Heavent + ขยายขนาดพร้อมกันทุกจุด
   ========================================== */

/* 1. เปลี่ยนตัวแปรฟอนต์หลักของระบบ */
:root {
  --font-display: 'DB Heavent', sans-serif;
  --font-mono: 'DB Heavent', monospace;
}

/* 2. บังคับใช้ฟอนต์ + ขยายขนาดข้อความทั่วไป */
* {
  font-family: 'DB Heavent', sans-serif !important;
}

body {
  font-size: 20px; /* ขนาดข้อความทั่วไปในหน้าเว็บ */
}

/* 3. ขยายขนาดปุ่มกด (Buttons) */
.btn {
  font-size: 20px !important;   /* ปุ่มทั่วไป */
}

.btn-small {
  font-size: 18px !important;   /* ปุ่มขนาดเล็ก */
}

/* 4. ขยายขนาดโลโก้ (Logo) */
.logo-mark {
  font-size: 28px !important;   /* ตัวอักษรโลโก้หลัก */
}

.logo-text {
  font-size: 16px !important;   /* ข้อความย่อยใต้โลโก้ */
}

/* 5. ขยายขนาดเมนู (Navbar) */
nav a {
  font-size: 20px !important;   /* ลิงก์เมนูหน้าแรก, สินค้า, ติดต่อ ฯลฯ */
}
/* ดันขนาดฐานของ rem ให้ใหญ่ขึ้นทั้งระบบ */
html {
  font-size: 22px !important; /* ลองปรับเพิ่มเป็น 24px หรือ 26px ได้ตามต้องการ */
}

/* หากต้องการขยายเฉพาะข้อความทั่วไปใน body เพิ่มเติม */
body {
  font-size: 1.2rem !important;
}
.line-qr{
    text-align:center;
    margin:24px 0;
}

.line-qr img{
    width:180px;
    height:180px;
    border-radius:12px;
    background:#fff;
    padding:10px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.line-qr p{
    margin-top:12px;
    color:#555;
    font-size:15px;
}
/* 1. ขยายตัวหนังสือคำว่า Class */
.class-label, 
.option-label {
  font-size: 20px !important; /* ปรับขนาดคำว่า Class */
  font-weight: bold;
}

/* 2. ขยายขนาดวงกลม (ขยายทั้งความกว้าง ความสูง และฟอนต์ข้างใน) */
.class-btn, 
.option-btn,
.circle-btn {
  width: 50px !important;       /* ขยายความกว้างวงกลม (เดิมน่าจะประมาณ 30-35px) */
  height: 50px !important;      /* ขยายความสูงวงกลม */
  font-size: 20px !important;    /* ขยายตัวเลข 2, 3 ข้างใน */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
/* ปรับแต่งรูปฝั่งขวา ให้มีกรอบและใหญ่ขึ้น */
.contact-right-image img {
  width: 100%;
  height: auto;
  max-height: 800px;                  /* 1. ดันความสูงขึ้นให้รูปใหญ่ขึ้น (ปรับเพิ่มได้) */
  object-fit: cover;
  
  /* --- 2. ส่วนของกรอบรูป --- */
  border: 4px solid var(#ffffff);     /* ความหนากรอบ + สีเส้น (เปลี่ยนเป็น #fff หรือ px อื่นได้) */
  padding: 8px;                       /* ระยะเว้นขอบระหว่างรูปกับกรอบ */
  background: rgba(255, 255, 255, 0.1);/* สีพื้นหลังของช่องเว้นขอบ */
  border-radius: 24px;                /* ความโค้งมนของกรอบ */
  
  /* --- 3. เพิ่มเงาให้กรอบเด่นขึ้น --- */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
/* 1. ขยายความกว้างกล่องหลัก และจัดรูปให้อยู่ตรงกลางแนวตั้ง */
.contact-grid {
  max-width: 1200px !important; /* ขยายความกว้างรวมให้ฝั่งขวาแผ่ออกได้มากขึ้น */
  align-items: center !important; /* จัดรูปให้ตรงกับข้อความฝั่งซ้าย ไม่ลอยสูงเกินไป */
}

/* 2. ปรับขนาดรูปสี่เหลี่ยมผืนผ้าให้ใหญ่สะใจและพอดีช่อง */
.contact-right-image img,
.contact-map-image img {
  width: 100% !important;
  height: auto !important;
  min-height: 480px !important;  /* กำหนดความสูงเริ่มต้นให้ดูใหญ่ขึ้น */
  max-height: 600px !important;  /* จำกัดไม่ให้สูงเกินหน้าจอ */
  object-fit: cover !important;  /* ดึงรูปให้เต็มกรอบโดยไม่เบี้ยวเสียสัดส่วน */
  aspect-ratio: 16 / 9;           /* บังคับสัดส่วนทรงผืนผ้าสวยงาม (หรือใช้ 16/9 ได้) */
  border-radius: 24px !important;/* เพิ่มขอบมนนุ่มนวล */
}
/* 1. ขยายกรอบรวมให้พื้นที่ฝั่งขวาแผ่ออกได้มากขึ้น */
.contact-grid {
  max-width: 1300px !important; 
  align-items: start !important;
}

/* 2. รักษาสัดส่วนผืนผ้าเดิมของรูป แต่ขยายให้ใหญ่เต็มพื้นที่ฝั่งขวา */
.contact-right-image img,
.contact-map-image img {
  width: 100% !important;
  height: auto !important;       /* ให้ความสูงปรับตามอัตราส่วนจริงของรูปเดิม */
  max-height: none !important;   /* ปลดล็อกความสูง ไม่ให้รูปโดนบีบ */
  object-fit: contain !important; /* แสดงรูปเต็มใบตามสัดส่วนเดิม */
  border-radius: 20px !important;
}
/* 1. ลบกรอบกล่องสีเข้มรอบนอกที่เป็นพื้นที่ว่างบน-ล่างออก */
.contact-right-image,
.contact-map-image {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* 2. แต่งขอบและเงาเข้าที่ตัวรูปแผนที่โดยตรง */
.contact-right-image img,
.contact-map-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 16px !important;                      /* ความโค้งมนของขอบรูป */
  border: 1px solid rgba(255, 255, 255, 0.2) !important;/* เส้นขอบบางๆ สไตล์โมเดิร์น */
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4) !important; /* เงาฟุ้งซอฟต์ๆ ด้านหลังรูป */
}

/* 3. จัดตำแหน่งกึ่งกลางแนวตั้งให้ขนานกับฝั่งซ้าย */
.contact-grid {
  align-items: center !important;
}
/* 1. ขยายความกว้างรวม และปรับสัดส่วนฝั่งขวาให้ใหญ่กว่าฝั่งซ้าย (40% : 60%) */
.contact-grid {
  max-width: 1400px !important;               /* ขยายความกว้างรวมของคอนเทนเนอร์ */
  grid-template-columns: 1fr 1.35fr !important;/* ดันคอลัมน์ฝั่งขวาให้ใหญ่กว่าฝั่งซ้าย */
  gap: 36px !important;                        /* ระยะห่างระหว่างซ้าย-ขวา */
}

/* 2. ปลดล็อกรูปให้ขยายใหญ่เต็มพื้นที่ฝั่งขวา */
.contact-right-image,
.contact-map-image {
  width: 100% !important;
}

.contact-right-image img,
.contact-map-image img {
  width: 100% !important;
  height: auto !important;
}
/* ==========================
   Contact Page (Mobile)
   ========================== */
@media (max-width: 768px) {

  .contact-grid{
    display:flex;
    flex-direction:column;
    gap:36px;
  }

  .contact-copy,
  .contact-right-image{
    width:100%;
  }

  .section-title-light{
    font-size:42px;
    line-height:1.2;
  }

  .contact-desc{
    font-size:18px;
    line-height:1.7;
  }

  .contact-info{
    gap:24px;
  }

  .contact-value{
    word-break:break-word;
  }

  .line-qr{
    text-align:center;
  }

  .line-qr img{
    width:180px;
    height:auto;
  }

  .contact-right-image img{
    width:100%;
    height:auto;
    border-radius:24px;
    display:block;
  }

  .map-link{
    display:block;
    text-align:center;
    margin-top:16px;
    font-size:18px;
  }
}