/* Brother's Tire & Repair Shop — modern.css */

/* MODERN.CSS — Brother's Tire & Repair Shop. Pure CSS3, no Bootstrap. */

/* 1. CUSTOM PROPERTIES */
:root {
  --blue:     #14409a;
  --blue-dk:  #0e2e73;
  --blue-nav: #1449aa;
  --red:      #d81f26;
  --red-dk:   #b01a20;
  --gold:     #ffc400;
  --bg:       #f3f5fb;
  --white:    #ffffff;
  --card:     #ffffff;
  --text:     #2e3748;
  --muted:    #6b7890;
  --border:   #dde2ef;
  --r:        16px;
  --r-sm:     10px;
  --shadow:   0 4px 20px rgba(0,0,0,.07);
  --shadow-lg:0 16px 48px rgba(0,0,0,.14);
  --trans:    .2s ease;
  --max:      1300px;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--red); }
ul { list-style: none; }
p { margin-bottom: .9em; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  line-height: 1.25;
  color: var(--blue);
  letter-spacing: -.01em;
}
button, input, select, textarea { font-family: inherit; font-size: inherit; }
/* Touch polish: no grey/blue tap flash, no 300ms double-tap-zoom delay */
a, button { -webkit-tap-highlight-color: transparent; }
a, button, input, select, textarea, label { touch-action: manipulation; }

/* 3. LAYOUT */
.bts-wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
@media (max-width: 767px) { .bts-wrap { padding: 0 16px; } }

/* 4. TOP STRIP */
#bts-top { background: var(--blue-dk); padding: 9px 0; font-size: 12px; }
#bts-top .bts-wrap { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
#bts-top a { color: #b8cef8; }
#bts-top a:hover { color: var(--gold); }
.bts-top-links { display: flex; gap: 18px; align-items: center; }

/* 5. HEADER */
#bts-header {
  background: var(--white);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 0 var(--border), 0 4px 18px rgba(0,0,0,.05);
}
.bts-header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  /* vertical only — the horizontal inset comes from .bts-wrap */
  padding-top: 10px; padding-bottom: 10px; gap: 20px;
}
#bts-logo img {
  height: 126px; width: auto;
  filter: drop-shadow(0 8px 18px rgba(14,46,115,.28));
  transition: transform var(--trans), filter var(--trans);
}
#bts-logo a { display: inline-block; }
#bts-logo a:hover img {
  transform: scale(1.04) rotate(-1.5deg);
  filter: drop-shadow(0 12px 24px rgba(14,46,115,.38));
}
.bts-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.bts-phone {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 26px;
  font-weight: 700; color: var(--red); white-space: nowrap;
}
.bts-phone i { color: var(--blue); font-size: 22px; }
.bts-cart-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white) !important;
  border-radius: 50px; padding: 10px 22px;
  font-weight: 600; font-size: 14px;
  transition: background var(--trans);
}
.bts-cart-btn:hover { background: var(--blue-dk); color: var(--white) !important; }
.bts-cart-btn i { font-size: 16px; }

/* 6. NAVIGATION */
#bts-nav { background: var(--blue-nav); }
.bts-nav-inner { display: flex; align-items: center; justify-content: space-between; }
.bts-nav-links { display: flex; align-items: center; }
.bts-nav-links > li { position: relative; }
.bts-nav-links > li > a {
  display: block; padding: 18px 16px;
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em;
  transition: color var(--trans); position: relative;
}
.bts-nav-links > li > a::after {
  content: ''; position: absolute;
  bottom: 10px; left: 50%; right: 50%;
  height: 3px; background: var(--gold);
  border-radius: 3px; transition: left var(--trans), right var(--trans);
}
.bts-nav-links > li > a:hover,
.bts-nav-links > li.active > a { color: var(--gold) !important; }
.bts-nav-links > li > a:hover::after,
.bts-nav-links > li.active > a::after { left: 14px; right: 14px; }
/* Dropdown */
.bts-nav-links > li .bts-dropdown {
  display: none; position: absolute;
  top: 100%; left: 0; min-width: 210px;
  background: var(--white); border-radius: var(--r-sm);
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 300;
}
.bts-nav-links > li:hover .bts-dropdown { display: block; }
.bts-dropdown a {
  display: block; padding: 9px 14px; font-size: 14px;
  color: var(--text); border-radius: 8px;
  transition: background var(--trans), color var(--trans);
}
.bts-dropdown a:hover { background: #eef3ff; color: var(--blue); }
/* Search in nav */
.bts-nav-search form { display: flex; }
.bts-nav-search input {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 24px 0 0 24px;
  padding: 8px 16px; color: var(--white); font-size: 13px;
  width: 200px; outline: none;
  transition: background var(--trans), border-color var(--trans);
}
.bts-nav-search input::placeholder { color: rgba(255,255,255,.5); }
.bts-nav-search input:focus { background: rgba(255,255,255,.22); border-color: var(--gold); }
.bts-nav-search button {
  background: var(--gold); border: none; border-radius: 0 24px 24px 0;
  padding: 8px 14px; color: var(--blue-dk); cursor: pointer; font-size: 15px;
}
.bts-nav-search button:hover { background: #e6b000; }

/* 7. MAIN */
#bts-main { padding: 36px 0 64px; }
.bts-layout { display: flex; gap: 32px; align-items: flex-start; }
.bts-content { flex: 1; min-width: 0; }
.bts-sidebar { width: 280px; flex-shrink: 0; }

/* 8. PAGE HEADING */
.bts-page-heading {
  background: var(--blue); color: var(--white);
  border-radius: var(--r); padding: 18px 28px;
  font-family: 'Poppins', sans-serif; font-size: 22px;
  font-weight: 700; margin-bottom: 28px;
  box-shadow: 0 6px 20px rgba(20,64,154,.20);
}

/* 9. BREADCRUMB */
.bts-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.bts-breadcrumb a { color: var(--blue); }
.bts-breadcrumb-sep { color: var(--border); }

/* 10. HERO */
.bts-hero { margin-bottom: 40px; }
.bts-hero img { width: 100%; border-radius: 20px; object-fit: cover; display: block; box-shadow: 0 20px 60px rgba(0,0,0,.18); }

/* 11. SECTION TITLE */
.bts-section-title { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.bts-section-sub { color: var(--muted); margin-bottom: 28px; }

/* 12. SERVICE / PRODUCT GRID */
.bts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
@media (max-width: 600px) { .bts-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 400px) { .bts-grid { grid-template-columns: 1fr; } }

.bts-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  display: flex; flex-direction: column;
}
.bts-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bts-card-img {
  aspect-ratio: 1; background: #f0f3fa;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.bts-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bts-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.bts-card-title { font-weight: 700; font-size: 16px; color: var(--blue); }
.bts-card-title a { color: inherit; }
.bts-card-title a:hover { color: var(--red); }
.bts-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; flex: 1; }
.bts-card-price { font-weight: 800; font-size: 20px; color: var(--red); }
.bts-card-compare { font-size: 12px; color: #aab0c0; text-decoration: line-through; margin-left: 6px; }
.bts-card-foot { margin-top: auto; padding-top: 10px; }

/* 13. BUTTONS */
.bts-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 50px; padding: 12px 28px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}
.bts-btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 14px rgba(20,64,154,.25); }
.bts-btn-primary:hover { background: var(--blue-dk); color: var(--white); transform: translateY(-2px); }
.bts-btn-red { background: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(216,31,38,.25); }
.bts-btn-red:hover { background: var(--red-dk); color: var(--white); transform: translateY(-2px); }
.bts-btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.bts-btn-outline:hover { background: var(--blue); color: var(--white); }
.bts-btn-sm { padding: 8px 18px; font-size: 12px; }

/* 14. SHOWCASE */
.bts-showcase { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 40px 0; }
@media (max-width: 767px) { .bts-showcase { grid-template-columns: 1fr; } }
.bts-showcase-item {
  border-radius: var(--r); overflow: hidden; position: relative;
  min-height: 160px; display: flex; align-items: flex-end;
  background: var(--blue);
}
.bts-showcase-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.bts-showcase-body { position: relative; z-index: 1; padding: 22px; }
.bts-showcase-body h3 { color: var(--white); font-size: 22px; font-weight: 700; }
.bts-showcase-body h4 { color: var(--gold); font-size: 15px; }

/* 15. SIDEBAR */
.bts-widget { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px; }
.bts-widget-title { background: var(--blue); color: var(--white); padding: 14px 20px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; }
.bts-widget-body { padding: 8px 0; }
.bts-widget-body li a { display: block; padding: 10px 20px; font-size: 14px; color: var(--text); transition: background var(--trans), color var(--trans); border-bottom: 1px solid var(--border); }
.bts-widget-body li:last-child a { border-bottom: none; }
.bts-widget-body li a:hover, .bts-widget-body li.active a { color: var(--red); background: #fff5f5; }
.bts-product-small { display: flex; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); }
.bts-product-small:last-child { border-bottom: none; }
.bts-product-small img { width: 58px; height: 58px; object-fit: cover; border-radius: 8px; background: #f0f3fa; flex-shrink: 0; }
.bts-product-small-title { font-size: 13px; font-weight: 600; color: var(--blue); display: block; margin-bottom: 4px; }
.bts-product-small-title:hover { color: var(--red); }
.bts-product-small-price { font-size: 14px; font-weight: 700; color: var(--red); }

/* 16. TAGS */
.bts-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bts-tag { display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 13px; background: #eef1fa; color: var(--blue); transition: background var(--trans), color var(--trans); }
.bts-tag:hover, .bts-tag.active { background: var(--blue); color: var(--white); }

/* 17. PRODUCT PAGE */
.bts-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 767px) { .bts-product-layout { grid-template-columns: 1fr; gap: 24px; } }
.bts-product-img-main { border-radius: var(--r); overflow: hidden; background: #f0f3fa; aspect-ratio: 1; }
.bts-product-img-main img { width: 100%; height: 100%; object-fit: cover; }
.bts-product-title { font-size: 28px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.bts-product-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.bts-product-price { font-size: 32px; font-weight: 800; color: var(--red); }
.bts-product-compare { font-size: 16px; color: #aab0c0; text-decoration: line-through; }
.bts-product-meta { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.bts-product-desc { font-size: 15px; color: var(--text); margin-bottom: 24px; }
.bts-product-desc ul { padding-left: 1.2em; list-style: disc; }
.bts-product-desc li { margin-bottom: 6px; }
.bts-variant-select { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1.5px solid var(--border); font-size: 15px; background: var(--white); color: var(--text); margin-bottom: 16px; outline: none; }
.bts-variant-select:focus { border-color: var(--blue); }
.bts-qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.bts-qty-input { width: 80px; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 15px; text-align: center; outline: none; }
.bts-qty-input:focus { border-color: var(--blue); }
.bts-img-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.bts-img-thumbs img { width: 68px; height: 68px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: border-color var(--trans); }
.bts-img-thumbs img:hover { border-color: var(--blue); }
.bts-product-related { margin-top: 56px; }
.bts-product-related-title { font-size: 22px; margin-bottom: 20px; }

/* 18. FORMS */
.bts-form-group { margin-bottom: 20px; }
.bts-form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.bts-form-group input,
.bts-form-group select,
.bts-form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 12px; font-size: 15px; color: var(--text); background: var(--white);
  transition: border-color var(--trans), box-shadow var(--trans); outline: none;
}
.bts-form-group input:focus,
.bts-form-group select:focus,
.bts-form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,64,154,.12); }
.bts-form-group textarea { resize: vertical; min-height: 120px; }
.bts-alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; }
.bts-alert-success { background: #e8f9f0; color: #1a7a4a; border: 1px solid #a8e6c4; }
.bts-alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }

/* 19. BLOG */
.bts-articles { display: flex; flex-direction: column; gap: 28px; }
.bts-article-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); }
.bts-article-title { font-size: 22px; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.bts-article-title a { color: inherit; }
.bts-article-title a:hover { color: var(--red); }
.bts-article-meta { font-size: 13px; color: var(--muted); margin-bottom: 14px; display: flex; gap: 16px; flex-wrap: wrap; }
.bts-article-excerpt { font-size: 15px; color: var(--text); margin-bottom: 18px; }
.bts-article-tag { background: #eef1fa; color: var(--blue); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; display: inline-block; }
.bts-comment { padding: 16px 0; border-bottom: 1px solid var(--border); }
.bts-comment:last-child { border-bottom: none; }
.bts-comment-author { font-weight: 700; font-size: 15px; }
.bts-comment-date { font-size: 12px; color: var(--muted); margin-bottom: 8px; }

/* 20. CART */
.bts-cart-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); }
.bts-cart-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 12px; background: #f0f3fa; }
.bts-cart-item-title { font-weight: 600; color: var(--blue); font-size: 15px; }
.bts-cart-item-price { color: var(--red); font-weight: 700; }
.bts-cart-item-qty input { width: 60px; text-align: center; padding: 6px; border: 1.5px solid var(--border); border-radius: 8px; margin-top: 8px; }
.bts-cart-remove { color: var(--muted); font-size: 20px; background: none; border: none; cursor: pointer; }
.bts-cart-remove:hover { color: var(--red); }
.bts-cart-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; margin-top: 24px; }
.bts-cart-total { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 18px; }
.bts-cart-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* 21. SEARCH */
.bts-search-form { display: flex; margin-bottom: 32px; }
.bts-search-form input { flex: 1; padding: 14px 20px; border: 1.5px solid var(--border); border-radius: 12px 0 0 12px; font-size: 16px; outline: none; }
.bts-search-form input:focus { border-color: var(--blue); }
.bts-search-form button { background: var(--blue); color: var(--white); border: none; border-radius: 0 12px 12px 0; padding: 14px 22px; font-size: 18px; cursor: pointer; }
.bts-search-form button:hover { background: var(--blue-dk); }
.bts-search-result { display: grid; grid-template-columns: 80px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.bts-search-result img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; background: #f0f3fa; }
.bts-search-result-title { font-weight: 700; color: var(--blue); font-size: 16px; margin-bottom: 6px; }
.bts-search-result-title a { color: inherit; }
.bts-search-result-title a:hover { color: var(--red); }
.bts-search-result-desc { font-size: 14px; color: var(--muted); }

/* 22. PAGINATION */
.bts-pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; justify-content: center; }
.bts-pagination a, .bts-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; font-weight: 600; font-size: 14px; background: var(--card); border: 1.5px solid var(--border); color: var(--blue); transition: all var(--trans); }
.bts-pagination a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.bts-pagination .current { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* 23. 404 */
.bts-404 { text-align: center; padding: 80px 0; }
.bts-404 h1 { font-size: 80px; color: var(--blue); line-height: 1; }
.bts-404 h2 { font-size: 24px; margin: 16px 0 24px; }

/* 24. FOOTER */
#bts-footer { background: #0c2060; padding: 56px 0 0; }
.bts-footer-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; padding-bottom: 40px; }
@media (max-width: 900px) { .bts-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .bts-footer-grid { grid-template-columns: 1fr; } }
.bts-footer-col h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px; }
.bts-footer-col li { margin-bottom: 10px; }
.bts-footer-col a { color: #9eb4e8; font-size: 14px; transition: color var(--trans); }
.bts-footer-col a:hover { color: var(--white); }
.bts-footer-col p { color: #9eb4e8; font-size: 14px; margin-bottom: 8px; }
.bts-footer-col i { color: var(--gold); margin-right: 8px; }
.bts-footer-copy { background: #06102e; text-align: center; padding: 18px; font-size: 12px; color: #6b83b8; }
.bts-footer-copy a { color: var(--gold); }

/* 25. HERO SPLIT (home landing) */
.bts-hero-split {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0; align-items: stretch;
  background: linear-gradient(135deg, #0e2e73 0%, #14409a 60%, #1a52c0 100%);
  border-radius: 24px; padding: 0; margin-bottom: 48px;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.bts-hero-copy { padding: 52px 28px 52px 52px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; position: relative; z-index: 1; }
.bts-hero-split::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255,196,0,.10);
}
.bts-hero-kicker { color: var(--gold); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.bts-hero-title { color: #ffffff; font-size: 42px; font-weight: 800; line-height: 1.12; margin: 12px 0 16px; }
.bts-hero-sub { color: #c9d6f5; font-size: 17px; margin-bottom: 26px; max-width: 54ch; }
.bts-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.bts-hero-points { display: flex; gap: 20px; flex-wrap: wrap; }
.bts-hero-points span { color: #dfe8ff; font-size: 13px; font-weight: 600; }
.bts-hero-points i { color: var(--gold); margin-right: 6px; }
.bts-hero-media {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 36px 40px;
}
.bts-hero-media::before {
  content: ''; position: absolute; inset: 14% 6%;
  background: radial-gradient(closest-side, rgba(255,196,0,.30), transparent 72%);
  filter: blur(14px);
}
.bts-hero-media img {
  position: relative; width: 100%;
  border-radius: 14px;
  border: 4px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 70px rgba(0,0,0,.45);
  transform: rotate(-1.6deg);
  transition: transform .3s ease;
}
.bts-hero-media:hover img { transform: rotate(0deg) scale(1.02); }
.bts-btn-gold { background: var(--gold); color: #0e2e73; box-shadow: 0 4px 16px rgba(255,196,0,.35); }
.bts-btn-gold:hover { background: #e6b000; color: #0e2e73; transform: translateY(-2px); }
.bts-btn-ghost { background: transparent; color: #ffffff; border: 2px solid rgba(255,255,255,.55); }
.bts-btn-ghost:hover { background: #ffffff; color: var(--blue); border-color: #ffffff; }

/* 26. TRUST STRIP */
.bts-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 48px 0; }
.bts-trust-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow);
}
.bts-trust-item i {
  width: 46px; height: 46px; border-radius: 12px; background: #eef3ff; color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0;
}
.bts-trust-item h4 { font-size: 15px; margin-bottom: 2px; }
.bts-trust-item p { font-size: 13px; color: var(--muted); margin: 0; }

/* 27. CTA BAND */
.bts-cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #a5161c 100%);
  border-radius: 20px; padding: 38px 42px; margin-top: 52px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(216,31,38,.28);
}
.bts-cta-band h3 { color: #ffffff; font-size: 26px; margin-bottom: 4px; }
.bts-cta-band p { color: #ffd9db; margin: 0; font-size: 15px; }
.bts-btn-white { background: #ffffff; color: var(--red); }
.bts-btn-white:hover { background: #ffeaea; color: var(--red-dk); transform: translateY(-2px); }

/* 28. MISC COMPONENTS */
.bts-card-link { color: inherit; display: flex; flex-direction: column; }
.bts-card-link:hover { color: inherit; }
.bts-card-img--wide { aspect-ratio: 3 / 2; }
.bts-card-meta-sm { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.bts-prose {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 34px 38px; box-shadow: var(--shadow); margin-bottom: 26px;
}
.bts-prose iframe { border-radius: 12px; width: 100%; }
.bts-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .bts-form-row { grid-template-columns: 1fr; } }
.bts-article-more { margin-top: 16px; }
.bts-article-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bts-section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin: 44px 0 6px; }
.bts-section-head:first-child { margin-top: 0; }
.bts-section-link { font-weight: 600; font-size: 14px; white-space: nowrap; }
#bts-top .bts-top-links span { color: #b8cef8; }
#bts-top i { margin-right: 5px; color: var(--gold); }

/* 29. RTE (page content) */
.rte h2, .rte h3 { margin: 1.2em 0 .5em; }
.rte ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.rte li { margin-bottom: .4em; }
.rte img { border-radius: var(--r-sm); }

/* 30. LEGACY COMPAT (customer account pages keep old markup) */
.customer, #admin_header { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 34px; box-shadow: var(--shadow); }
.page_heading { font-size: 24px; margin-bottom: 20px; color: var(--blue); }
.page_heading a { font-size: 14px; margin-left: 12px; }
.form-control, input[type="text"].form-control, input[type="email"].form-control, input[type="password"].form-control {
  width: 100%; padding: 11px 15px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 15px; outline: none; background: var(--white);
}
.form-control:focus { border-color: var(--blue); }
.form-group { margin-bottom: 16px; }
.form-group label, .control-label { font-weight: 600; font-size: 14px; display: block; margin-bottom: 6px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 50px; padding: 11px 26px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px; text-transform: uppercase;
  border: none; cursor: pointer; background: var(--blue); color: #fff; transition: background var(--trans);
}
.btn:hover { background: var(--blue-dk); color: #fff; }
.btn-primary { background: var(--blue); } .btn-primary:hover { background: var(--blue-dk); }
.btn-info { background: var(--muted); } .btn-info:hover { background: var(--text); }
.table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.table th { font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 10px 12px; border-bottom: 2px solid var(--border); text-align: left; }
.table td { padding: 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
.row { display: flex; flex-wrap: wrap; gap: 24px; }
.row > [class*="col-"] { flex: 1; min-width: 260px; }
.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-size: 14px; }
.alert-success { background: #e8f9f0; color: #1a7a4a; border: 1px solid #a8e6c4; }
.alert-warning, .alert-error, .alert-danger { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }
.note { color: var(--muted); font-size: 13px; }
address { font-style: normal; }

/* 31. RESPONSIVE */
.bts-nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; padding: 12px 4px; cursor: pointer; }
@media (max-width: 991px) {
  .bts-sidebar { display: none; }
  .bts-trust { grid-template-columns: 1fr 1fr; }
  .bts-hero-title { font-size: 32px; }
  /* Top strip: one tidy line on tablets — drop the Instagram handle and
     keep every item on a single line */
  #bts-top { font-size: 11px; }
  #bts-top .bts-top-links { gap: 10px; }
  #bts-top .bts-top-links > span { white-space: nowrap; }
  #bts-top .bts-top-links > a { display: none; }
}
@media (max-width: 767px) {
  #bts-logo img { height: 78px; }
  .bts-phone { font-size: 17px; }
  .bts-header-inner { padding-top: 8px; padding-bottom: 8px; }
  .bts-nav-toggle { display: block; }
  .bts-nav-inner { flex-wrap: wrap; padding-bottom: 10px; }
  .bts-nav-links { display: none; width: 100%; order: 3; flex-direction: column; }
  .bts-nav-links.open { display: flex; }
  .bts-nav-links > li > a { padding: 13px 6px; }
  .bts-nav-links > li > a::after { display: none; }
  .bts-nav-links > li .bts-dropdown { display: block; position: static; background: rgba(255,255,255,.06); box-shadow: none; border-radius: 8px; margin: 0 0 6px; }
  .bts-dropdown a { color: #cdd9f7; }
  .bts-dropdown a:hover { background: rgba(255,255,255,.12); color: #fff; }
  .bts-nav-search { flex: 1; margin: 10px 0; }
  .bts-nav-search input { width: 100%; }
  .bts-nav-search form { width: 100%; }
  .bts-hero-split { grid-template-columns: 1fr; }
  .bts-hero-copy { padding: 30px 24px 8px; }
  .bts-hero-media { padding: 16px 24px 28px; }
  .bts-hero-media img { transform: none; }
  .bts-hero-title { font-size: 28px; }
  .bts-product-layout { grid-template-columns: 1fr; }
  .bts-cart-item { grid-template-columns: 64px 1fr auto; gap: 12px; }
  .bts-cart-item img { width: 64px; height: 64px; }
  .bts-showcase { grid-template-columns: 1fr; }
  .bts-trust { grid-template-columns: 1fr; }
  .bts-cta-band { padding: 26px; }
  .bts-prose { padding: 22px; }
  .bts-top-account { display: none; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); } /* room for the sticky action bar */
  /* 16px inputs stop iOS Safari from auto-zooming the page on focus */
  .bts-form-group input, .bts-form-group select, .bts-form-group textarea,
  .bts-variant-select, .bts-qty-input, .bts-search-form input { font-size: 16px; }
  .bts-top-btn { bottom: 76px; }
  /* WhatsApp float mobile placement is defined authoritatively after the base
     .bts-wa-float rule (search "wins the cascade") so it isn't clobbered. */
}

/* 32. TESTIMONIALS */
.bts-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .bts-reviews { grid-template-columns: 1fr; } }
.bts-review-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px;
}
.bts-review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.bts-review-text { font-size: 14.5px; color: var(--text); line-height: 1.65; margin: 0; flex: 1; }
.bts-review-name { font-weight: 700; font-size: 13px; color: var(--blue); }
.bts-review-name i { margin-right: 6px; color: var(--muted); }

/* 33. WHATSAPP + STICKY MOBILE BAR */
.bts-btn-wa { background: #25d366; color: #ffffff; box-shadow: 0 4px 14px rgba(37,211,102,.30); }
.bts-btn-wa:hover { background: #1eb857; color: #ffffff; transform: translateY(-2px); }
.bts-wa-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.bts-mobile-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: #ffffff; border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(0,0,0,.12);
}
.bts-mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 14px 6px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 13px;
}
.bts-mobile-bar a i { font-size: 16px; }
.bts-mobile-bar-call { color: var(--red); }
.bts-mobile-bar-wa { color: #1eb857; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.bts-mobile-bar-dir { color: var(--blue); }

/* 34. ACCESSIBILITY + MICRO-INTERACTIONS */
.bts-skip {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--gold); color: #0e2e73; font-weight: 700;
  padding: 10px 18px; border-radius: 0 0 10px 0;
}
.bts-skip:focus { left: 0; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(20,64,154,.55); outline-offset: 2px; border-radius: 6px;
}
.bts-top-btn {
  position: fixed; left: 22px; bottom: 22px; z-index: 400;
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--blue); color: #fff; font-size: 20px;
  box-shadow: 0 8px 22px rgba(20,64,154,.35);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .18s;
}
.bts-top-btn.show { opacity: 1; pointer-events: auto; transform: none; }
.bts-top-btn:hover { background: var(--blue-dk); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
.bts-footer-directions { color: var(--gold) !important; font-weight: 600; }
.bts-footer-directions:hover { color: #ffffff !important; }
.bts-footer-copy { color: #8ba0d4; }

/* 39. MOBILE POLISH */
.bts-nav-phone { display: none; }
.bts-nav-toggle span {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .05em; margin-left: 8px;
}
@media (max-width: 640px) {
  /* Top strip: keep only hours + language switch */
  #bts-top .bts-top-links > span:not(.bts-top-hours),
  #bts-top .bts-top-links > a { display: none; }
}
@media (max-width: 767px) {
  /* Nav bar: MENU button left, phone right (phones are hidden in the header) */
  .bts-nav-phone {
    display: inline-flex; align-items: center; gap: 8px;
    color: #ffffff !important; font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 15px; padding: 10px 0;
  }
  .bts-nav-phone i { color: var(--gold); }
  .bts-nav-inner { align-items: center; }

  /* Open menu: clear separators + roomier touch targets */
  .bts-nav-links.open > li { border-top: 1px solid rgba(255,255,255,.10); }
  .bts-nav-links.open > li > a { padding: 14px 8px; font-size: 14px !important; }

  /* Hero: prices pill wraps as a rounded box, not a broken pill */
  .bts-hero-prices {
    display: block; border-radius: 14px; line-height: 1.7;
    padding: 10px 16px; text-align: center; white-space: normal;
  }
  .bts-hero-ctas { flex-direction: column; gap: 10px; }
  .bts-hero-ctas .bts-btn { width: 100%; justify-content: center; }

  /* Type scale */
  .bts-section-title { font-size: 22px; }
  .bts-cta-band h3 { font-size: 21px; }
  .bts-page-heading { font-size: 19px; padding: 15px 20px; }

  /* Cards: 2-up fits better without the description */
  .bts-card-desc { display: none; }
  .bts-card-body { padding: 12px 14px; gap: 6px; }
  .bts-card-title { font-size: 14px; }
  .bts-card-price { font-size: 17px; }
  .bts-price-badge { font-size: 12px; padding: 4px 10px; top: 8px; right: 8px; }
  .bts-card-foot .bts-btn { width: 100%; }

  /* Less floating clutter: no back-to-top on phones */
  .bts-top-btn { display: none; }

  /* Sticky bar: shown on phones (this rule must live AFTER the section-33
     base "display: none" or it loses the cascade). Book is the filled
     primary action; safe-area padding clears the iPhone home indicator. */
  .bts-mobile-bar { display: flex; padding-bottom: env(safe-area-inset-bottom); }
  .bts-mobile-bar-book { background: var(--red); color: #ffffff !important; }
  .bts-mobile-bar-dir { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

  /* Section rhythm */
  .bts-section-head { margin: 34px 0 4px; }
  .bts-about { margin: 34px 0; }
  .bts-brands { margin: 34px 0; }
}

/* 40. UX POLISH PACK */

/* Header contact module: two elegant phone rows (EN/ES) side by side + Book button */
.bts-phones2 {
  display: flex; flex-direction: row; align-items: stretch; gap: 0;
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 14px; padding: 6px;
  box-shadow: 0 3px 12px rgba(14,46,115,.06);
}
.bts-phone-row {
  display: flex; align-items: center; gap: 11px;
  padding: 7px 16px; border-radius: 10px;
  line-height: 1; white-space: nowrap;
  transition: background var(--trans);
}
.bts-phone-row + .bts-phone-row { border-left: 1px solid var(--border); }
.bts-phone-row:hover { background: #f4f7fd; }
.bts-phone-icon {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-size: 15px;
  box-shadow: 0 3px 9px rgba(0,0,0,.16);
}
.bts-phone-row--en .bts-phone-icon { background: linear-gradient(135deg, var(--blue), var(--blue-dk)); }
.bts-phone-row--es .bts-phone-icon { background: linear-gradient(135deg, var(--red), var(--red-dk)); }
.bts-phone-text { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.bts-phone-label {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.bts-phone-number {
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--blue-dk); letter-spacing: -.01em;
  transition: color var(--trans);
}
.bts-phone-row:hover .bts-phone-number { color: var(--red); }
@media (max-width: 991px) {
  .bts-phones2 { padding: 5px; }
  .bts-phone-row { gap: 9px; padding: 6px 11px; }
  .bts-phone-icon { width: 32px; height: 32px; font-size: 13px; }
  .bts-phone-number { font-size: 15px; }
  .bts-header-right { gap: 12px; }
}

/* Shrinking sticky header — collapse to a slim, balanced bar on scroll:
   logo stays a sensible size and the right side folds into one compact row
   (phones + Book side by side) so the whole header is short and even. */
#bts-logo img { transition: height .25s ease, transform var(--trans), filter var(--trans); }
.bts-header-inner { transition: padding .25s ease; }
.bts-header-right, .bts-phones2, .bts-phone-row, .bts-phone-icon,
.bts-phone-number, .bts-book-btn { transition: all .25s ease; }
#bts-header.is-scrolled .bts-header-inner { padding-top: 8px; padding-bottom: 8px; }
#bts-header.is-scrolled #bts-logo img { height: 82px; }
#bts-header.is-scrolled .bts-header-right { flex-direction: row; gap: 16px; }
#bts-header.is-scrolled .bts-phones2 { padding: 4px; }
#bts-header.is-scrolled .bts-phone-row { padding: 5px 13px; }
#bts-header.is-scrolled .bts-phone-icon { width: 32px; height: 32px; font-size: 13px; }
#bts-header.is-scrolled .bts-phone-number { font-size: 16px; }
#bts-header.is-scrolled .bts-book-btn { padding: 11px 22px; font-size: 13px; }
@media (max-width: 767px) {
  #bts-header.is-scrolled #bts-logo img { height: 56px; }
}

/* Active nav item (persistent gold underline) */
.bts-nav-links > li.active > a { color: var(--gold) !important; }
.bts-nav-links > li.active > a::after { left: 14px; right: 14px; }

/* Keyboard-accessible services dropdown */
.bts-nav-links > li:focus-within .bts-dropdown { display: block; }

/* Open now / Closed now badge */
.bts-open-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 12px !important;
}
.bts-open-badge[hidden] { display: none; }
.bts-open-dot {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block;
  background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.25);
}
.bts-open-badge.is-open, .bts-open-badge.is-open span { color: #4ade80 !important; }
.bts-open-badge.is-closed, .bts-open-badge.is-closed span { color: #f87171 !important; }
.bts-open-badge.is-closed .bts-open-dot { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.22); }
.bts-map-info .bts-open-badge { margin-top: 4px; }
.bts-map-info .bts-open-badge.is-open, .bts-map-info .bts-open-badge.is-open span { color: #16a34a !important; }
.bts-map-info .bts-open-badge.is-closed, .bts-map-info .bts-open-badge.is-closed span { color: #dc2626 !important; }

/* Google reviews credibility row */
.bts-reviews-badge {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; color: var(--muted);
}
.bts-reviews-badge .fa-google { color: #4285f4; font-size: 18px; }
.bts-reviews-stars { color: var(--gold); letter-spacing: 2px; }

/* Shop gallery */
.bts-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.bts-gallery-item {
  display: block; border-radius: var(--r); overflow: hidden;
  height: 400px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.bts-gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bts-gallery-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 35%;
  transition: transform .35s ease;
}
.bts-gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 767px) { .bts-gallery-item { height: 300px; } }

/* Form success feedback (inserted by JS after opening WhatsApp) */
.bts-sent-note { margin-top: 14px; }
.bts-sent-note a { font-weight: 700; text-decoration: underline; }

/* iOS safe area for the sticky bar */
.bts-mobile-bar { padding-bottom: env(safe-area-inset-bottom, 0px); }
@media (max-width: 767px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
}

/* 35. LANGUAGE SWITCH + DUAL PHONES + BOOK CTA */
.bts-lang {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px; padding: 4px 14px;
  color: #ffffff !important; font-weight: 700; font-size: 12px !important;
  transition: background var(--trans), border-color var(--trans);
  white-space: nowrap;
}
.bts-lang:hover { background: rgba(255,255,255,.20); border-color: var(--gold); color: var(--gold) !important; }
.bts-lang i { color: var(--gold); }

.bts-header-right { display: flex; align-items: center; gap: 22px; }
.bts-phones { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.bts-phone {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--red); white-space: nowrap; line-height: 1.15;
}
.bts-phone i { color: var(--blue); font-size: 20px; }
.bts-phone span { display: flex; flex-direction: column; }
.bts-phone small {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.bts-phone-alt { font-size: 12.5px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.bts-phone-alt:hover { color: var(--red); }

.bts-book-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red); color: #ffffff !important;
  border-radius: 50px; padding: 13px 26px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .03em;
  box-shadow: 0 6px 18px rgba(216,31,38,.30);
  transition: background var(--trans), transform var(--trans);
}
.bts-book-btn:hover { background: var(--red-dk); color: #ffffff !important; transform: translateY(-2px); }
.bts-nav-book {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0e2e73 !important;
  border-radius: 50px; padding: 9px 20px; margin: 8px 0;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em;
  transition: background var(--trans);
}
.bts-nav-book:hover { background: #e6b000; color: #0e2e73 !important; }
.bts-dropdown-price { float: right; color: var(--red); font-weight: 700; font-size: 12px; margin-left: 12px; }

/* 36. PRICE BADGES + SERVICE PAGE */
.bts-card-img { position: relative; }
.bts-price-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: #0e2e73;
  border-radius: 50px; padding: 6px 14px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.bts-price-badge--quote { background: var(--blue); color: #ffffff; }
.bts-card-note { font-size: 12.5px; color: #1a7a4a; font-weight: 600; }
.bts-card-note i { margin-right: 5px; }

.bts-service-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; margin-bottom: 52px; }
@media (max-width: 767px) { .bts-service-layout { grid-template-columns: 1fr; gap: 24px; } }
.bts-service-media { border-radius: var(--r); overflow: hidden; background: #f0f3fa; border: 1px solid var(--border); box-shadow: var(--shadow); }
.bts-service-media img { width: 100%; height: auto; display: block; }
.bts-service-title { font-size: 32px; font-weight: 800; color: var(--blue); margin-bottom: 14px; }
.bts-service-price { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.bts-service-price-label {
  background: var(--gold); color: #0e2e73;
  border-radius: 50px; padding: 8px 22px;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 22px;
}
.bts-service-price-note { color: #1a7a4a; font-weight: 700; font-size: 14px; }
.bts-service-desc { font-size: 15.5px; margin-bottom: 20px; }
.bts-service-bullets { margin-bottom: 26px; }
.bts-service-bullets li { padding: 7px 0; font-size: 15px; border-bottom: 1px dashed var(--border); }
.bts-service-bullets li:last-child { border-bottom: none; }
.bts-service-bullets i { color: #1a9a5c; margin-right: 10px; }
.bts-service-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* 37. BOOKING PAGE */
.bts-book-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 900px) { .bts-book-layout { grid-template-columns: 1fr; } }
.bts-book-aside .bts-widget-body ul li a { display: flex; justify-content: space-between; gap: 10px; }
.bts-aside-price { color: var(--red); font-weight: 700; white-space: nowrap; }
.bts-book-embed iframe { border-radius: 12px; }
input[type="date"] { appearance: none; -webkit-appearance: none; min-height: 49px; }

/* 38e. HERO PHOTO ZONE — full-bleed photo BEHIND the floating hero card.
   Desktop uses a fixed backdrop (window/parallax effect) so the strip shows
   a natural view of the photo instead of an arbitrary crop. */
.bts-hero-zone--photo {
  /* -36px top glues the photo strip to the nav (cancels #bts-main padding) */
  margin: -36px calc(50% - 50vw) 48px;
  padding: 44px 28px 52px;
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  position: relative;
}
.bts-hero-zone--photo::before {
  content: ''; position: absolute; inset: 0;
  /* stronger on the left (text side), lighter on the right; soft vignette */
  background:
    linear-gradient(95deg, rgba(6,14,36,.72) 0%, rgba(6,14,36,.45) 45%, rgba(6,14,36,.18) 100%),
    radial-gradient(120% 90% at 50% 45%, rgba(8,18,44,.10) 40%, rgba(8,18,44,.42) 100%);
}
.bts-hero-zone--photo .bts-hero-split {
  position: relative; z-index: 1;
  max-width: calc(var(--max) - 56px);
  margin: 0 auto;
  /* transparent hero: the photo IS the background; elements carry their own body */
  background: none;
  box-shadow: none;
  overflow: visible;
  /* single column — the copy owns the hero, the photo breathes on the right */
  display: block;
}
.bts-hero-zone--photo .bts-hero-copy { max-width: 700px; padding: 26px 0 30px 24px; }
.bts-hero-zone--photo .bts-hero-split::before { display: none; }

/* Element bodies over the photo (glass chips + text shadows) */
.bts-hero-zone--photo .bts-hero-title {
  font-size: 46px;
  text-shadow: 0 3px 22px rgba(0,0,0,.60), 0 1px 3px rgba(0,0,0,.45);
}
.bts-hero-zone--photo .bts-hero-sub {
  color: #eef3ff;
  text-shadow: 0 2px 14px rgba(0,0,0,.65);
  font-weight: 500;
}
.bts-hero-zone--photo .bts-hero-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(6,14,36,.62);
  border: 1px solid rgba(255,196,0,.35);
  padding: 7px 16px; border-radius: 50px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.bts-hero-zone--photo .bts-hero-prices {
  background: rgba(6,14,36,.68);
  border-color: rgba(255,196,0,.60);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.bts-hero-zone--photo .bts-hero-points span {
  background: rgba(6,14,36,.62);
  padding: 7px 14px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.bts-hero-zone--photo .bts-btn-ghost {
  background: rgba(6,14,36,.55);
  border-color: rgba(255,255,255,.70);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
}
.bts-hero-zone--photo .bts-btn-gold { box-shadow: 0 12px 30px rgba(0,0,0,.40); }
.bts-hero-zone--photo .bts-hero-media img { box-shadow: 0 30px 70px rgba(0,0,0,.60); }
@media (max-width: 767px) {
  .bts-hero-zone--photo .bts-hero-title { font-size: 30px; }
}
@media (max-width: 991px) {
  /* fixed attachment is unreliable on mobile browsers */
  .bts-hero-zone--photo { background-attachment: scroll; background-position: center 35%; }
}
@media (max-width: 767px) {
  .bts-hero-zone--photo { padding: 18px 14px 26px; margin-bottom: 30px; }
}

/* 38a. ABOUT + BRANDS (home) */
.bts-about {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 40px 44px; margin: 48px 0;
}
@media (max-width: 900px) { .bts-about { grid-template-columns: 1fr; padding: 26px; gap: 22px; } }
.bts-about-copy p { font-size: 15.5px; color: var(--text); }
.bts-about-copy .bts-btn { margin-top: 8px; }
.bts-about-banner {
  width: 100%; display: block;
  border-radius: 14px;
  border: 4px solid #ffffff;
  box-shadow: 0 16px 40px rgba(16,32,60,.22);
  transform: rotate(-1.4deg);
  transition: transform var(--trans), box-shadow var(--trans);
  margin-bottom: 22px;
}
.bts-about-banner:hover { transform: rotate(0deg) scale(1.01); box-shadow: 0 20px 50px rgba(16,32,60,.30); }
.bts-about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 500px) { .bts-about-points { grid-template-columns: 1fr; } }
.bts-about-points li { display: flex; gap: 12px; align-items: flex-start; }
.bts-about-points i {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  background: #eef3ff; color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.bts-about-points h4 { font-size: 14px; margin-bottom: 2px; }
.bts-about-points p { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.5; }

.bts-brands { text-align: center; margin: 48px 0; }
.bts-brands-head .bts-section-sub { margin-bottom: 22px; }
.bts-brands-marquee {
  overflow: hidden; position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 0; box-shadow: var(--shadow);
  /* soft fade at both edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.bts-brands-track {
  display: flex; align-items: center; gap: 40px;
  width: max-content; padding-left: 40px;
  animation: bts-marquee 42s linear infinite;
}
.bts-brands-marquee:hover .bts-brands-track { animation-play-state: paused; }
.bts-brands-track img {
  /* Uniform slot so every brand takes the same footprint regardless of the
     logo's native size — otherwise the same zoom "reads" bigger on a wide
     wordmark than on a compact mark. object-fit keeps each logo undistorted. */
  width: 130px; height: 46px; object-fit: contain;
  flex-shrink: 0; position: relative;
  filter: grayscale(1); opacity: .7;
  /* short transition softens the hover jump; kept brief so it doesn't lag
     behind the per-frame proximity spotlight set in JS (bindBrandsSpotlight) */
  transition: filter .1s linear, opacity .1s linear, transform .1s linear;
}
/* Fallback for no-JS / reduced-motion: plain hover highlight. Once the JS
   spotlight runs it sets these inline, which take over. */
.bts-brands-track img:hover {
  filter: grayscale(0);
  opacity: 1; transform: scale(1.32) translateY(-7px);
  z-index: 2;
}
@keyframes bts-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .bts-brands-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; padding: 0 20px; }
  .bts-brands-track img[aria-hidden="true"] { display: none; }
}
@media (max-width: 767px) {
  .bts-brands-track { gap: 26px; padding-left: 26px; animation-duration: 30s; }
  .bts-brands-track img { width: 96px; height: 34px; }
}

/* 38d. FLOATING WHATSAPP WIDGETS (flag-badged, one per language) */
.bts-wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 460;
  display: flex; flex-direction: column; gap: 12px;
}
.bts-wa-float-btn {
  position: relative;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #ffffff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform var(--trans), background var(--trans), box-shadow var(--trans);
}
.bts-wa-float-btn:hover {
  background: #1eb857; transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(37,211,102,.55);
}
.bts-wa-flag {
  position: absolute; top: -4px; right: -6px;
  width: 24px; height: 18px; border-radius: 4px; overflow: hidden;
  border: 2px solid #ffffff; box-shadow: 0 2px 6px rgba(0,0,0,.25);
  background: #fff; display: flex;
}
.bts-wa-flag svg { width: 100%; height: 100%; display: block; }
.bts-wa-tip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: #0e2e73; color: #ffffff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 12.5px;
  padding: 6px 14px; border-radius: 50px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: 0 6px 16px rgba(0,0,0,.20);
}
.bts-wa-float-btn:hover .bts-wa-tip,
.bts-wa-float-btn:focus-visible .bts-wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Mobile: the base .bts-wa-float rule above lives after the section-31 media
   query, so it clobbers the responsive values there (the WhatsApp widgets
   ended up at bottom:20px, sitting *behind* the sticky bottom bar). Re-declare
   the responsive placement here so it wins the cascade: lift the widgets clear
   above the bar (~51px + safe area) and use the smaller phone-sized buttons. */
@media (max-width: 767px) {
  .bts-wa-float {
    right: 14px; gap: 10px;
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
  .bts-wa-float-btn { width: 48px; height: 48px; font-size: 24px; }
  .bts-wa-tip { display: none; }
}

/* 38c. TIRE DIVIDER (full-bleed strip before the CTA band) */
html, body { overflow-x: clip; }
.bts-divider {
  height: 150px;
  /* full-bleed; the negative bottom margin swallows #bts-main's padding so
     the tires rest directly on the dark footer */
  margin: 56px calc(50% - 50vw) -64px;
  background-image: url('/images/tire-divider.svg');
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100%;
}
.bts-divider--img {
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center bottom;
  height: auto;
  aspect-ratio: 5.16 / 1; /* overridden inline with the image's real ratio */
  max-height: 380px;
}
@media (max-width: 767px) {
  .bts-divider { height: 96px; margin-top: 30px; }
  /* Image divider: keep height auto so the width stays at 100vw. A fixed
     height + the inline aspect-ratio would resolve the WIDTH from the ratio
     instead (96px x 5.16 = 495px) and overflow the page horizontally. */
  .bts-divider--img { height: auto; }
}

/* 38b. MAP SECTION (home) */
.bts-map-section {
  display: grid; grid-template-columns: 1fr 1.7fr; gap: 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
}
.bts-map-info { padding: 30px 32px; display: flex; flex-direction: column; gap: 18px; }
.bts-map-info p { display: flex; gap: 14px; margin: 0; align-items: flex-start; }
.bts-map-info p i {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  background: #eef3ff; color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.bts-map-info p span { font-size: 14.5px; line-height: 1.55; }
.bts-map-info p small {
  display: block; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.bts-map-info .bts-btn { align-self: flex-start; margin-top: 6px; }
.bts-map-frame { min-height: 340px; }
.bts-map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
@media (max-width: 900px) {
  .bts-map-section { grid-template-columns: 1fr; }
  .bts-map-frame { min-height: 280px; }
}

/* 38. HERO PRICES LINE + CTA ACTIONS */
.bts-hero-prices {
  display: inline-block;
  background: rgba(255,196,0,.14); border: 1px solid rgba(255,196,0,.45);
  color: var(--gold); border-radius: 50px; padding: 8px 20px;
  font-weight: 700; font-size: 14px; margin-bottom: 24px;
}
.bts-hero-prices i { margin-right: 7px; }
.bts-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.bts-mobile-bar-book { color: var(--red); }

@media (max-width: 991px) {
  .bts-phone { font-size: 18px; }
  .bts-book-btn { padding: 11px 18px; font-size: 12px; }
}
@media (max-width: 767px) {
  .bts-header-right { gap: 12px; }
  .bts-phones, .bts-phones2 { display: none; } /* the sticky bar covers calling on mobile */
  .bts-hero-prices { font-size: 12.5px; }
  .bts-service-title { font-size: 26px; }
  .bts-lang { padding: 3px 10px; }
}
