/* Solo Satoshi clone — custom overrides (loaded last).
   Recreates the Slider Revolution flame hero as a static banner + build-phase fixes. */

/* ---- Static flame hero (replaces revslider canvas) ---- */
.banner { position: relative; line-height: 0; overflow: hidden; }
.solo-hero-link { display: block; position: relative; }
.solo-hero-img { width: 100%; height: auto; display: block; }
.solo-hero-btn {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
  background: #F7931A;
  color: #fff;
  font-weight: 500;
  text-transform: none;
  padding: 0.55em 2.4em;
  border-radius: 50px;
  line-height: 1.5;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .25);
  white-space: nowrap;
  font-size: clamp(11px, 1.45vw, 19px);
  transition: filter .15s ease, transform .15s ease;
}
.solo-hero-link:hover .solo-hero-btn { filter: brightness(1.06); }

/* ---- Desktop nav: fit all items on one line across laptop→monitor widths ----
   The source's Bootstrap .container caps at 1140px <1400px, so the 8-item menu wraps
   (and Chrome's non-standard word-break:break-word breaks mid-word). Widen the header
   container, forbid mid-word breaks, and tighten spacing so it fits down to ~1000px. */
/* Desktop nav shows at >=1200px (navbar-expand-xl); below that it's a clean hamburger. */
@media (min-width: 1200px) {
  #masthead .navbar > .container {
    max-width: min(1660px, 96%);
  }
  #masthead .navbar-nav .nav-link {
    word-break: normal;          /* never split a word mid-character (Chrome fix) */
    overflow-wrap: normal;
  }
}
/* Narrow desktops (1200-1399): shrink font + gaps so all 8 items fit on one row from 1200px. */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  #masthead .navbar-nav .nav-link {
    font-size: 13.5px;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }
}

/* ---- Single-product quantity stepper (− [qty] +) + spacing before Add to Cart ---- */
.single-product form.cart .quantity { width: 100%; margin: 0 0 1rem; }
.single-product form.cart .quantity .input-group { width: 100%; flex-wrap: nowrap; }
.single-product form.cart .quantity .input-group .qty {
  text-align: center;
  -moz-appearance: textfield;
  border-left: 0;
  border-right: 0;
}
.single-product form.cart .quantity .input-group .qty::-webkit-outer-spin-button,
.single-product form.cart .quantity .input-group .qty::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.single-product form.cart .quantity .input-group-text {
  cursor: pointer;
  user-select: none;
  min-width: 3rem;
  justify-content: center;
  font-size: 1.1rem;
}
.single-product form.cart .quantity .input-group-text.disabled { opacity: .4; cursor: default; }
/* keep the qty on its own row, full width, above the add-to-cart button */
.single-product form.cart .single_add_to_cart_button { width: 100%; }

/* Login/Register always stack full-width inside the narrow account offcanvas
   (col-xl-6 keys off viewport width, which would otherwise split the narrow panel). */
#offcanvas-user .solo-login-wrap > [class*="col-"] { flex: 0 0 100% !important; max-width: 100% !important; }
#offcanvas-user .solo-login-wrap .form-control { width: 100%; }

/* ---- Account offcanvas menu (logged in) ---- */
.solo-acc-hello { margin-bottom: 1rem; }
.solo-acc-nav { list-style: none; margin: 0; padding: 0; }
.solo-acc-nav li { border: 1px solid rgba(128,128,128,.3); border-bottom: 0; }
.solo-acc-nav li:last-child { border-bottom: 1px solid rgba(128,128,128,.3); }
.solo-acc-nav li a { display: block; padding: 12px 16px; text-decoration: none; color: inherit; }
.solo-acc-nav li a:hover { background: rgba(128,128,128,.12); color: #F7931A; }

/* ---- My Account page: 2-column sidebar navigation (matches source) ---- */
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li {
  border: 1px solid rgba(128,128,128,.28);
  border-bottom: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:last-child { border-bottom: 1px solid rgba(128,128,128,.28); }
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: inherit;
  border-left: 3px solid transparent;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover { background: rgba(128,128,128,.10); color: #F7931A; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  border-left-color: #F7931A;
  background: rgba(247,147,26,.06);
  font-weight: 600;
}

/* ---- Gift Card Balance account tab (matches source /balance/) ---- */
.solo-gift-balance #pwgc-balance-container { text-align: center; padding: 24px 0; }
.solo-gift-balance .fa-gift { margin-bottom: 14px; }
#pwgc-balance-title { font-size: 1.4rem; font-weight: 600; margin-bottom: 22px; }
#pwgc-balance-number-container { display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
#pwgc-balance-number { border-radius: 40px; padding: 12px 20px; border: 1px solid #ccc; min-width: 260px; }
#pwgc-balance-button { border-radius: 40px; padding: 12px 26px; background: #e0192b; color: #fff; border: 0; font-weight: 600; cursor: pointer; }
#pwgc-balance-button:hover { filter: brightness(1.08); }
.pwgc-balance-result { margin-top: 16px; }

/* ---- Editable homepage SEO zone (before Customer Testimonials) ---- */
.solo-home-seo { max-width: 920px; margin: 0 auto; text-align: center; }
.solo-home-seo h1, .solo-home-seo h2 { margin-bottom: 1rem; }
.solo-home-seo p { margin-bottom: 1rem; opacity: .88; line-height: 1.7; }
.solo-home-seo p:last-child { margin-bottom: 0; }

/* ---- Cart icon count badge (red circle, top-right of the bag) ---- */
.cart-toggler { position: relative; }
.cart-toggler .cart-content {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -35%);
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #e0192b;
  color: #fff;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}
.cart-toggler .cart-content:empty { display: none; }

/* ---- Cart drawer (mini-cart) — matches the source side-cart ---- */
#offcanvas-cart .offcanvas-body { display: flex; flex-direction: column; padding: 0; }
#offcanvas-cart .cart-list,
#offcanvas-cart .widget_shopping_cart_content { flex: 1 1 auto; display: flex; flex-direction: column; min-height: 0; }
.solo-minicart { list-style: none; margin: 0; padding: 0; flex: 1 1 auto; overflow-y: auto; }
.solo-mc-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border-bottom: 1px solid rgba(128,128,128,.18); }
.solo-mc-img { flex: 0 0 auto; }
.solo-mc-img img { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; display: block; }
.solo-mc-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.solo-mc-name { color: inherit !important; font-weight: 500; text-decoration: none; font-size: .82rem; line-height: 1.3; }
.solo-mc-name:hover { color: #F7931A !important; }
.solo-mc-qtyprice { color: #9aa0a6; font-size: .82rem; }
.solo-mc-stepper { display: inline-flex; align-items: center; align-self: flex-start; border: 1px solid #e0402f; border-radius: 40px; overflow: hidden; }
.solo-mc-stepper button { background: transparent; border: 0; color: inherit; width: 34px; height: 32px; font-size: 1rem; line-height: 1; cursor: pointer; }
.solo-mc-stepper button:hover { color: #e0402f; }
.solo-mc-num { min-width: 30px; text-align: center; }
.solo-mc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; white-space: nowrap; }
.solo-mc-line { font-weight: 600; }
.solo-mc-remove { color: #e0402f; font-size: 1rem; line-height: 1; }
.solo-mc-remove:hover { color: #ff5a48; }
.solo-mc-foot { flex: 0 0 auto; padding: 16px; border-top: 1px solid rgba(128,128,128,.18); }
.solo-mc-subtotal { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.solo-mc-checkout { display: block; text-align: center; background: #F7931A; color: #fff; font-weight: 700; letter-spacing: .02em; padding: 14px; border-radius: 40px; text-decoration: none; }
.solo-mc-checkout:hover { filter: brightness(1.06); color: #fff; }
.solo-mc-viewcart { display: block; text-align: center; color: #9aa0a6; margin-top: 10px; text-decoration: none; font-size: .9rem; }
.solo-mc-viewcart:hover { color: #F7931A; }
