/* BST CACHE REFRESH V3 */

/* =========================
   CORE ENTERPRISE BASE
========================= */

body{
  margin:0;
  font-family:Arial,sans-serif;
  line-height:1.6;
  color:#111;

  background:#f8fafc;
}

.container {
  width:min(1200px,90%);
  margin-inline:auto;
}

/* =========================
HEADER SYSTEM
========================= */

.site-header{
  background:#0f172a;
  position:sticky;
  top:0;
  z-index:1000;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
}

.brand {
color: #ffffff;
text-decoration: none;
font-size: 20px;
font-weight: 700;
letter-spacing: 0.5px;
}

.site-nav {
display: flex;
gap: 20px;
align-items: center;
}

.site-nav a {
color: #ffffff;
text-decoration: none;
font-size: 15px;
transition: opacity 0.2s ease;
}

.site-nav a:hover {
opacity: 0.75;
}

.site-nav a[aria-current="page"] {
font-weight: 700;
}

/* MOBILE NAV */

@media (max-width: 768px) {

.header-inner {
flex-direction: column;
align-items: flex-start;
}

.site-nav {
flex-wrap: wrap;
gap: 14px;
}

}

/* =========================
   FOOTER SYSTEM
========================= */

footer {

  background: #0f172a;

  color: #ffffff;

  margin-top: 60px;

  padding: 40px 0;

  text-align: center;

}

footer h3 {

  margin-bottom: 12px;

  font-size: 22px;

}

footer p {

  margin: 8px 0;

  color: #cbd5e1;

} 

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 50px 0;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #1e293b;
  font-size: 13px;
  color: #94a3b8;
}

/* =========================
   FLOATING CTA SYSTEM
========================= */

.bst-float-container{
    position:fixed !important;
    right:20px !important;
    bottom:20px !important;
    z-index:99999 !important;

    display:flex !important;
    flex-direction:column !important;
    gap:12px !important;
}

.bst-btn{
    display:flex !important;

    width:58px !important;
    height:58px !important;

    min-width:58px !important;
    min-height:58px !important;

    align-items:center !important;
    justify-content:center !important;

    border-radius:50% !important;

    background:#ffffff !important;

    text-decoration:none !important;

    box-sizing:border-box !important;
}

.bst-btn:hover {

  transform: translateY(-3px);

}

.bst-btn:active {

  transform: scale(0.95);

}

.bst-btn svg {

  width: 30px;
  height: 30px;
  display: block;
  fill:none;
  stroke-width:2;
  
}

.bst-btn span{
    font-size:28px !important;
    font-weight:700 !important;
    color:#000 !important;
}

/* WhatsApp */

.bst-wa{
    border:3px solid #25D366 !important;
}

.bst-wa svg {

  fill: #25D366;

}

/* Call */

.bst-call{
    border:3px solid #2563EB !important;
}

.bst-call svg {

  fill: #2563EB;

}

/* Quote */

.bst-quote{
    border:3px solid #F97316 !important;
}

.bst-quote svg {

  fill: #F97316;

}

/* MOBILE */

@media (max-width: 768px) {

  .bst-float-container {

    right: 14px;
    bottom: 14px;

    gap: 12px;

  }

  .bst-btn {

    width: 52px;
    height: 52px;

  }

}

/* =========================
   HERO SECTION
========================= */

.hero-section{
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #eef4fb 100%
    );

  min-height:100px;

  display:flex;
  align-items:center;

  padding:60px 0 70px;

  border-bottom:1px solid #e2e8f0;
}

.hero-section h1 {

  font-size: 42px;
  line-height: 1.2;

  margin-bottom: 24px;

  color: #0f172a;

  max-width: 850px;

}

.hero-section p {

  font-size: 18px;

  max-width: 760px;

  color: #475569;

}

/* =========================
   SERVICE SECTION
========================= */

.service-section {

  padding: 70px 0;

}

.service-section h2 {

  font-size: 32px;

  margin-bottom: 24px;

  color: #0f172a;

}

.service-section ul {

  padding-left: 20px;

}

.service-section li {

  margin-bottom: 14px;

  color: #334155;

}

#service-content{
  animation:fadeIn .5s ease;
}

@keyframes fadeIn{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

/* =========================
   MOBILE REFINEMENT
========================= */

@media (max-width: 768px) {

  .hero-section {

    padding: 70px 0 50px;

  }

  .hero-section h1 {

    font-size: 32px;

  }

  .hero-section p {

    font-size: 16px;

  }

  .service-section h2 {

    font-size: 26px;

  }

}

/* =========================
   SERVICE CARDS
========================= */

.service-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

  gap: 24px;

  margin-top: 30px;

}

/* INDUSTRIES SECTION */

.industry-section {

  padding: 70px 0;

  background: #f8fafc;

}

.industry-section h2 {

  font-size: 32px;

  margin-bottom: 30px;

  color: #0f172a;

}

/* INDUSTRIES SECTION */

.industry-grid {

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));

  gap:24px;

}

.industry-card {

  background:#ffffff;

  border:1px solid #e2e8f0;

  border-radius:8px;

  padding:22px;

  min-height:120px;

  display:flex;

  align-items:center;

  justify-content:center;

  text-align:center;

  font-weight:600;

  color:#334155;

  text-decoration:none;

  transition:all .25s ease;

}

.industry-card:hover {

  transform:translateY(-3px);

  box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.service-card a{
  color:#2563eb;
  font-weight:600;
  text-decoration:none;
}

.service-card a:hover{
  text-decoration:underline;
}

h3 {
  margin-top: 10px;
}

p {
  margin-bottom: 10px;
}

/* =====================================
  SERVICE DETAIL PAGE
===================================== */

main.container{
  max-width:1200px;
  margin:60px auto 80px;
}

#service-title{
  font-size:48px;
  line-height:1.15;
  font-weight:700;
  color:#0f172a;
  margin-bottom:10px;
}

#service-description{
  font-size:20px;
  max-width:800px;
  color:#64748b;
  margin-bottom:40px;
}

#service-content{
  display:grid;
  grid-template-columns:
  repeat(auto-fit,minmax(350px,1fr));
  gap:30px;
  align-items:stretch;
}

.service-card{
  display:flex;
  flex-direction:column;
}

.service-card{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:30px;
  height:100%;
  box-sizing:border-box;

  box-shadow:
    0 10px 25px rgba(15,23,42,.06);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.service-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 18px 40px rgba(15,23,42,.12);
}

.service-card h3{
  color:#0f172a;
  font-size:22px;
  margin-bottom:12px;
}

.service-card p{
  color:#475569;
  line-height:1.8;
}

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

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

/* CARD */

/* HEADER */
.pc-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.pc-tag{
  background:#0f172a;
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
}

/* VALUE */
.pc-value{
  font-size:16px;
  font-weight:700;
  color:#2563eb;
  margin-bottom:8px;
}

/* DESC */
.pc-desc{
  font-size:14px;
  color:#475569;
  margin-bottom:12px;
  line-height:1.5;
}

/* META */
.pc-meta{
  font-size:13px;
  color:#334155;
  margin-bottom:12px;
}

/* BUTTON */
.pc-action a{
  display:inline-block;
  padding:8px 14px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  border-radius:8px;
  font-size:13px;
  transition:0.2s;
}

.pc-action a:hover{
  background:#1d4ed8;
}

.product-card{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.product-card h3{
  margin:0;
  font-size:18px;
  color:#0f172a;
}

.product-card p{
  margin:0;
  font-size:14px;
  color:#475569;
}

.product-card b{
  color:#111827;
}

.product-card:hover{
  border-color:#2563eb;
}

.product-controls{
  margin-bottom:20px;
}

#productSearch{
  width:100%;
  max-width:400px;
  padding:10px 14px;
  border:1px solid #cbd5e1;
  border-radius:8px;
  outline:none;
}

#productSearch:focus{
  border-color:#2563eb;
}

/* =========================
   SEARCH SUGGESTIONS (AMAZON STYLE)
========================= */

.suggestions-box{
  position:relative;
  max-width:400px;
}

.suggestion-item{
  background:#ffffff;
  border:1px solid #e2e8f0;
  padding:10px;
  cursor:pointer;
  font-size:14px;
  transition:0.2s;
}

.suggestion-item:hover{
  background:#f1f5f9;
  border-color:#2563eb;
}

.suggestion-title{
  font-weight:600;
  color:#0f172a;
}

.suggestion-meta{
  font-size:12px;
  color:#64748b;
}

.highlight{
  background:#fef08a;
  padding:2px 4px;
  border-radius:4px;
  font-weight:600;
}

/* =========================
PRODUCT IMAGE FIX
========================= */

.product-image{
  width:100%;
  height:280px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius:10px;
  margin-bottom:15px;
  border:1px solid #e2e8f0;
}

.product-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.product-placeholder{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:#f8fafc;
  border:2px dashed #cbd5e1;
  border-radius:12px;
  font-size:14px;
  color:#64748b;
  font-weight:600;
}

.product-placeholder{
  transition: all 0.2s ease;
}

.product-placeholder{
  border-color:#94a3b8;
}

.product-card ul{
padding-left:18px;
}

.product-card li{
margin-bottom:4px;
}

.btn-quote,
.btn-call,
.btn-wa{
padding:10px 15px;
border-radius:6px;
text-decoration:none;
font-size:14px;
font-weight:600;
}

.btn-amc{
  background:#f1f5f9;
  color:#0f172a;
  border:1px solid #cbd5e1;
  padding:10px 15px;
  border-radius:6px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}

.btn-quote{
  background:#fff7ed;
  color:#9a3412;
  border:1px solid #fed7aa;
}

.btn-call{
  background:#eff6ff;
  color:#1d4ed8;
  border:1px solid #fed7aa;
}

.btn-wa{
  background:#ecfdf5;
  color:#166534;
  border:1px solid #bbf7d0;
}

.btn-amc:hover{
  background:#ffedd5;
}

.btn-quote:hover{
  background:#e2e8f0;
}

.btn-call:hover{
  background:#bae6fd;
}

.btn-wa:hover{
  background:#bbf7d0;
}

.product-badge{
  display:inline-block;
  padding:4px 10px;
  font-size:11px;
  font-weight:600;
  border-radius:999px;
  letter-spacing:0.5px;
  margin-bottom:10px;
}

.product-badge.oem{
  background:#f8fafc;
  color:#475569;
  border:1px solid #e2e8f0;
}

.product-badge.custom{
  background:#eff6ff;
  color:#1d4ed8;
  border:1px solid #bfdbfe;
}

.amc-product-box{
  padding:15px;
  border:1px solid #e2e8f0;
  border-radius:10px;
  background:#f8fafc;
  margin-bottom:20px;
}

.amc-plan {
  padding: 12px;
  border: 1px solid #cbd5e1;
  margin: 8px 0;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.2s;
  background: #ffffff;
}

.amc-plan:hover {
  border-color: #2563eb;
}

.amc-plan.active {
  border: 2px solid #2563eb;
  background: #eff6ff;
}

/* ==========================================
PRODUCT GRID V1
========================================== */

#product-list{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:24px;
align-items:start;
margin-top:20px;
}

.product-card{
background:#fff;
border:1px solid #e5e7eb;
border-radius:14px;
padding:16px;
display:flex;
flex-direction:column;
height:auto;
transition:.25s ease;
}

.product-card:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.product-card h3{
font-size:18px;
line-height:1.4;
margin:12px 0 8px;
min-height:52px;
}

.product-spec{
font-size:14px;
font-weight:600;
color:#475569;
margin-bottom:12px;
}

.product-price{
margin-bottom:14px;
}

.price-current{
font-size:16px;
font-weight:700;
color:#0f172a;
}

.product-details{
margin-top:10px;
}

.product-details details{
border-top:1px solid #e5e7eb;
padding-top:10px;
}

.product-details summary{
cursor:pointer;
font-weight:600;
color:#2563eb;
list-style:none;
}

.product-details summary::-webkit-details-marker{
display:none;
}

.detail-content{
margin-top:12px;
font-size:14px;
line-height:1.6;
}

.product-actions{
margin-top:auto;
display:flex;
gap:8px;
flex-wrap:wrap;
}

.product-actions a{
font-size:13px;
padding:8px 12px;
}

/* Tablet */

@media(max-width:1200px){

#product-list{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:768px){

#product-list{
grid-template-columns:1fr;
}

}

/* =====================================
PRODUCT CARD ENTERPRISE V4
===================================== */

.product-title{
min-height:48px;
font-size:18px;
font-weight:700;
line-height:1.4;
margin:12px 0 8px;
}

.product-spec{
font-size:14px;
font-weight:600;
color:#475569;
margin-bottom:14px;
}

.details-summary{
cursor:pointer;
font-weight:600;
color:#2563eb;
padding:10px 0;
font-size:14px;
}

.details-summary::-webkit-details-marker{
display:none;
}

.authority-section{
padding:60px 0;
}

.authority-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:25px;
}

.authority-grid div{
padding:20px;
border:1px solid #e5e7eb;
border-radius:10px;
background:#fff;
}