/* =========================================================================
   bc (bouncer-castle.com) — modern override layer
   Loaded LAST, after all fiora CSS. Keeps the playful brand (sky-blue +
   pink, orange logo) but modernizes execution: cards, shadows, spacing,
   typography, and mobile behaviour. No rewrite of the legacy style.css.
   ========================================================================= */

:root {
  --bc-primary: #2fb3f0;
  --bc-primary-d: #1c94d4;
  --bc-primary-l: #eaf7fe;
  --bc-accent: #ff6fa5;
  --bc-accent-d: #e8437f;
  --bc-ink: #22303c;
  --bc-muted: #64748b;
  --bc-line: #e7edf3;
  --bc-bg: #f5f8fb;
  --bc-radius: 14px;
  --bc-shadow: 0 4px 18px rgba(20, 40, 60, .07);
  --bc-shadow-h: 0 16px 38px rgba(20, 40, 60, .16);
  --bc-sans: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Global ---------- */
body.home-1,
body {
  font-family: var(--bc-sans);
  color: var(--bc-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { transition: color .2s ease; }

img { max-width: 100%; }

/* Container: a touch wider + comfortable gutters on large screens */
@media (min-width: 1200px) {
  .container { width: 1180px; }
}

/* ---------- Header top bar ---------- */
.header-area .header-top {
  background: var(--bc-ink);
}
.header-area .phone { color: #ffd24d; }
.header-area .phone span { color: #e7ecf1; }
.top-bar-menu ul li { border-color: rgba(255, 255, 255, .14); }
.top-bar-menu ul li.last { border-right-color: rgba(255, 255, 255, .14); }
.top-bar-menu ul li a:hover { color: var(--bc-accent); }

/* ---------- Header middle (logo / search / cta) ---------- */
.header-middle { padding: 20px 0; }
.header-middle .logo img { max-height: 62px; width: auto; }

.categorys-product-search {
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: 999px;
  height: 50px;
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  display: flex;
  align-items: center;
}
.categorys-product-search .search-form-cat { flex: 1; display: flex; }
.categorys-product-search .search-form-cat > div { flex: 1; display: flex; align-items: center; padding-left: 8px; }
.categorys-product-search input {
  background: transparent;
  height: 48px;
  padding-left: 14px !important;
  font-size: 15px;
  flex: 1;
}
.categorys-product-search button {
  background: var(--bc-primary);
  color: #fff;
  width: 54px;
  height: 50px;
  margin: 0;
  top: 0;
  padding: 0 !important;
  border-radius: 0 999px 999px 0;
  transition: background .2s ease;
  display: flex; align-items: center; justify-content: center;
}
.categorys-product-search button i { position: static; top: 0; margin: 0; line-height: 1; }
.categorys-product-search button:hover { background: var(--bc-primary-d); color: #fff; }

/* "NEW 2025" cta pill */
.top-cart-wrapper .cart-show,
.top-cart-wrapper .cart-show-full { background: transparent; height: auto; }
.top-cart-wrapper .cart-show-info > a {
  background: var(--bc-accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 6px 16px rgba(255, 111, 165, .35);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.top-cart-wrapper .cart-show:hover { background: transparent; }
.top-cart-wrapper .cart-show:hover .cart-show-info > a {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 111, 165, .45);
}
.top-cart-wrapper .cart-img { display: none; }

/* ---------- Main nav (blue bar) ---------- */
.header-bottom-area { background: transparent; }
.main-menu {
  background: linear-gradient(90deg, var(--bc-primary), var(--bc-primary-d));
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
  overflow: visible;
}
/* top-level items stretch to fill the whole bar (kills the empty blue gap) */
.main-menu nav > ul { display: flex; align-items: stretch; }
.main-menu nav > ul > li { flex: 1 1 0; border-right: 1px solid rgba(255, 255, 255, .16); padding: 0; text-align: center; }
.main-menu nav > ul > li.home-icon { flex: 0 0 auto; }
.main-menu nav > ul > li > a {
  padding: 0 14px; line-height: 50px; letter-spacing: .3px;
  white-space: nowrap; position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* sub-level items keep normal block layout */
.main-menu nav ul li ul li { border-right: 0; }
.main-menu nav ul li ul li a { line-height: 35px; }
.main-menu nav > ul > li:first-child a { border-radius: var(--bc-radius) 0 0 var(--bc-radius); }
.main-menu nav > ul > li:last-child { border-right: 0; }
.main-menu nav > ul > li:last-child > a { border-radius: 0 var(--bc-radius) var(--bc-radius) 0; }
.main-menu nav > ul > li:hover { background: rgba(255, 255, 255, .15); }
/* animated underline accent on hover / active */
.main-menu nav > ul > li > a::after {
  content: ""; position: absolute; left: 22px; right: 22px; bottom: 8px; height: 2px;
  background: #fff; border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform .22s ease; opacity: .9;
}
.main-menu nav > ul > li:hover > a::after,
.main-menu nav > ul > li.active > a::after { transform: scaleX(1); }
.main-menu nav > ul > li.home-icon > a::after { display: none; }

/* home icon: blend into the blue bar as a clean white badge (kill the pink cell) */
.main-menu nav ul li.home-icon {
  background: transparent !important;
  display: flex; align-items: center; justify-content: center;
}
.main-menu nav > ul > li.home-icon a { font-size: 13px; padding: 0 20px; height: 50px; display: flex; align-items: center; justify-content: center; }
.main-menu nav ul li.home-icon a i {
  background: #fff;
  color: var(--bc-primary-d);
  width: 34px; height: 34px;
  line-height: 34px;
  border-radius: 50%;
  top: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
  transition: transform .2s ease;
}
.main-menu nav ul li.home-icon:hover a i { transform: scale(1.08); }
/* neutralise the legacy sliding green ::before bar */
.main-menu nav ul li a::before { display: none !important; }

/* dropdown + mega menu: soft cards */
.sub-menu,
.main-menu ul li .mega-menu {
  background: #fff;
  border-radius: 0 0 var(--bc-radius) var(--bc-radius);
  box-shadow: var(--bc-shadow-h);
  border-top: 3px solid var(--bc-primary);
  padding: 14px 6px;
  margin-top: 0;
}
.main-menu ul li:hover .mega-menu,
.main-menu ul li:hover .sub-menu { transform: translateY(0); }
.main-menu ul li .mega-menu .mega-catagory h4 a { color: var(--bc-ink); }
.main-menu ul li .mega-menu .mega-catagory h4 a:hover,
.main-menu ul li .mega-menu .mega-catagory > a:hover,
.main-menu nav > ul > li .sub-menu > li > a:hover { color: var(--bc-accent); }
.main-menu ul li .mega-menu .mega-catagory > a { color: var(--bc-muted); }
.sub-menu > li { background: #fff; }
.main-menu nav > ul > li .sub-menu > li > a { color: var(--bc-muted); }
.main-menu nav > ul > li .sub-menu > li:hover { background: var(--bc-primary-l); }

/* ---------- Slider spacing ---------- */
.slider-wrap { margin-bottom: 4px; }

/* ---------- Service area: 3 feature cards ---------- */
.service-area-start { background: var(--bc-bg); padding: 30px 0; }
.service-area-start .row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.service-area-start [class*="col-"] { padding: 0 12px; }
.single-service {
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  padding: 26px 24px !important;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  box-shadow: var(--bc-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.single-service:hover { transform: translateY(-4px); box-shadow: var(--bc-shadow-h); }
.single-service .ser-icon { flex: 0 0 auto; }
.single-service .ser-icon img { width: 54px; height: 54px; object-fit: contain; }
.service-info { padding: 0 !important; display: block; }
.service-info h3 { font-size: 18px; margin: 0 0 4px; color: var(--bc-ink); }
.service-info > span { font-size: 14px; color: var(--bc-muted); }

/* ---------- Intro / about banner ---------- */
.banner-area { padding: 42px 0 10px; }
.banner-area .container {
  border: 0 !important;
  background: linear-gradient(180deg, #fff, var(--bc-primary-l));
  border-radius: 20px;
  box-shadow: var(--bc-shadow);
  padding: 8px !important;
  overflow: hidden;
}
.banner-area .container > .row { display: flex; flex-wrap: wrap; align-items: stretch; margin: 0; }
.banner-area .container .col-md-8 { padding: 34px 38px !important; }
.banner-area p {
  color: #45535f;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 14px;
  text-indent: 0 !important;
}
.banner-area p:first-child::first-letter { color: var(--bc-primary-d); }
.banner-area .single-banner { height: 100%; border-radius: 16px; overflow: hidden; }
.banner-area .single-banner p { margin: 0; height: 100%; }
.banner-area .single-banner img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.banner-area .single-banner::before { display: none; }

/* ---------- Section heading helper ---------- */
.tab-area .area-heading,
.popular-posts h3 { position: relative; }

/* ---------- Product tabs ---------- */
.tab-area { padding: 46px 0 20px; }
.tab-area .area-heading {
  border: 0 !important;
  display: inline-flex !important;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--bc-bg);
  padding: 8px;
  border-radius: 999px;
  margin: 0 0 34px !important;
}
.tab-area ul.navs-tab li { border: 0 !important; float: none; }
.tab-area ul li a {
  color: var(--bc-muted);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  transition: all .2s ease;
}
.tab-area ul li.active a,
.tab-area ul li a:hover {
  background: var(--bc-primary);
  color: #fff;
  box-shadow: 0 6px 16px rgba(47, 179, 240, .35);
}

/* product grid cards (tabs + popular share .post-content / .sin-pro-b)
   NOTE: scope the grid flex to the INNER .list-item only. The outer
   .tab-pane also carries class "list-item"; forcing display on it would
   override Bootstrap's tab show/hide and leak every tab's products. */
.tab-area .tab-pane > .list-item { display: flex; flex-wrap: wrap; margin: 0 -12px; text-align: left; }
.tab-area .tab-pane > .list-item [class*="col-"] { padding: 0 12px; float: none; display: flex; }

.sin-pro-b,
.post-content {
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  overflow: hidden;
  box-shadow: var(--bc-shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  width: 100%;
  margin-bottom: 24px;
}
.sin-pro-b:hover,
.post-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--bc-shadow-h);
  border-color: #d4e9f6;
}
.pro-img-b-index,
.post-content > a:first-child {
  display: block;
  overflow: hidden;
  background: #fff;
}
.pro-img-b-index img,
.post-content > a img {
  aspect-ratio: 1 / 1;
  height: auto;
  width: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform .4s ease;
}
.sin-pro-b:hover .pro-img-b-index img,
.post-content:hover > a img { transform: scale(1.05); }

.sin-pro-b p,
.post-content p {
  text-align: center;
  padding: 4px 14px 18px;
  margin: 0;
  border-top: 1px solid var(--bc-line);
}
.sin-pro-b p a,
.post-content p a {
  color: var(--bc-ink);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.4;
  display: block;
  padding-top: 12px;
}
.sin-pro-b p a:hover,
.post-content p a:hover { color: var(--bc-primary-d); }

/* ---------- Popular products carousel ---------- */
.popular-posts { padding: 34px 0 40px; background: var(--bc-bg); }
.popular-posts h3 {
  color: var(--bc-ink);
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  margin: 6px 0 28px;
}
.popular-posts h3::after {
  content: "";
  display: block;
  width: 66px;
  height: 4px;
  border-radius: 4px;
  background: var(--bc-accent);
  margin: 14px auto 0;
}
.post-carousel .p-lr-15px { padding: 0 12px; }
.post-carousel .slick-prev,
.post-carousel .slick-next { z-index: 5; }

/* ---------- Footer ---------- */
.footer-widget-area {
  background: var(--bc-ink);
  padding: 54px 0 30px;
}
.footer-wid-title h3 {
  font-size: 16px;
  letter-spacing: .5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-wid-title h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  border-radius: 3px;
  background: var(--bc-primary);
}
.footer-widget-area ul li { color: #b9c4cf; line-height: 1.6; }
.footer-widget-area ul li a { color: #b9c4cf; }
.footer-widget-area ul li a:hover { color: #fff; text-decoration: none; }
.footer-widget-area .support { color: var(--bc-primary); }
.footer-widget-area .address { color: var(--bc-accent); }

.social-icons.social-icons-big { margin-top: 14px; }
.social-icons.social-icons-big li {
  display: inline-block;
  margin: 0 8px 0 0 !important;
}
.social-icons.social-icons-big li a {
  width: 40px; height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
  display: inline-block;
  font-size: 17px;
  transition: transform .2s ease, background .2s ease;
}
.social-icons.social-icons-big li a:hover { transform: translateY(-3px); background: var(--bc-primary); }

.footer-area .footer-bottom { background: #1a2530; padding: 20px 0; }
.footer-bottom p { color: #8b98a5; line-height: 1.6; margin: 0; }
.footer-bottom .payment-area img { max-height: 30px; }

/* scroll-up */
#scrollUp { background: var(--bc-primary); border-radius: 12px; }

/* =========================================================================
   Responsive / mobile fixes
   ========================================================================= */
@media (max-width: 991px) {
  .header-middle { padding: 16px 0; text-align: center; }
  .header-middle .logo { text-align: center; margin-bottom: 14px; }
  .categorys-product-search { width: 100%; }
  .top-cart-wrapper { width: 100%; margin-top: 12px; text-align: center; }
  .top-cart-wrapper .cart-show { float: none; }
  .banner-area .container .col-md-8 { padding: 26px 22px !important; }
}

@media (max-width: 767px) {
  .header-top .container .row > div { text-align: center; }
  .header-top .phone { padding-top: 8px; }
  .top-bar-menu { line-height: 34px; }
  .top-bar-menu > ul { float: none; text-align: center; }

  .service-area-start .row { display: block; }
  .service-area-start [class*="col-"] { margin-bottom: 14px; }
  .single-service { justify-content: center; text-align: left; }

  .banner-area { padding: 28px 0 4px; }
  .banner-area .container > .row { display: block; }
  .banner-area .container .col-md-8 { padding: 24px 20px !important; }
  .banner-area .single-banner img { height: 220px; }

  .tab-area { padding: 30px 0 10px; }
  .tab-area .area-heading { width: 100%; justify-content: center; border-radius: 16px; }
  .tab-area ul li a { padding: 9px 16px; font-size: 12px; }
  .pro-img-b-index img,
  .post-content > a img { padding: 6px; }
  .sin-pro-b p a,
  .post-content p a { font-size: 13.5px; }

  .popular-posts h3 { font-size: 24px; }

  .footer-widget-area { padding: 40px 0 20px; text-align: center; }
  .footer-wid-title h3::after { left: 50%; transform: translateX(-50%); }
  .social-icons.social-icons-big { text-align: center; }
  .footer-widget-area ul li a:hover { padding-left: 0; }
  .footer-bottom .col-md-6 { text-align: center; }
  .footer-bottom .payment-area { margin-top: 12px; }
}

@media (max-width: 480px) {
  .tab-area .list-item .col-sm-6 { width: 100%; }
}

/* =========================================================================
   INNER PAGES (category / search / product / quote / contact / page)
   ========================================================================= */
.shop-area-wrapper { padding: 34px 0 50px; background: #fff; }
.breadcrumbs { background: var(--bc-bg); }
.breadcrumbs .nav-a { font-size: 15px !important; padding: 16px 0 !important; color: var(--bc-muted) !important; }
.breadcrumbs .nav-a a { color: var(--bc-primary-d); }
.breadcrumbs .nav-a a:hover { color: var(--bc-accent); }

/* ---- Left category sidebar as a clean card ---- */
.leftsidebar-shop .category-wrap.bg-color {
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
  padding: 6px 16px 18px;
}
/* group heading: accent bar + uppercase label, no dated brackets */
.leftsidebar-shop .sidebar-heading h3 {
  color: var(--bc-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: capitalize;
  margin: 22px 0 10px;
  padding: 0 0 0 12px;
  border: 0;
  position: relative;
  line-height: 1.3;
}
.leftsidebar-shop .sidebar-heading:first-child h3 { margin-top: 8px; }
.leftsidebar-shop .sidebar-heading h3::before {
  content: "";
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 4px; border-radius: 4px;
  background: linear-gradient(180deg, var(--bc-primary), var(--bc-accent));
}
.leftsidebar-shop .cat-list ul { margin: 0 0 4px; padding: 0; }
.leftsidebar-shop .cat-list li {
  border: 0;
  font-size: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.leftsidebar-shop .cat-list li::before { display: none; }
.leftsidebar-shop .cat-list li a {
  display: block;
  color: #55617a;
  padding: 8px 12px;
  border-radius: 9px;
  position: relative;
  transition: background .18s ease, color .18s ease, padding .18s ease;
}
.leftsidebar-shop .cat-list li a::before {
  content: "\f105"; /* fa angle-right */
  font-family: "FontAwesome";
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  opacity: 0;
  color: var(--bc-primary);
  transition: opacity .18s ease, left .18s ease;
}
.leftsidebar-shop .cat-list li a:hover,
.leftsidebar-shop .cat-list li:hover > a {
  background: var(--bc-primary-l);
  color: var(--bc-primary-d);
  padding-left: 26px;
}
.leftsidebar-shop .cat-list li a:hover::before,
.leftsidebar-shop .cat-list li:hover > a::before { opacity: 1; left: 13px; }
/* nested sub-items sit slightly indented, lighter */
.leftsidebar-shop .cat-list li ul { padding-left: 10px !important; margin-top: 2px; }
.leftsidebar-shop .cat-list li ul li a { font-size: 13.5px; color: #6b7688; padding-top: 6px; padding-bottom: 6px; }
/* active category */
.leftsidebar-shop .cat-list li a.current {
  background: linear-gradient(90deg, var(--bc-primary), var(--bc-primary-d));
  color: #fff;
  font-weight: 700;
  padding-left: 26px;
  box-shadow: 0 6px 14px rgba(47, 179, 240, .32);
}
.leftsidebar-shop .cat-list li a.current::before { opacity: 1; left: 13px; color: #fff; }

/* ---- Content card (contact / quote / page / static) ---- */
.blog-area-wrapper .sin-blog {
  background: #fff;
  border: 1px solid var(--bc-line);
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow);
  padding: 8px 30px 30px;
}
.blog-area-wrapper .blog-title {
  font-size: 26px !important;
  color: var(--bc-ink);
  padding: 22px 0 10px !important;
  position: relative;
}
.blog-area-wrapper .blog-title::after {
  content: ""; display: block; width: 60px; height: 4px; border-radius: 4px;
  background: var(--bc-accent); margin: 12px auto 0;
}
.blog-area-wrapper .blog-content { color: #45535f; font-size: 15px; line-height: 1.85; }
.blog-area-wrapper .blog-content p { margin-bottom: 12px; }
.blog-area-wrapper .blog-content a { color: var(--bc-primary-d); }

/* ---- Product grid (category / search): image + title inside card ---- */
.pro-list [class*="col-"] { margin-bottom: 6px; }
.pro-list .sin-pro-b {
  margin: 0 0 0 !important;
  padding-bottom: 6px;
}
.pro-list .sin-pro-b .pro-img-b { overflow: hidden; }
.pro-list .sin-pro-b .pro-img-b img {
  aspect-ratio: 1 / 1; height: auto; width: 100%; object-fit: contain; padding: 8px;
  transition: transform .4s ease;
}
.pro-list .sin-pro-b:hover .pro-img-b img { transform: scale(1.05); }
.pro-list .sin-pro-b h2 {
  font-size: 15px !important;
  margin: 0 !important;
  padding: 14px 14px 16px !important;
  border-top: 1px solid var(--bc-line);
  line-height: 1.4;
}
.pro-list .sin-pro-b h2 a { color: var(--bc-ink); font-weight: 600; }
.pro-list .sin-pro-b h2 a:hover { color: var(--bc-primary-d); }

/* ---- Pagination ---- */
.shop-pagination { border-top: 1px solid var(--bc-line); text-align: center; }
.page-numbers > li > a {
  border: 1px solid var(--bc-line);
  border-radius: 8px;
  color: var(--bc-primary-d);
  min-width: 38px; line-height: 36px;
  margin: 0 3px;
  transition: all .2s ease;
}
.page-numbers > li > a.current,
.page-numbers > li > a:hover { background: var(--bc-primary); border-color: var(--bc-primary); color: #fff; }

/* ---- Forms (contact / quote) ---- */
.contact-form table { width: 100%; max-width: 620px; margin: 0 auto; }
.contact-form .tdgbadd { color: var(--bc-ink); font-weight: 600; font-size: 14px; white-space: nowrap; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-width: 240px;
  border: 1px solid var(--bc-line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  background: #fff;
  color: var(--bc-ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bc-primary);
  box-shadow: 0 0 0 3px rgba(47, 179, 240, .16);
}
.contact-form input[type="submit"] {
  background: linear-gradient(90deg, var(--bc-primary), var(--bc-primary-d));
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 13px 46px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .4px;
  cursor: pointer;
  min-width: 0;
  width: auto;
  box-shadow: 0 8px 20px rgba(47, 179, 240, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-form input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47, 179, 240, .45); }
/* country-select widget fits the rounded input */
.contact-form .country-select { width: 100%; }
.contact-form .country-select .selected-flag { border-radius: 10px 0 0 10px; }

/* quote cart table */
.contact-form .card-body table { max-width: 100%; }
.contact-form .card-body table thead th { color: var(--bc-muted); font-weight: 700; border-bottom: 2px solid var(--bc-line); padding: 8px; }
.contact-form .card-body table td { border-bottom: 1px solid var(--bc-line); }
.contact-form .card-body img { border-radius: 8px; border: 1px solid var(--bc-line); }
.contact-form .card-body input[type="number"] { min-width: 0; width: 76px; text-align: center; }
#goBackLink.bton {
  display: inline-block; border-radius: 999px !important; padding: 8px 20px;
  color: #fff; font-weight: 600; text-decoration: none;
}

/* ---- Product detail ---- */
.single-product-area { padding: 26px 0 10px; }
.single-product-area #preview {
  background: #fff; border: 1px solid var(--bc-line); border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow); padding: 16px;
}
.single-product-area .jqzoom img { width: 100%; height: auto; border-radius: 8px; }
#spec-list .list-h { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0 0; margin: 0; list-style: none; }
#spec-list .list-h li { width: 74px; height: 74px; border: 1px solid var(--bc-line); border-radius: 8px; overflow: hidden; cursor: pointer; }
#spec-list .list-h li img { width: 100%; height: 100%; object-fit: cover; }

.prod-list-detail { padding: 4px 0 0 6px; }
.prod-info .pro-title a { font-size: 27px; font-weight: 800; color: var(--bc-ink); display: block; padding-bottom: 18px; line-height: 1.3; }
.prod-info .pro-title a:hover { color: var(--bc-ink); cursor: default; }

/* spec list */
.prod-info .prod-spec { list-style: none; margin: 0 0 18px; padding: 0; border: 1px solid var(--bc-line); border-radius: var(--bc-radius); overflow: hidden; }
.prod-info .prod-spec li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--bc-line); }
.prod-info .prod-spec li:last-child { border-bottom: 0; }
.prod-info .prod-spec li:nth-child(odd) { background: var(--bc-bg); }
.prod-info .prod-spec .spec-label { color: var(--bc-muted); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.prod-info .prod-spec .spec-label i { color: var(--bc-primary); width: 16px; text-align: center; }
.prod-info .prod-spec .spec-val { color: var(--bc-ink); font-weight: 700; font-size: 14.5px; text-align: right; }

/* category badges */
.prod-info .prod-cats { margin: 0 0 20px; }
.prod-info .badge.badge-info { background: var(--bc-primary-l); color: var(--bc-primary-d); border-radius: 999px; padding: 6px 14px; font-weight: 600; font-size: 12.5px; margin: 0 6px 6px 0; display: inline-block; }

/* CTA buttons */
.prod-info .actions { margin: 4px 0 24px; }
.prod-info .actions .add-to-cart { display: flex; flex-wrap: wrap; gap: 12px; }
.prod-info .actions .add-to-cart a {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; padding: 13px 30px; border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.prod-info .actions .add-to-cart a.wish {
  background: linear-gradient(135deg, var(--bc-primary), var(--bc-primary-d)); color: #fff;
  box-shadow: 0 8px 20px rgba(20, 120, 200, .30);
}
.prod-info .actions .add-to-cart a.wish:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(20, 120, 200, .42); color: #fff; }
.prod-info .actions .add-to-cart a.com {
  background: #25d366; color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .28);
}
.prod-info .actions .add-to-cart a.com:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 211, 102, .45); color: #fff; }
.prod-info .actions .add-to-cart a i { font-size: 16px; }

/* trust strip */
.prod-info .prod-trust { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--bc-line); display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.prod-info .prod-trust li { display: flex; align-items: center; gap: 10px; color: #45535f; font-size: 13.5px; font-weight: 600; }
.prod-info .prod-trust li i { color: var(--bc-primary-d); font-size: 16px; width: 20px; text-align: center; flex: 0 0 auto; }

/* description feature checklist */
.product-review-area .con .content { margin-bottom: 6px; }
.pr-features-title { font-size: 17px; font-weight: 800; color: var(--bc-ink); margin: 22px 0 14px; padding-top: 18px; border-top: 1px solid var(--bc-line); }
.prod-features { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.prod-features li { position: relative; padding-left: 28px; color: #45535f; font-size: 14px; line-height: 1.6; }
.prod-features li::before {
  content: "\f058"; font-family: "FontAwesome"; color: #16b981;
  position: absolute; left: 0; top: 1px; font-size: 15px;
}
@media (max-width: 767px) {
  .prod-info .prod-trust,
  .prod-features { grid-template-columns: 1fr; }
  .prod-info .actions .add-to-cart { gap: 10px; align-items: stretch; }
  .prod-info .actions .add-to-cart a,
  .prod-info .actions .add-to-cart a.com.dis-block {
    flex: 1 1 0; min-width: 0; margin: 0 !important;
    height: 46px; padding: 0 12px; gap: 7px;
    font-size: 14px; line-height: 1;
  }
  .prod-info .actions .add-to-cart a i { font-size: 15px; line-height: 1; height: auto; }
}

/* review tabs -> horizontal, carded */
.product-review-area { padding: 20px 0 10px; }
.product-review-area .review-wrapper { border: 1px solid var(--bc-line); border-radius: var(--bc-radius); overflow: hidden; box-shadow: var(--bc-shadow); }
.product-review-area .review-menu { float: none; width: 100%; display: flex; flex-wrap: wrap; background: var(--bc-bg); }
.review-menu > li { background: transparent; border-bottom: 0; padding: 0; }
.review-menu > li a { color: var(--bc-muted); line-height: 52px; font-size: 15px; padding: 0 26px; }
.review-menu > li.active { background: #fff; }
.review-menu > li.active a { color: var(--bc-primary-d); }
.review-menu > li:hover { background: rgba(47, 179, 240, .08); }
.review-menu > li:hover a { color: var(--bc-primary-d); }
.product-review-area .con { padding: 24px 28px; color: #45535f; line-height: 1.85; }
.product-review-area .con li { line-height: 1.7; margin-bottom: 6px; }

/* modules table */
.table-responsive .table { border-radius: var(--bc-radius); overflow: hidden; }
.table-responsive .table thead th { background: var(--bc-ink); color: #fff; border: 0; font-weight: 600; }
.table-responsive .table.table-striped tbody tr:nth-child(odd) { background: var(--bc-bg); }
.table-responsive .table td, .table-responsive .table th { vertical-align: middle; }

/* related products */
.related-product { background: var(--bc-bg); padding: 34px 0 44px; margin-top: 24px; }
.related-product h3 { text-align: center; font-size: 26px; font-weight: 800; color: var(--bc-ink); margin-bottom: 26px; text-transform: capitalize; }
.related-product h3::after { content: ""; display: block; width: 60px; height: 4px; border-radius: 4px; background: var(--bc-accent); margin: 12px auto 0; }
.sin-rel-pro { background: #fff; border: 1px solid var(--bc-line); border-radius: var(--bc-radius); box-shadow: var(--bc-shadow); overflow: hidden; margin: 0 8px; transition: transform .25s ease, box-shadow .25s ease; }
.sin-rel-pro:hover { transform: translateY(-5px); box-shadow: var(--bc-shadow-h); }
.sin-rel-pro img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: contain; padding: 8px; }
.sin-rel-pro .pro-desc { border-top: 1px solid var(--bc-line); padding: 12px 14px; text-align: center; }
.sin-rel-pro .pro-title a { color: var(--bc-ink); font-weight: 600; font-size: 14.5px; }
.sin-rel-pro .pro-title a:hover { color: var(--bc-primary-d); }

/* inner-page responsive */
@media (max-width: 991px) {
  .single-product-area .col-md-6 { margin-bottom: 22px; }
  .review-menu > li a { padding: 0 16px; font-size: 14px; }
}
@media (max-width: 767px) {
  .leftsidebar-shop { margin-top: 26px; }
  .blog-area-wrapper .sin-blog { padding: 8px 18px 22px; }
  .contact-form .tdgbadd { display: block; text-align: left !important; padding: 10px 0 4px; }
  .contact-form table, .contact-form tbody, .contact-form tr, .contact-form td { display: block; width: 100%; }
  .contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea { min-width: 0; }
  .pro-list .sin-pro-b .pro-img-b img { padding: 6px; }
}

/* grid gutter for category/search product columns */
.pro-list .no-padding { padding-left: 10px !important; padding-right: 10px !important; }

/* ---- USA/EU warehouse in-stock grid (page.dwt) ---- */
.wh-instock { margin-top: 24px; }
.wh-instock-title {
  font-size: 22px; font-weight: 800; color: var(--bc-ink);
  text-align: center; margin: 10px 0 26px; position: relative;
}
.wh-instock-title::after {
  content: ""; display: block; width: 60px; height: 4px; border-radius: 4px;
  background: var(--bc-accent); margin: 12px auto 0;
}
.wh-instock-grid { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.wh-instock-grid > [class*="col-"] { padding: 0 10px; margin-bottom: 20px; display: flex; }
.wh-card { width: 100%; margin-bottom: 0 !important; }
.wh-card .pro-img-b { position: relative; overflow: hidden; }
.wh-card .pro-img-b img { aspect-ratio: 1 / 1; height: auto; width: 100%; object-fit: contain; padding: 8px; transition: transform .4s ease; }
.wh-card:hover .pro-img-b img { transform: scale(1.05); }
.wh-badge {
  position: absolute; top: 12px; left: 0; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px 5px 10px; color: #fff; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .3px; pointer-events: none;
  -webkit-clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 0 100%);
}
.wh-badge i { font-size: 11px; }
.wh-badge--stock { background: linear-gradient(135deg, #16b981, #0f9a6a); }
.wh-badge--soon { background: linear-gradient(135deg, #ff9f43, #f4791f); }
.wh-card-info { padding: 12px 14px 16px; border-top: 1px solid var(--bc-line); text-align: center; }
.wh-card-info h2 { font-size: 14.5px !important; margin: 0 0 8px !important; padding: 0 !important; border: 0 !important; line-height: 1.4; }
.wh-card-info h2 a { color: var(--bc-ink); font-weight: 600; }
.wh-card-info h2 a:hover { color: var(--bc-primary-d); }
.wh-price { display: flex; align-items: baseline; justify-content: center; gap: 8px; }
.wh-price-now { color: var(--bc-accent-d); font-size: 18px; font-weight: 800; }
.wh-price-old { color: var(--bc-muted); font-size: 13px; text-decoration: line-through; }
@media (max-width: 767px) {
  .wh-card .pro-img-b img { padding: 6px; }
}

/* ---- Product main image: hover magnify + click-to-enlarge ---- */
.single-product-area #preview .jqzoom {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 8px;
}
.single-product-area #preview .jqzoom img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .12s ease-out;
  will-change: transform;
}
.single-product-area #preview .jqzoom.bc-zoomed img { transform: scale(2.2); }
.single-product-area #preview .jqzoom .bc-zoom-hint {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(34, 48, 60, .78); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; pointer-events: none;
  opacity: .9; transition: opacity .2s ease;
}
.single-product-area #preview .jqzoom.bc-zoomed .bc-zoom-hint { opacity: 0; }

/* fullscreen lightbox */
.bc-lightbox {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(15, 23, 32, .92);
  display: flex; align-items: center; justify-content: center;
  padding: 30px; opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.bc-lightbox.open { opacity: 1; visibility: visible; }
.bc-lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.bc-lightbox__close {
  position: absolute; top: 18px; right: 28px;
  color: #fff; font-size: 38px; line-height: 1; cursor: pointer;
  opacity: .85; transition: opacity .2s ease;
}
.bc-lightbox__close:hover { opacity: 1; }
@media (max-width: 767px) {
  /* touch: skip hover magnify, keep tap-to-enlarge */
  .single-product-area #preview .jqzoom.bc-zoomed img { transform: none; }
  .single-product-area #preview .jqzoom { cursor: pointer; }
}

/* ---- Quote page: distinct "request a quote for selected products" framing ---- */
.quote-intro {
  text-align: center; color: var(--bc-muted); font-size: 15px;
  max-width: 620px; margin: 0 auto 6px; line-height: 1.7;
}
.quote-section-title, .contact-section-title {
  font-size: 16px; font-weight: 800; color: var(--bc-ink);
  margin: 26px 0 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--bc-line);
  display: flex; align-items: center; gap: 9px;
}
.quote-section-title i, .contact-section-title i { color: var(--bc-primary); }
.quote-empty {
  text-align: center; padding: 34px 20px;
  background: var(--bc-bg); border: 1px dashed #cfe0ee; border-radius: var(--bc-radius);
  margin: 8px 0 6px;
}
.quote-empty i { font-size: 40px; color: var(--bc-primary); opacity: .8; }
.quote-empty p { color: var(--bc-muted); font-size: 15px; line-height: 1.7; max-width: 460px; margin: 14px auto 18px; }
.quote-browse-btn {
  display: inline-block; background: linear-gradient(90deg, var(--bc-primary), var(--bc-primary-d));
  color: #fff; font-weight: 700; padding: 11px 30px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(47, 179, 240, .32); transition: transform .2s ease, box-shadow .2s ease;
}
.quote-browse-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(47, 179, 240, .42); }

/* ---- Product gallery: left/right nav arrows ---- */
.single-product-area #preview .jqzoom .bc-nav-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .88); color: var(--bc-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; z-index: 6;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
  transition: background .2s ease, color .2s ease, transform .2s ease, opacity .2s ease;
}
.single-product-area #preview .jqzoom .bc-nav-arrow.prev { left: 10px; }
.single-product-area #preview .jqzoom .bc-nav-arrow.next { right: 10px; }
.single-product-area #preview .jqzoom .bc-nav-arrow:hover {
  background: var(--bc-primary); color: #fff; transform: translateY(-50%) scale(1.08);
}
.single-product-area #preview .jqzoom.bc-zoomed .bc-nav-arrow { opacity: .35; }
.single-product-area #preview .jqzoom.bc-zoomed .bc-nav-arrow:hover { opacity: 1; }
/* active thumbnail */
#spec-list .list-h li.bc-thumb-active { border-color: var(--bc-primary); box-shadow: 0 0 0 2px rgba(47, 179, 240, .3); }

/* rounded corners on all product tile images for a cohesive look */
.pro-img-b-index img,
.post-content > a img,
.pro-list .sin-pro-b .pro-img-b img,
.sin-rel-pro img,
.wh-card .pro-img-b img { border-radius: 12px; }

/* =========================================================================
   Mobile polish — compact header + denser grids (bc)
   ========================================================================= */
@media (max-width: 767px) {
  /* fiora responsive.css 把 .container 死锁成 300px/450px → 手机端全站内容被挤窄。改回流式满宽。 */
  .container { width: auto !important; padding-left: 14px; padding-right: 14px; }

  /* compact dark top bar */
  .header-area .header-top { padding: 3px 0; }
  .header-top .phone { padding-top: 4px !important; font-size: 12px; }
  .top-bar-menu { line-height: 30px; }
  .top-bar-menu ul li { padding: 0 10px; font-size: 12px; }

  /* smaller logo + tighter middle band */
  .header-middle { padding: 12px 0 8px; }
  .header-middle .logo img { max-height: 44px; }

  /* search a touch shorter */
  .categorys-product-search { height: 46px; }
  .categorys-product-search input { height: 44px; }
  .categorys-product-search button { height: 46px; width: 50px; }

  /* NEW 2025: smaller pill, less vertical space */
  .top-cart-wrapper { margin-top: 6px; }
  .top-cart-wrapper .cart-show-info > a { padding: 9px 22px; font-size: 13px; }

  /* mobile menu bar tighter */
  .mean-bar { min-height: 46px; padding: 4px 12px !important; }

  /* section vertical rhythm tighter */
  .service-area-start { padding: 16px 0; }
  .single-service { padding: 16px 18px !important; gap: 14px; }
  .single-service .ser-icon img { width: 44px; height: 44px; }
  .service-info h3 { font-size: 16px; }
  .service-info > span { font-size: 13px; }
  .banner-area { padding: 20px 0 2px; }
  .tab-area { padding: 22px 0 6px; }
  .popular-posts { padding: 22px 0 28px; }

  /* denser 2-column product grid on category / search */
  .pro-list { display: flex; flex-wrap: wrap; }
  .pro-list [class*="col-"] { width: 50%; float: none; display: flex; padding-left: 6px !important; padding-right: 6px !important; }
  .pro-list .sin-pro-b { width: 100%; }
  .pro-list .sin-pro-b .pro-img-b img { padding: 6px; }
  .pro-list .sin-pro-b h2 { font-size: 12.5px !important; padding: 9px 8px 11px !important; }

  /* homepage product tabs: one card per row, centered (not edge-to-edge) */
  .tab-area .tab-pane > .list-item { margin: 0; }
  .tab-area .tab-pane > .list-item .col-sm-6 { width: 100%; padding: 0; display: flex; justify-content: center; }
  .tab-area .tab-pane > .list-item .col-sm-6 .sin-pro-b { max-width: 330px; width: 100%; margin: 0 auto 18px; }
  .sin-pro-b p a, .post-content p a { font-size: 14px; }

  /* keep the homepage tab row within the container padding (not flush to edges) */
  .tab-area .row { margin-left: 0; margin-right: 0; }

  /* product-type selector: 2 per row — old-school float grid (bulletproof vs legacy nav rules) */
  .tab-area .area-heading {
    display: block !important; overflow: hidden;
    width: 100%; background: transparent; border-radius: 0;
    padding: 0; text-align: left; margin: 0 0 22px !important;
  }
  .tab-area ul.navs-tab li {
    display: block !important; float: left !important;
    width: 50%; box-sizing: border-box;
    padding: 0 4px 8px !important; margin: 0 !important; border: 0 !important;
  }
  .tab-area ul.navs-tab li:nth-child(odd) { clear: left; }
  .tab-area ul.navs-tab li a {
    display: flex; align-items: center; justify-content: center; text-align: center;
    width: 100%; min-height: 46px; padding: 8px 8px; box-sizing: border-box;
    font-size: 12px; line-height: 1.2; white-space: normal;
    border-radius: 12px; background: #fff; color: var(--bc-ink);
    border: 1px solid var(--bc-line); box-shadow: none;
  }
  .tab-area ul.navs-tab li.active a,
  .tab-area ul.navs-tab li a:hover {
    background: var(--bc-primary); color: #fff; border-color: var(--bc-primary);
    box-shadow: 0 4px 12px rgba(47, 179, 240, .3);
  }
}
@media (max-width: 380px) {
  .top-bar-menu ul li { padding: 0 6px; font-size: 11px; }
  .header-top .phone { font-size: 11px; }
}

/* =========================================================================
   Floating contact FAB (WhatsApp + Contact Us) — fixed bottom-right, all pages
   ========================================================================= */
.bc-fab {
  position: fixed; right: 16px; bottom: 90px; z-index: 9998;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.bc-fab__btn {
  display: inline-flex; align-items: center;
  height: 52px; width: 52px; padding: 0;
  border-radius: 999px; overflow: hidden;
  color: #fff; text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  transition: width .25s ease, transform .2s ease, box-shadow .2s ease;
}
.bc-fab__btn i { flex: 0 0 52px; width: 52px; text-align: center; line-height: 52px; font-size: 24px; }
.bc-fab__label { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 700; font-size: 14px; transition: max-width .25s ease, opacity .2s ease, padding .25s ease; }
.bc-fab__btn:hover { width: auto; color: #fff; transform: translateY(-2px); }
.bc-fab__btn:hover .bc-fab__label { max-width: 150px; opacity: 1; padding-right: 20px; }
.bc-fab__wa { background: #25d366; }
.bc-fab__wa:hover { box-shadow: 0 10px 26px rgba(37, 211, 102, .5); }
.bc-fab__contact { background: linear-gradient(135deg, var(--bc-accent), var(--bc-accent-d)); }
.bc-fab__contact:hover { box-shadow: 0 10px 26px rgba(255, 111, 165, .5); }
/* keep the scroll-to-top button clear of the FAB: park it bottom-LEFT */
#scrollUp { left: 16px !important; right: auto !important; }
@media (max-width: 767px) {
  .bc-fab { right: 12px; bottom: 78px; gap: 10px; }
  .bc-fab__btn { height: 48px; width: 48px; }
  .bc-fab__btn i { flex-basis: 48px; width: 48px; line-height: 48px; font-size: 22px; }
  .bc-fab__btn:hover { width: 48px; }           /* mobile: stay round, icon-only */
  .bc-fab__label { display: none; }
}

/* =========================================================================
   Bigger hero/banner on mobile (panoramic image was only ~90px tall)
   ========================================================================= */
@media (max-width: 767px) {
  .slider-wrap, .slider-area { height: 175px !important; overflow: hidden; }
  #ensign-nivoslider { height: 175px !important; position: relative; overflow: hidden; }
  /* nivo's fade fades the source <img>s (opacity). Stack them absolutely at 0,0 so they OVERLAP
     (not tile vertically = the "doubled" banner), each 175px cover. Fade/arrow switching keeps working. */
  #ensign-nivoslider > img,
  #ensign-nivoslider .nivo-main-image {
    position: absolute !important; top: 0 !important; left: 0 !important;
    width: 100% !important; height: 175px !important; object-fit: cover; object-position: center;
  }
  #ensign-nivoslider .nivo-slice, #ensign-nivoslider .nivo-box { background-size: cover !important; background-position: center !important; }
}

/* search now fills its column (NEW pill moved to the top bar) */
.header-middle .categorys-product-search { width: 100%; float: none; }

/* top-bar "New 2026" highlighted pill link */
.top-bar-menu li.topbar-new { border-left: 0 !important; padding: 0 10px; }
.top-bar-menu li.topbar-new a {
  display: inline-block; margin: 7px 0;
  background: linear-gradient(135deg, var(--bc-accent), var(--bc-accent-d));
  color: #fff !important; font-weight: 700;
  padding: 0 15px; line-height: 26px; border-radius: 999px;
  box-shadow: 0 3px 10px rgba(255, 111, 165, .3);
  transition: box-shadow .2s ease, transform .2s ease;
}
.top-bar-menu li.topbar-new a i { color: #ffe08a; margin-right: 5px; }
.top-bar-menu li.topbar-new a:hover { color: #fff !important; transform: translateY(-1px); box-shadow: 0 5px 14px rgba(255, 111, 165, .45); }
@media (max-width: 767px) {
  .top-bar-menu li.topbar-new a { margin: 4px 0; line-height: 24px; padding: 0 13px; font-size: 12px; }
}

/* =========================================================================
   Mobile menu (meanmenu): expand as an OVERLAY on top of the page,
   instead of pushing the page content down.
   ========================================================================= */
.mean-container { position: relative; z-index: 100000; }
/* opened menu = fixed narrow drawer that slides in from the right (ref: cn) */
.mean-container .mean-nav {
  position: fixed !important;
  top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 82vw; height: 100vh !important;
  margin: 0; z-index: 3;
  background: #fff;
  box-shadow: -10px 0 34px rgba(0, 0, 0, .28);
  border-radius: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 6px 0 24px;
  transform: translateX(105%); visibility: hidden;
  transition: transform .28s ease, visibility .28s ease;
}
.mean-container.bc-drawer-open .mean-nav { transform: translateX(0); visibility: visible; }
/* keep the top-level list rendered; the slide (not meanmenu's slideUp) drives show/hide */
.mean-container .mean-nav > ul { display: block !important; }

/* =========================================================================
   POPULAR PRODUCTS carousel — visible swipe affordances (owl v1 dots + arrows)
   ========================================================================= */
.popular-posts .post-carousel { position: relative; }
.popular-posts .owl-controls { margin-top: 14px; text-align: center; }
/* pagination dots */
.popular-posts .owl-pagination { display: block; line-height: 1; }
.popular-posts .owl-page { display: inline-block; }
.popular-posts .owl-page span {
  display: block; width: 9px; height: 9px; margin: 0 4px;
  border-radius: 999px; background: #cdd8e3; opacity: 1;
  transition: width .2s ease, background .2s ease;
}
.popular-posts .owl-page.active span { width: 26px; background: var(--bc-primary); }
/* nav arrows as clear circular buttons overlaid on the sides */
.popular-posts .owl-buttons div {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 40px; height: 40px; margin: 0; padding: 0;
  border-radius: 50%; background: #fff; color: var(--bc-primary-d);
  box-shadow: 0 4px 14px rgba(20, 40, 60, .18);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; opacity: .96; filter: none;
}
.popular-posts .owl-buttons .owl-prev { left: 2px; }
.popular-posts .owl-buttons .owl-next { right: 2px; }
.popular-posts .owl-buttons div:hover { background: var(--bc-primary); color: #fff; opacity: 1; }
@media (max-width: 767px) {
  /* mobile: dots are the affordance; hide the arrows so they don't cover the product */
  .popular-posts .owl-buttons { display: none; }
  .popular-posts .owl-controls { margin-top: 16px; }
  .popular-posts .owl-page span { width: 8px; height: 8px; }
  .popular-posts .owl-page.active span { width: 24px; }
}

/* =========================================================================
   Mobile menu (meanmenu) — beautified bar + dropdown
   ========================================================================= */
.mean-container .mean-bar {
  background: linear-gradient(90deg, var(--bc-primary), var(--bc-primary-d)) !important;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(47, 179, 240, .26);
  min-height: 44px; padding: 0;
}
.mean-container .mean-bar::before {
  content: "\f0c9   MENU";
  font-family: "FontAwesome", var(--bc-sans);
  left: 16px; top: 0; line-height: 44px;
  font-size: 13.5px; font-weight: 800; letter-spacing: 1.2px; color: #fff;
}
/* hamburger icon → clean white bars in a subtle rounded hit-area */
.mean-container a.meanmenu-reveal {
  width: 38px; height: 34px; margin: 5px 8px 0 0; padding: 0;
  border-radius: 9px; background: rgba(255, 255, 255, .16);
  text-indent: -9999px; position: relative;
}
.mean-container a.meanmenu-reveal span {
  display: block; position: absolute; left: 11px; right: 11px;
  height: 2.5px; border-radius: 2px; background: #fff !important; margin: 0;
}
.mean-container a.meanmenu-reveal span:nth-child(1) { top: 11px; }
.mean-container a.meanmenu-reveal span:nth-child(2) { top: 16px; }
.mean-container a.meanmenu-reveal span:nth-child(3) { top: 21px; }

/* persistent menu button: shown when scrolled (menu reachable anywhere) */
.bc-menu-fab {
  position: fixed; top: 10px; right: 12px; z-index: 9995;
  width: 46px; height: 46px; padding: 0; border: 0; border-radius: 13px;
  background: linear-gradient(135deg, var(--bc-primary), var(--bc-primary-d));
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(47, 179, 240, .45);
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease;
}
body.bc-scrolled .bc-menu-fab { opacity: 1; pointer-events: auto; transform: translateY(0); }
@media (min-width: 768px) { .bc-menu-fab { display: none !important; } }

/* dropdown list */
.mean-container .mean-nav { background: #fff; }
.mean-container .mean-nav > ul { padding: 4px 0; }
.mean-container .mean-nav ul li a {
  border-top: 1px solid var(--bc-line);
  color: var(--bc-ink); font-weight: 600; font-size: 15px;
  padding: 14px 20px; text-transform: none;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.mean-container .mean-nav ul li:first-child > a { border-top: 0; }
.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li a:active {
  background: var(--bc-primary-l); color: var(--bc-primary-d); padding-left: 26px;
}
/* nested sub-items: indented + lighter */
.mean-container .mean-nav ul ul li a {
  font-size: 14px; color: var(--bc-muted); font-weight: 500;
  padding-left: 34px; opacity: 1;
}
.mean-container .mean-nav ul ul li a:hover { padding-left: 40px; }
/* the +/- expand toggle */
.mean-container .mean-nav ul li a.mean-expand {
  border: 0 !important; border-left: 1px solid var(--bc-line) !important;
  width: 52px; height: 49px; padding: 0 !important; line-height: 49px;
  text-align: center; color: var(--bc-muted); font-size: 20px; font-weight: 400;
  background: transparent;
}
.mean-container .mean-nav ul li a.mean-expand:hover { background: var(--bc-primary-l); color: var(--bc-primary-d); }

/* drawer backdrop + close button (wired in footer.tpl); lives inside .mean-container */
.bc-menu-backdrop {
  position: fixed; inset: 0; z-index: 2;
  background: rgba(15, 23, 32, .5);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.mean-container.bc-drawer-open .bc-menu-backdrop { opacity: 1; visibility: visible; }
.mean-container .mean-nav { padding-top: 52px; }   /* room for the close button */
.bc-menu-close {
  position: absolute; top: 8px; right: 10px; z-index: 5;
  width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: var(--bc-primary-l); color: var(--bc-primary-d);
  font-size: 18px; line-height: 38px; text-align: center; cursor: pointer;
  padding: 0;
}
.bc-menu-close:hover { background: var(--bc-primary); color: #fff; }

/* =========================================================================
   Compact fixed top bar (mobile): Menu (left) + Search (right)  — ref: g site
   ========================================================================= */
.bc-mtop { display: none; }
@media (max-width: 767px) {
  /* g-site format: in-flow full-width Menu bar (☰ Menu left, search right), sits after the search box */
  .bc-mtop {
    display: flex; align-items: center; justify-content: space-between;
    position: relative; z-index: 20;
    /* full-bleed to the screen edges while in-flow at the top (parent col has 15px padding) */
    width: auto; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); margin-bottom: 8px;
    padding: 0 8px; height: 46px; border-radius: 0;
    background: linear-gradient(90deg, var(--bc-primary), var(--bc-primary-d));
    box-shadow: 0 3px 10px rgba(20, 40, 60, .16);
  }
  .bc-mtop__btn {
    height: 40px; border: 0; background: transparent; color: #fff;
    display: inline-flex; align-items: center; gap: 8px; padding: 0 13px;
    font-size: 15px; font-weight: 700; letter-spacing: .3px; cursor: pointer; border-radius: 8px;
  }
  .bc-mtop__btn i { font-size: 17px; }
  .bc-mtop__btn:active { background: rgba(255, 255, 255, .18); }
  .bc-mtop__search { padding: 0 15px; }
  .bc-mtop__form {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 25; display: flex; gap: 0;
    padding: 8px 10px; background: #fff; box-shadow: 0 10px 20px rgba(0, 0, 0, .14);
    transform: translateY(-10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .bc-mtop.search-open .bc-mtop__form { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .bc-mtop__form input[name="s"] {
    flex: 1; min-width: 0; border: 1px solid var(--bc-line); border-right: 0;
    border-radius: 999px 0 0 999px; padding: 11px 16px; font-size: 15px; outline: none; color: var(--bc-ink);
  }
  .bc-mtop__form button {
    border: 0; background: var(--bc-primary); color: #fff; width: 52px;
    border-radius: 0 999px 999px 0; font-size: 16px; cursor: pointer;
  }
  /* sticks to the top once scrolled past its in-flow position */
  .bc-mtop--stuck {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9996; margin: 0; border-radius: 0;
    box-shadow: 0 3px 14px rgba(20, 40, 60, .26);
  }
  .bc-mtop-spacer { display: block; }
  /* the top bar replaces the in-header menu bar + the on-scroll menu fab */
  .mean-container .mean-bar { display: none !important; }
  .bc-menu-fab { display: none !important; }
}
