:root {
  --color-primary: #2FA8DE;
  --color-primary-dark: #1B7FB0;
  --color-secondary: #303845;
  --color-text: #6B7280;
  --color-accent: #22C3B6;
  --color-blue: #0B5FA5;
  --color-star: #FFB020;
  --color-bg-soft: #F6F9FC;
  --color-border: #E7EBF0;
  --font-primary: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(20, 30, 50, .06);
  --shadow-md: 0 12px 32px rgba(20, 30, 50, .10);
  --shadow-lg: 0 24px 48px rgba(20, 30, 50, .16);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  font-family: var(--font-primary);
  color: #303845;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-secondary);
}

a { transition: color .2s var(--ease); }

/* Bootstrap 4 has no gap utilities (added in v5) — polyfill the ones we use */
.gap-2 > * + * { margin-left: 0.5rem; }
.gap-3 > * + * { margin-left: 1rem; }
.d-flex.flex-wrap.gap-2 > * { margin-bottom: 0.5rem; }

/* ---------- Header ---------- */
.site-topbar {
  background: var(--color-secondary);
  font-size: 0.82rem;
  padding: 9px 0;
  color: rgba(255,255,255,.7);
}
.site-topbar a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-topbar a:hover { color: #fff; }
.site-topbar .social-link { display: flex; gap: 14px; list-style: none; margin: 0; padding: 0; }
.site-topbar .social-link a { color: rgba(255,255,255,.7); }
.site-topbar .social-link a:hover { color: var(--color-primary); }

.site-navbar {
  padding: 16px 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow .25s var(--ease), padding .25s var(--ease);
}
.site-navbar.is-scrolled { box-shadow: var(--shadow-md); padding: 10px 0; }
.site-navbar .navbar-brand img { height: 46px; transition: height .25s var(--ease); }
.site-navbar.is-scrolled .navbar-brand img { height: 38px; }

.site-nav { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; }
.site-nav > li { position: relative; }
.site-nav > li > a {
  color: var(--color-secondary); text-decoration: none; font-weight: 600; font-size: .95rem;
  padding: 10px 16px; display: inline-block; border-radius: 999px; transition: all .2s var(--ease);
}
.site-nav > li > a:hover, .site-nav > li.active > a { color: var(--color-primary); background: rgba(47,168,222,.09); }
.site-nav .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: #fff;
  box-shadow: var(--shadow-lg); border-radius: var(--radius-md); padding: 10px; min-width: 240px; z-index: 50;
  border: 1px solid var(--color-border);
}
.site-nav li.has-dropdown:hover .dropdown-menu,
.site-nav li.has-dropdown.open .dropdown-menu { display: block; }
.site-nav .dropdown-menu li a {
  display: block; padding: 10px 14px; color: var(--color-secondary); text-decoration: none;
  white-space: nowrap; border-radius: var(--radius-sm); font-weight: 500; font-size: .92rem;
}
.site-nav .dropdown-menu li a:hover { background: var(--color-bg-soft); color: var(--color-primary); }

.site-navbar-actions { display: flex; align-items: center; gap: 22px; }
.site-navbar-actions .phone-block { display: flex; align-items: center; gap: 10px; }
.site-navbar-actions .phone-block i {
  font-size: 1.1rem; color: #fff; background: var(--color-primary);
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.site-navbar-actions .phone-block small { display: block; color: var(--color-text); font-size: 0.68rem; text-transform: uppercase; letter-spacing: .04em; }
.site-navbar-actions .phone-block strong { display: block; font-size: 0.95rem; color: var(--color-secondary); }
.site-navbar-actions a.icon-link {
  color: var(--color-secondary); position: relative; font-size: 1.05rem; text-decoration: none;
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-soft); transition: all .2s var(--ease);
}
.site-navbar-actions a.icon-link:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.site-navbar-actions a.icon-link .badge {
  position: absolute; top: -6px; right: -6px; background: var(--color-accent); color: #fff;
  border-radius: 50%; font-size: 0.62rem; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}

.navbar-toggler-btn {
  display: none; border: 1px solid var(--color-border); background: #fff; border-radius: var(--radius-sm); padding: 9px 11px; cursor: pointer;
}
.navbar-toggler-btn span { display: block; width: 22px; height: 2px; background: var(--color-secondary); margin: 4px 0; border-radius: 2px; }

@media (max-width: 991px) {
  .site-nav { display: none; flex-direction: column; gap: 0; width: 100%; }
  .site-nav.open { display: flex; }
  .site-nav > li { border-bottom: 1px solid var(--color-border); }
  .site-nav > li > a { border-radius: 0; }
  .site-nav .dropdown-menu { position: static; box-shadow: none; display: none; padding-left: 16px; border: none; }
  .site-nav li.has-dropdown.open .dropdown-menu { display: block; }
  .navbar-toggler-btn { display: block; }
  .site-navbar .container { flex-wrap: wrap; }
  .site-navbar-actions { margin-top: 12px; width: 100%; justify-content: space-between; }
}

/* ---------- Page title banner ---------- */
.page-title-banner {
  background: linear-gradient(135deg, var(--color-blue), var(--color-primary));
  color: #fff;
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-title-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 55%);
}
.page-title-banner h1 { font-weight: 800; margin-bottom: 10px; color: #fff; font-size: 2.4rem; position: relative; }
.page-title-banner .breadcrumb-nav { position: relative; font-size: .9rem; }
.page-title-banner .breadcrumb-nav a { color: rgba(255,255,255,.75); text-decoration: none; }
.page-title-banner .breadcrumb-nav a:hover { color: #fff; }
.page-title-banner .breadcrumb-nav span.current { color: #fff; font-weight: 600; }

/* Product-page breadcrumb bar */
.breadcrumb { background: var(--color-bg-soft); padding: 14px 0; padding-left: 5%; font-size: 0.88rem; color: var(--color-text); }
.breadcrumb a { color: var(--color-text); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb .delimiter { margin: 0 8px; opacity: .5; }
.breadcrumb .delimiter::after { content: "/"; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-secondary); color: #A7ADB8; padding: 72px 0 0; }
.site-footer h5 { color: #fff; font-weight: 700; margin-bottom: 20px; font-size: 1rem; letter-spacing: .01em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer a { color: #A7ADB8; text-decoration: none; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--color-primary); }
.site-footer .footer-logo img { height: 52px; margin-bottom: 18px; }
.site-footer .social-link { display: flex; gap: 12px; list-style: none; padding: 0; margin-top: 16px; }
.site-footer .social-link a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; transition: all .2s var(--ease);
}
.site-footer .social-link a:hover { background: var(--color-primary); border-color: var(--color-primary); transform: translateY(-3px); }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding: 22px 0; text-align: center; font-size: 0.85rem; }

.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); z-index: 999; font-size: 1.6rem; text-decoration: none;
  transition: transform .2s var(--ease);
  animation: pulse-wa 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 10px rgba(37,211,102,0); }
}

/* ---------- Section rhythm ---------- */
.section-heading {
  text-align: center;
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-divider {
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 0 auto 40px;
}

.section-pad { padding-top: 80px; padding-bottom: 80px; }

.reveal { opacity: 0; transition: opacity .4s var(--ease); }
.reveal.in-view { opacity: 1; }

/* Hero / product carousels */
.site-carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.site-carousel .site-carousel-track { display: flex; transition: transform 0.6s var(--ease); }
.site-carousel .site-carousel-slide { flex: 0 0 100%; max-width: 100%; }
.site-carousel .site-carousel-slide img { width: 100%; height: auto; display: block; }

.site-carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border: none; border-radius: 50%; width: 42px; height: 42px; cursor: pointer; z-index: 2;
  box-shadow: var(--shadow-sm); transition: all .2s var(--ease); color: var(--color-secondary);
}
.site-carousel-nav:hover { background: var(--color-primary); color: #fff; }
.site-carousel-nav.prev { left: 16px; }
.site-carousel-nav.next { right: 16px; }

/* Product mini-carousels (no rounded corners needed, plain product shots) */
.product-showcase .site-carousel { border-radius: var(--radius-md); background: var(--color-bg-soft); }

/* Full-bleed homepage hero: edge-to-edge, no rounded corners */
.hero-carousel { border-radius: 0; }
.hero-carousel .site-carousel-nav { width: 52px; height: 52px; }
.hero-carousel .site-carousel-nav.prev { left: 24px; }
.hero-carousel .site-carousel-nav.next { right: 24px; }
@media (min-width: 992px) {
  .hero-carousel .site-carousel-nav { width: 60px; height: 60px; font-size: 1.1rem; }
}

/* Icon box cards (Quality/Value/Commitment, What We Offer) */
.icon-box-card {
  padding: 36px 30px;
  height: 100%;
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.icon-box-card.dark {
  background: linear-gradient(160deg, #37414F, var(--color-secondary));
  color: #fff;
  box-shadow: var(--shadow-md);
}
.icon-box-card.dark:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.icon-box-card.dark h3 { color: #fff; }
.icon-box-card.dark p { color: #B7BEC9; margin-bottom: 0; }

.icon-box-card.outline {
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.icon-box-card.outline:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.icon-box-card.outline p { margin-bottom: 0; }

.icon-box-card .icon-box-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.icon-box-card.dark .icon-box-icon { background: rgba(255,255,255,.1); color: #fff; }
.icon-box-card.outline .icon-box-icon { background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); color: #fff; }
.icon-box-card .icon-box-icon svg { width: 28px; height: 28px; fill: currentColor; }
.icon-box-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

/* Success rate counters */
.counter-block { text-align: center; }
.counter-number { font-size: 3rem; font-weight: 800; color: var(--color-blue); line-height: 1; }
.counter-title { color: var(--color-text); margin-top: 8px; font-weight: 500; }

/* Promo banners */
.promo-banner { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.promo-banner img { width: 100%; height: auto; display: block; transition: transform .5s var(--ease); }
.promo-banner:hover img { transform: scale(1.06); }
.promo-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,14,20,.75) 0%, rgba(11,14,20,.05) 55%);
}
.promo-banner .promo-banner-info { position: absolute; left: 28px; bottom: 26px; color: #fff; z-index: 1; }
.promo-banner .promo-banner-info h2 { font-size: 1.4rem; margin-bottom: 6px; color: #fff; }
.promo-banner .promo-banner-info p { margin-bottom: 14px; color: #fff; opacity: .9; }

/* Testimonials */
.testimonial-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  background: #fff;
  transition: all .3s var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.testimonial-card .stars { color: var(--color-star); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card h2 { font-size: 1.05rem !important; margin-bottom: 10px; }
.testimonial-card .testimonial-person { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--color-border); }
.testimonial-card .testimonial-person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-sm); }
.testimonial-card .testimonial-person strong { color: var(--color-secondary); }
.testimonial-card .testimonial-person div div { color: var(--color-text); font-size: .85rem; }

/* Blog cards */
.blog-card { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: #fff; transition: all .3s var(--ease); height: 100%; padding-bottom: 22px; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.blog-card img { width: 100%; height: auto; display: block; }
.blog-card .blog-category { color: var(--color-primary); font-size: 0.75rem; text-transform: uppercase; font-weight: 700; letter-spacing: .06em; margin: 18px 22px 0; }
.blog-card h2, .blog-card h3 { padding: 0 22px; font-size: 1.05rem !important; margin-top: 8px; }
.blog-card > div:not(.blog-category) { padding-left: 22px; padding-right: 22px; }
.blog-card > *:last-child { margin-top: auto; padding-top: 12px; }

/* Buttons */
.btn-brand {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 13px 30px;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(47,168,222,.28);
  transition: all .25s var(--ease);
}
.btn-brand:hover { background: var(--color-primary-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(47,168,222,.36); }

/* Catch native buttons/inputs that don't carry .btn-brand explicitly */
button:not(.navbar-toggler-btn):not(.site-carousel-nav):not(.accordion-toggle-btn):not(.nav-link):not(.cart-remove-btn),
input[type="submit"] {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(47,168,222,.28);
  transition: all .25s var(--ease);
  cursor: pointer;
}
button:not(.navbar-toggler-btn):not(.site-carousel-nav):not(.accordion-toggle-btn):not(.nav-link):not(.cart-remove-btn):hover,
input[type="submit"]:hover {
  background: var(--color-primary-dark); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(47,168,222,.36);
}
#qty-minus, #qty-plus {
  background: var(--color-bg-soft) !important; color: var(--color-secondary) !important;
  box-shadow: none !important; padding: 8px 16px !important; transform: none !important;
}
#qty-minus:hover, #qty-plus:hover { background: var(--color-primary) !important; color: #fff !important; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--color-blue), var(--color-primary-dark));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 85%, rgba(255,255,255,.1), transparent 45%);
}
.cta-banner h2, .cta-banner p { color: #fff; position: relative; }
.cta-banner .btn-brand { background: #fff; color: var(--color-blue); box-shadow: var(--shadow-md); }
.cta-banner .btn-brand:hover { background: #f0f6fb; color: var(--color-blue); }

/* Order / cart tables (cart, checkout summary, account order history) —
   overrides the theme's global `table, table td, table th { border:1px
   solid #ddd }` rule, which otherwise turns these into harsh grid boxes. */
.order-table-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.order-table { width: 100%; border-collapse: collapse; }
.order-table td, .order-table th { white-space: nowrap; }
.order-table td:first-child, .order-table th:first-child { white-space: normal; }
/* Wider tables (cart, order history, order confirmation — 4-5 columns)
   need a min-width so columns stay legible and scroll horizontally on
   narrow screens instead of being crushed. The simpler 2-column checkout
   summary fits mobile widths natively and is left unset on purpose. */
.order-table-wide { min-width: 560px; }
.order-table, .order-table td, .order-table th { border: none; }
.order-table th {
  text-align: left;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-text);
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}
.order-table td { padding: 16px; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.order-table tbody tr:last-child td { border-bottom: none; }
.order-table tbody tr:hover { background: var(--color-bg-soft); }
.order-table tfoot td, .order-table .order-table-total td {
  border-top: 2px solid var(--color-border); border-bottom: none;
  font-weight: 700; background: var(--color-bg-soft);
}
.order-table .qty-input {
  width: 64px; padding: 8px 10px; border: 1px solid var(--color-border);
  border-radius: var(--radius-sm); font-family: inherit; font-size: .92rem;
}

/* Cart row remove button — a plain icon button, not a CTA */
.cart-remove-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; min-height: 0; padding: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border) !important;
  background: #fff !important; color: var(--color-text) !important;
  box-shadow: none !important; font-size: 1.15rem; line-height: 1; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.cart-remove-btn:hover {
  background: #fef2f2 !important; color: #dc2626 !important;
  border-color: #fecaca !important; transform: none;
}
.cart-remove-btn::after { content: none !important; }

/* Forms */
.form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  padding: 12px 16px;
  transition: all .2s var(--ease);
}
.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(47,168,222,.12);
  outline: none;
}

/* Product detail buttons */
#qty-minus, #qty-plus { border-radius: var(--radius-sm) !important; }

/* Tabs / accordion (about, why-choose, knowledge-center) */
.nav-tabs { border: none; gap: 8px; }
.nav-tabs .nav-link {
  border: 1px solid var(--color-border) !important; border-radius: 999px !important;
  color: var(--color-text); font-weight: 600; padding: 10px 22px;
}
.nav-tabs .nav-link.active { background: var(--color-primary) !important; color: #fff !important; border-color: var(--color-primary) !important; }
.tab-content { border: none !important; border-radius: var(--radius-lg); background: var(--color-bg-soft); padding: 32px !important; margin-top: 20px; }

.accordion-item { border: 1px solid var(--color-border); border-radius: var(--radius-md) !important; margin-bottom: 12px; overflow: hidden; }
.accordion-toggle-btn {
  width: 100%; text-align: left; background: #fff; border: none; padding: 18px 22px;
  font-weight: 700; color: var(--color-secondary); cursor: pointer; font-size: 1rem;
}
.accordion-toggle-btn:hover { color: var(--color-primary); }
.accordion-body { padding: 4px 22px 22px; }

/* ---------- 2026 modern refresh ---------- */
:root {
  --color-ink: #172033;
  --color-muted: #64748b;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --ring: rgba(47, 168, 222, .18);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f9fcff 0, #ffffff 420px),
    #fff;
  color: var(--color-ink);
  font-family: "Poppins", var(--font-primary);
}

p { color: var(--color-muted); }

a { color: var(--color-blue); }

a:hover { color: var(--color-primary); text-decoration: none; }

.container { max-width: 1200px; }

.site-topbar {
  background: #08253a;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-topbar .container > .d-flex:first-child a:first-child::before {
  content: "\f019";
  font-family: FontAwesome;
  margin-right: 7px;
}

.site-topbar .container > .d-flex:first-child a:last-child::before {
  content: "\f095";
  font-family: FontAwesome;
  margin-right: 7px;
}

.site-navbar {
  padding: 12px 0;
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(226,232,240,.78);
}

.site-navbar .container {
  min-height: 66px;
}

.site-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  /* background: #fff; */
  /* box-shadow: 0 10px 30px rgba(15, 42, 68, .08); */
}

.site-navbar .navbar-brand img { height: 65px; }

.site-nav > li > a {
  letter-spacing: 0;
  color: #223047;
}

.site-nav > li.active > a,
.site-nav > li > a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
  box-shadow: 0 10px 22px rgba(47,168,222,.26);
}

.site-navbar-actions { gap: 12px; }

.site-navbar-actions .phone-block {
  padding: 8px 13px 8px 8px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

.site-navbar-actions a.icon-link {
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.navbar-toggler-btn { border-radius: 8px; }

.mobile-menu-proxy { display: none; }

.page-title-banner {
  padding: 74px 0 78px;
  background:
    linear-gradient(135deg, rgba(8,37,58,.92), rgba(27,127,176,.86)),
    url("../../local/vthirst-assets/images/knowledge-center-page.png") center/cover;
}

.page-title-banner::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18));
}

.page-title-banner h1 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  letter-spacing: 0;
}

.section-pad { padding-top: clamp(54px, 7vw, 96px); padding-bottom: clamp(54px, 7vw, 96px); }
.section-pad:not(.cta-banner) + .section-pad { padding-top: 0; }
.hero-carousel + .section-pad,
.page-title-banner + .main-archive-product {
  padding-top: clamp(16px, 3vw, 32px);
}

.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: 0;
}

.section-heading + .section-divider,
.section-divider {
  width: 76px;
  height: 5px;
  margin-bottom: 34px;
}

.site-carousel {
  background: #eaf5fb;
  box-shadow: 0 18px 50px rgba(15, 42, 68, .11);
}

body > .site-carousel:first-of-type,
header + .site-carousel,
.hero-carousel {
  border-radius: 0;
  box-shadow: none;
}

.hero-carousel {
  padding: 0;
  background: #08253a;
}

.hero-carousel .site-carousel-slide {
  height: clamp(420px, 42vw, 750px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-carousel .site-carousel-slide::before {
  content: none;
}

.hero-carousel .site-carousel-slide img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  object-fit: fill;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 767px) {
  .hero-carousel {
    padding: 0;
  }

  .hero-carousel .site-carousel-slide {
    height: clamp(260px, 65vw, 380px);
  }

  .hero-carousel .site-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    box-shadow: none;
  }

  .hero-carousel .site-carousel-nav {
    width: 23px;
    height: 27px;
  }
}

@media (min-width: 992px) {
  header + .site-carousel:not(.hero-carousel) .site-carousel-slide img,
  .hero-carousel .site-carousel-slide img { max-height: none; }
}

.site-carousel-nav {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.62);
}

.home-product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 34px rgba(15, 42, 68, .07);
  aspect-ratio: 4 / 3;
  padding: 16px;
}

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

.btn-brand,
button:not(.navbar-toggler-btn):not(.site-carousel-nav):not(.accordion-toggle-btn):not(.nav-link):not(#qty-minus):not(#qty-plus):not(.mobile-menu-proxy):not(.cart-remove-btn),
input[type="submit"],
a.button,
.button {
  min-height: 46px;
  border-radius: 8px !important;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue)) !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
  border: 0 !important;
  box-shadow: 0 12px 24px rgba(27,127,176,.24) !important;
}

.btn-brand:hover,
a.button:hover,
.button:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
}

.btn-brand::after,
a.button::after,
.button::after {
  content: "\f178";
  font-family: FontAwesome;
  font-weight: normal;
}

.icon-box-card,
.testimonial-card,
.blog-card,
.promo-banner,
.tab-content,
.content-area .container > form,
.content-area .container > .row {
  border-radius: 8px;
}

.icon-box-card.outline,
.testimonial-card,
.blog-card {
  border: 1px solid rgba(226,232,240,.9);
  box-shadow: 0 14px 36px rgba(15, 42, 68, .07);
}

.icon-box-card.dark {
  background:
    linear-gradient(150deg, rgba(15, 42, 68, .92), rgba(8, 37, 58, .98)),
    radial-gradient(circle at top right, rgba(34,195,182,.25), transparent 44%);
  border: 1px solid rgba(255,255,255,.09);
}

.icon-box-card .icon-box-icon {
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}

.counter-block {
  padding: 42px 24px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 42px rgba(15, 42, 68, .07);
}

.counter-number {
  color: var(--color-primary-dark);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.promo-banner {
  border-radius: 8px;
  height: clamp(300px, 31vw, 390px);
  background: #08253a;
}

.promo-banner > a {
  display: block;
  height: 100%;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner::before {
  background:
    linear-gradient(0deg, rgba(8,37,58,.88) 0%, rgba(8,37,58,.2) 50%, transparent 75%),
    linear-gradient(90deg, rgba(8,37,58,.55) 0%, rgba(8,37,58,.08) 45%);
}

.promo-banner .promo-banner-info h2,
.promo-banner .promo-banner-info p {
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
}

.form-control,
.input-text,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
  min-height: 48px;
  width: 100%;
  border: 1px solid #d9e3ea !important;
  border-radius: 8px !important;
  background: #fff;
  color: var(--color-ink);
  padding: 12px 14px;
}

textarea.form-control,
textarea { min-height: 128px; }

.form-control:focus,
.input-text:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 5px var(--ring) !important;
  outline: none;
}

.ratio {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #0c2338, #081724);
  border-radius: 8px;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio, 56.25%);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio,
iframe,
.img-fluid.rounded,
img.rounded {
  border-radius: 8px !important;
}

.ratio iframe {
  border: 0;
  box-shadow: 0 18px 46px rgba(15, 42, 68, .1);
}

.site-footer {
  background:
    linear-gradient(145deg, #08253a, #111827);
  color: #b8c4cf;
}

.site-footer .footer-logo {
  display: inline-flex;
  padding: 10px 12px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 18px;
}

.site-footer .footer-logo img {
  margin-bottom: 0;
}

.site-footer .social-link a,
.contact-social .social-link a {
  border-radius: 8px;
}

/* Shop / archive */
.main-archive-product {
  padding: 64px 0 84px;
}

.bwp-sidebar .widget {
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 42, 68, .06);
}

.bwp-sidebar .widget-title,
.bwp-sidebar h3 {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.product-categories li,
.content-products li {
  padding: 10px 0;
  border-bottom: 1px solid #edf2f7;
}

.product-categories li:last-child,
.content-products li:last-child { border-bottom: 0; }

.product-categories a,
.item-title a,
.product-title a {
  color: var(--color-ink);
  text-decoration: none;
}

.product-categories a:hover,
.item-title a:hover,
.product-title a:hover { color: var(--color-primary); }

.price-input label {
  display: block;
  margin-bottom: 12px;
  color: var(--color-muted);
}

.bwp-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
}

ul.products {
  list-style: none;
  padding-left: 0;
}

.operation-tabs-section {
  margin-top: 48px;
}

.operation-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--color-border);
}

.operation-tab-btn {
  padding: 12px 26px;
  border: none;
  background: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.operation-tab-btn:hover {
  color: var(--color-primary);
}

.operation-tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.operation-tab-panel {
  display: none;
}

.operation-tab-panel.active {
  display: block;
}

.operation-subheading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

ul.products.row > li.product {
  margin-bottom: 34px;
}

.products-entry.product-wapper {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 42, 68, .07);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.products-entry.product-wapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(15, 42, 68, .12);
}

.products-thumb {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, #f6fbff, #ffffff);
  display: flex;
  flex-direction: column;
}

.products-list.grid .product-wapper .products-thumb {
  display: flex !important;
  width: 100%;
}

.products-list.grid .product-wapper .products-thumb .product-thumb-hover .wp-post-image,
.products-list.grid .product-wapper .products-thumb .product-thumb-hover img {
  position: static !important;
  inset: auto !important;
  max-width: 100% !important;
  height: 100% !important;
}

.products-thumb img {
  width: 100%;
  height: 100%;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  object-fit: contain;
  transition: transform .35s var(--ease);
}

.product-thumb-hover,
.product-thumb-hover a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(226,232,240,.9);
  overflow: hidden;
}

.products-entry.product-wapper:hover .products-thumb img {
  transform: scale(1.045);
}

.product-button {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.product-button .button,
.product-button button {
  flex: 1 1 120px;
  min-height: 40px;
  padding: 9px 12px !important;
  font-size: .82rem;
}

.product-button .woosw-btn::after {
  content: "\f004";
}

/* Add to cart is disabled site-wide for now; form/markup stays in place
   in case it needs to be re-enabled later. */
.add-to-cart-btn {
  display: none !important;
}

.products-content {
  padding: 0 20px 22px;
}

.product-title {
  min-height: 58px;
  margin: 0 0 12px;
  font-size: .98rem !important;
  line-height: 1.45;
}

.product-title,
.product-title a {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.products-list.grid .product-wapper .products-content,
.products-list.grid .product-wapper .products-content .contents {
  width: 100%;
  min-width: 0;
}

.products-list.grid .product-wapper .products-content h3.product-title,
.products-list.grid .product-wapper .products-content h3.product-title a {
  display: block !important;
  max-width: 100%;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: break-word;
  text-overflow: clip !important;
}

.price,
#product-price {
  color: var(--color-primary-dark) !important;
  font-weight: 800;
}

.bwp-widget-feature-product .item-product {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.bwp-widget-feature-product .item-thumb img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface-soft);
}

/* Product details */
.breadcrumb-noheading .container {
  max-width: 1200px;
}

.breadcrumb {
  margin: 0;
  padding: 18px 0 !important;
  background: transparent;
}

#product-main-image {
  width: 100%;
  height: clamp(360px, 48vw, 560px);
  padding: 34px;
  object-fit: contain;
  background: linear-gradient(180deg, #f5fbff, #fff);
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 48px rgba(15, 42, 68, .08);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.product-gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  min-height: 0 !important;
  padding: 7px !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 8px !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px var(--ring) !important;
}

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

#product-price {
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
}

#variation-select {
  max-width: 420px;
}

.container.section-pad > .row:first-child .col-md-6:last-child form {
  margin: 24px 0 18px;
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 42, 68, .06);
}

.container.section-pad > .row.mt-5 .col-12 {
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15, 42, 68, .06);
}

.container-fluid.section-pad .col-md-3.col-6.text-center a {
  display: block;
  height: 100%;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 34px rgba(15, 42, 68, .06);
}

.container-fluid.section-pad .col-md-3.col-6.text-center img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
}

/* Account, cart, contact */
.content-area .container[style*="max-width:900px"] > .row,
.content-area .container[style*="padding:40px"] {
  padding: clamp(28px, 4vw, 46px) !important;
}

.content-area .container[style*="max-width:900px"] > .row > .col {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 42, 68, .08);
}

.cart-empty.woocommerce-info {
  padding: 34px;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  background: #f0f9ff;
  color: #075985;
  font-weight: 600;
}

.contact-card,
.container.section-pad .col-md-4:has(+ .col-md-8) {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 42, 68, .07);
}

body .social-link {
  list-style: none;
  display: flex;
  gap: 10px;
  padding-left: 0;
}

body .social-link a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eef8fd;
  color: var(--color-primary-dark);
}

body .social-link a:hover {
  background: var(--color-primary);
  color: #fff;
}

.site-topbar .social-link {
  gap: 14px;
}

.site-topbar .social-link a {
  width: auto;
  height: auto;
  display: inline;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,.72);
}

.site-topbar .social-link a:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 991px) {
  .site-navbar .container {
    gap: 12px;
  }

  .site-nav.open {
    margin-top: 12px;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: #fff;
  }

  .site-nav > li > a {
    width: 100%;
    border-radius: 8px;
  }

  .site-navbar-actions {
    justify-content: flex-start;
    gap: 10px;
  }

  .main-archive-product {
    padding-top: 36px;
  }
}

@media (max-width: 767px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .site-topbar .container,
  .site-topbar .d-flex {
    justify-content: center !important;
  }

  .site-topbar {
    font-size: .76rem;
  }

  .site-topbar .social-link {
    display: none !important;
  }

  .site-topbar .container > .d-flex:last-child {
    width: 100%;
    margin-top: 4px;
  }

  .site-navbar-actions .phone-block {
    display: none !important;
  }

  .site-navbar .container {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: relative;
  }

  .site-navbar .navbar-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .navbar-toggler-btn {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    height: 44px;
    background: #08253a !important;
    border-color: #08253a !important;
    box-shadow: 0 12px 24px rgba(8,37,58,.18);
    transform: none !important;
  }

  .navbar-toggler-btn::before {
    content: "\f0c9";
    font-family: FontAwesome;
    color: #fff;
    font-size: 18px;
    line-height: 1;
  }

  .navbar-toggler-btn span {
    display: none !important;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-navbar-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
    margin-top: 0;
  }

  .site-navbar-actions a.icon-link {
    width: 38px;
    height: 38px;
  }

  .container-fluid.section-pad {
    padding-left: 0;
    padding-right: 0;
  }

  .product-title {
    min-height: auto;
    font-size: .9rem !important;
  }

  .products-thumb {
    padding: 12px;
  }

  .products-list.grid .product-wapper .products-thumb {
    min-height: 0;
  }

  .products-thumb img {
    max-height: none;
  }

  #product-main-image {
    height: min(430px, calc(100vw - 32px));
    padding: 20px;
  }

  .product-button {
    display: none;
  }

  .products-list.row,
  ul.products.row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .products-list.row > li,
  ul.products.row > li {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 0;
  }

  .products-content {
    padding: 0 16px 18px;
    max-width: calc(100vw - 48px);
    overflow: hidden;
  }

  .product-title {
    font-size: .84rem !important;
    line-height: 1.35;
    width: calc(100vw - 80px) !important;
    max-width: 300px !important;
  }

  .products-list.grid .product-wapper .products-content h3.product-title,
  .products-list.grid .product-wapper .products-content h3.product-title a {
    width: calc(100vw - 80px) !important;
    max-width: 300px !important;
    word-break: normal;
  }

  .bwp-top-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .promo-banner .promo-banner-info {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .promo-banner .promo-banner-info h2 {
    font-size: 1.1rem;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  .site-footer .footer-bottom {
    padding-bottom: 90px;
  }
}

/* Gallery page */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.gallery-photo { cursor: zoom-in; }

.gallery-item:hover,
.gallery-item:focus-visible {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: fill;
  transition: transform .35s var(--ease);
}

.gallery-item video { object-fit: cover; }

.gallery-photo:hover img {
  transform: scale(1.06);
}

@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gallery-item img,
  .gallery-item video { height: 150px; }
}

/* Gallery lightbox */
body.lightbox-open { overflow: hidden; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 15, 25, .94);
  flex-direction: column;
}

.lightbox.is-open { display: flex; }

.lightbox-toolbar {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.lightbox-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s var(--ease);
}

.lightbox-btn:hover { background: rgba(255,255,255,.24); }
.lightbox-btn[data-lightbox-reset] { font-size: .78rem; font-weight: 600; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: background .2s var(--ease);
}

.lightbox-nav:hover { background: rgba(255,255,255,.24); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

.lightbox-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}

.lightbox-img {
  max-width: 88%;
  max-height: 82vh;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform .18s var(--ease);
  will-change: transform;
}

.lightbox-img.is-panning { transition: none; cursor: grabbing; }
.lightbox-img.is-zoomed { cursor: grab; }

.lightbox-caption {
  padding: 14px 24px 22px;
  text-align: center;
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  min-height: 1.4em;
}

@media (max-width: 575px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: .95rem; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .lightbox-btn { width: 36px; height: 36px; font-size: 1.05rem; }
}
