/*
 * Bike Central — Custom front-end CSS loaded after the compiled Tailwind
 * output (assets/css/output.css). Plain CSS only: this file is enqueued
 * directly and is NOT processed by the Tailwind build, so edits here take
 * effect without running `npm run build`.
 *
 * Contents:
 *   1. Form validation (contact / service / newsletter)
 *   2. Newsletter (subscribe) feedback
 *   3. Premium Cart & Checkout layout (WooCommerce classic shortcodes)
 * ───────────────────────────────────────────────────────────────────────── */

/* ════════════════════════════════════════════════════════════════════════
 * Tailwind utilities used in templates but absent from the current compiled
 * output.css (the build hasn't been re-run). Shimmed here so they apply.
 * Remove once `npm run build` regenerates output.css.
 * ════════════════════════════════════════════════════════════════════════ */
.duration-200 {
  transition-duration: 200ms;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.w-\[44px\] {
  width: 44px;
}

.h-\[44px\] {
  height: 44px;
}

.w-\[38px\] {
  width: 38px;
}

.h-\[38px\] {
  height: 38px;
}

.underline-offset-2 {
  text-underline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════════════════
 * Product detail (single-product.php) — component styles + utility shims for
 * classes not present in the current compiled output.css. Remove the shim
 * block once `npm run build` regenerates output.css.
 * ════════════════════════════════════════════════════════════════════════ */

/* --- Specifications accordion --- */
.spec-acc-panel {
  display: none;
}

.spec-acc.is-open .spec-acc-panel {
  display: block;
}

.spec-acc.is-open .spec-acc-icon {
  transform: rotate(45deg);
}

/* --- Video & Manual inline accordion --- */
[data-accordion].is-open [data-accordion-icon] svg {
  transform: rotate(45deg);
}

/* --- Highlights centre slider (Slick centerMode) — ported from detail.html --- */
.x5-highlights-slider .slick-slide {
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  transform: scale(0.92);
}

.x5-highlights-slider .slick-slide.slick-center {
  opacity: 1;
  transform: scale(1);
}

.x5-highlights-slider .slick-prev,
.x5-highlights-slider .slick-next {
  width: 44px;
  height: 44px;
  z-index: 5;
  background: #fff;
  border-radius: 9999px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.x5-highlights-slider .slick-prev {
  left: 24px;
}

.x5-highlights-slider .slick-next {
  right: 24px;
}

.x5-highlights-slider .slick-prev:before,
.x5-highlights-slider .slick-next:before {
  color: #0a0a0a;
  font-size: 22px;
  opacity: 1;
}

.x5-highlights-slider .slick-dots {
  bottom: -38px;
}

.x5-highlights-slider .slick-dots li button:before {
  font-size: 8px;
  color: #0a0a0a;
  opacity: 0.25;
}

.x5-highlights-slider .slick-dots li.slick-active button:before {
  color: #91c300;
  opacity: 1;
}

/* --- Refined components slider arrows (Slick) --- */
.rc-slider .slick-list {
  overflow: hidden;
}

/* --- Customer review cards (WooCommerce reviews, design-styled) --- */
#reviews .commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

#reviews .commentlist>li {
  margin: 0 0 20px;
}

#reviews .commentlist .comment-text {
  margin: 0;
}

#reviews .comment-form {
  margin-top: 28px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  padding: 24px;
  border-radius: 0;
}

#reviews .comment-form label {
  font-weight: 600;
  font-size: 13px;
  color: #525866;
}

#reviews .comment-form input[type="text"],
#reviews .comment-form input[type="email"],
#reviews .comment-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, 0.15);
  padding: 11px 14px;
  font-size: 14px;
}

#reviews .comment-form .form-submit input {
  background: #0a0a0a;
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 12px 28px;
  cursor: pointer;
}

#reviews .stars a {
  color: #91c300;
}

/* --- Modal --- */
.bc-modal.is-open {
  display: flex;
}

/* --- Utility shims (absent from current output.css) --- */
.bg-black {
  background-color: #000;
}

.bg-ink\/60 {
  background-color: rgba(10, 10, 10, 0.6);
}

.bg-lime-brand\/80 {
  background-color: rgba(145, 195, 0, 0.8);
}

.border-ink\/15 {
  border-color: rgba(10, 10, 10, 0.15);
}

.ring-ink\/10 {
  --tw-ring-color: rgba(10, 10, 10, 0.1);
}

.bottom-1 {
  bottom: 0.25rem;
}

.bottom-5 {
  bottom: 1.25rem;
}

.right-5 {
  right: 1.25rem;
}

.-z-0 {
  z-index: 0;
}

.z-\[100\] {
  z-index: 100;
}

.gap-x-5 {
  column-gap: 1.25rem;
}

.gap-y-8 {
  row-gap: 2rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pr-0 {
  padding-right: 0;
}

.pr-5 {
  padding-right: 1.25rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.h-auto {
  height: auto;
}

.h-\[300px\] {
  height: 300px;
}

.h-\[460px\] {
  height: 460px;
}

.h-\[640px\] {
  height: 640px;
}

.h-\[700px\] {
  height: 700px;
}

.pl-12 {
  padding-left: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.scroll-mt-28 {
  scroll-margin-top: 7rem;
}

.max-h-\[420px\] {
  max-height: 420px;
}

.max-h-\[85vh\] {
  max-height: 85vh;
}

.max-w-\[680px\] {
  max-width: 680px;
}

.overflow-y-auto {
  overflow-y: auto;
}

.resize-y {
  resize: vertical;
}

.rounded-none {
  border-radius: 0;
}

.rounded-\[28px\] {
  border-radius: 28px;
}

.\!aspect-auto {
  aspect-ratio: auto !important;
}

.space-y-2\.5> :not([hidden])~ :not([hidden]) {
  margin-top: 0.625rem;
}

.space-y-5> :not([hidden])~ :not([hidden]) {
  margin-top: 1.25rem;
}

.space-y-8> :not([hidden])~ :not([hidden]) {
  margin-top: 2rem;
}

.focus\:border-ink:focus {
  border-color: #0a0a0a;
}

.placeholder\:text-ink-muted::placeholder {
  color: #525866;
}

.last\:border-b-0:last-child {
  border-bottom-width: 0;
}

@media (min-width: 768px) {
  .md\:gap-10 {
    gap: 2.5rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:h-4 {
    height: 1rem;
  }

  .md\:h-\[360px\] {
    height: 360px;
  }

  .md\:h-\[460px\] {
    height: 460px;
  }

  .md\:h-\[520px\] {
    height: 520px;
  }

  .md\:h-\[640px\] {
    height: 640px;
  }

  .md\:text-\[18px\] {
    font-size: 18px;
  }

  .md\:text-\[19px\] {
    font-size: 19px;
  }

  .md\:text-\[20px\] {
    font-size: 20px;
  }

  .md\:text-\[26px\] {
    font-size: 26px;
  }

  .md\:text-\[32px\] {
    font-size: 32px;
  }

  .md\:text-\[34px\] {
    font-size: 34px;
  }

  .md\:text-\[36px\] {
    font-size: 36px;
  }

  .md\:text-\[40px\] {
    font-size: 40px;
  }

  .md\:text-\[44px\] {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .lg\:gap-10 {
    gap: 2.5rem;
  }

  .lg\:sticky {
    position: sticky;
  }

  .lg\:top-\[96px\] {
    top: 96px;
  }
}

/* ── Anchor scroll offset (sticky header is 78px) ────────────────────────── */
#contact-form,
#newsletter {
  scroll-margin-top: 7rem;
}

/* ════════════════════════════════════════════════════════════════════════
 * 0. Single article body (.prose-body) — ports design/blog-post.html styling.
 *    single.php renders the_content() inside .prose-body; without these rules
 *    the article body is unstyled. Not in the Tailwind build, so kept here.
 * ════════════════════════════════════════════════════════════════════════ */
.prose-body {
  font-family: Lora, Georgia, serif;
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
}

.prose-body p {
  margin-bottom: 1.4em;
}

.prose-body h2 {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui;
  font-size: 26px;
  font-weight: 800;
  margin-top: 2.2em;
  margin-bottom: 0.6em;
  color: #0a0a0a;
  line-height: 1.2;
}

.prose-body h3 {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui;
  font-size: 19px;
  font-weight: 700;
  margin-top: 1.8em;
  margin-bottom: 0.4em;
  color: #0a0a0a;
}

.prose-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.4em;
}

.prose-body ul li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.5em;
}

.prose-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #91c300;
}

.prose-body ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
  list-style: decimal;
}

.prose-body ol li {
  margin-bottom: 0.5em;
}

.prose-body blockquote {
  border-left: 3px solid #91c300;
  padding-left: 1.2em;
  margin: 1.8em 0;
  font-style: italic;
  color: #525866;
}

.prose-body strong {
  font-weight: 700;
  color: #0a0a0a;
}

.prose-body a {
  color: #7ba300;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-body a:hover {
  color: #5f7d00;
}

.prose-body img {
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  margin: 1.6em 0;
}

.prose-body h2:first-child,
.prose-body h3:first-child,
.prose-body p:first-child {
  margin-top: 0;
}

/* ── Product gallery wishlist toggle ─────────────────────────────────────── */
[data-wishlist].wishlist-active {
  border-color: #91c300;
}

[data-wishlist].wishlist-active svg {
  color: #91c300;
  fill: #91c300;
}

/* ════════════════════════════════════════════════════════════════════════
 * Header live search dropdown
 * ════════════════════════════════════════════════════════════════════════ */
#search-panel {
  z-index: 60;
}

#search-suggestions:empty {
  display: none;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #0a0a0a;
  text-decoration: none;
  transition: background 0.12s ease;
}

.search-item:hover,
.search-item.is-active {
  background: #f4f5f6;
}

.search-item-img {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid rgba(10, 10, 10, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.search-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.search-item-body {
  flex: 1;
  min-width: 0;
}

.search-item-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-item-cat {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #525866;
  margin-top: 2px;
}

.search-item-price {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 14px;
  color: #0a0a0a;
}

.search-more {
  display: block;
  text-align: center;
  margin-top: 6px;
  padding: 12px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 13px;
  font-weight: 700;
  color: #0a0a0a;
  text-decoration: none;
}

.search-more:hover {
  color: #7ba300;
}

.search-empty {
  padding: 18px 12px;
  text-align: center;
  font-size: 14px;
  color: #525866;
}

.search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #525866;
}

.search-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 10, 10, 0.12);
  border-top-color: #7ba300;
  border-radius: 50%;
  animation: search-spin 0.6s linear infinite;
}

@keyframes search-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ════════════════════════════════════════════════════════════════════════
 * 1. Form validation
 * ════════════════════════════════════════════════════════════════════════ */

.field-error {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  color: #d61f2a;
}

.field-error::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  background-color: #d61f2a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Invalid field state (added by PHP on reload and by JS live) */
input.has-error,
textarea.has-error,
select.has-error {
  border-color: #d61f2a !important;
  background-color: #fdf3f4;
}

input.has-error:focus,
textarea.has-error:focus,
select.has-error:focus {
  box-shadow: 0 0 0 2px rgba(214, 31, 42, 0.18) !important;
}

/* Valid field (after a successful live check) */
input.is-valid,
textarea.is-valid {
  border-color: rgba(145, 195, 0, 0.7);
}

/* ════════════════════════════════════════════════════════════════════════
 * 2. Newsletter (subscribe) feedback
 * ════════════════════════════════════════════════════════════════════════ */

.subscribe-feedback {
  display: none;
}

.subscribe-feedback.is-visible {
  display: block;
}

.subscribe-feedback.is-error {
  color: #d61f2a;
}

.subscribe-feedback.is-success {
  color: #000000;
}

/* On dark backgrounds (JS adds .on-dark), lift the contrast. */
.subscribe-feedback.on-dark.is-error {
  color: #fca5a5;
}

.subscribe-feedback.on-dark.is-success {
  color: #c6e870;
}

/* Busy state on the submit button while the request is in flight. */
form[data-subscribe].is-busy button[type="submit"] {
  opacity: 0.7;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════════
 * 3. Premium Cart & Checkout layout (classic [woocommerce_cart] /
 *    [woocommerce_checkout]) — two-column grids + summary cards.
 *    Base element styling (buttons, fields, tables, notices) lives in
 *    section 4 below.
 * ════════════════════════════════════════════════════════════════════════ */

/* Shared card surface for totals / order review */
.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 16px;
  padding: 22px 22px 26px;
  box-shadow:
    0 1px 0 rgba(10, 10, 10, 0.04),
    0 18px 40px -28px rgba(10, 10, 10, 0.25);
}

.woocommerce-cart .cart_totals h2,
.woocommerce-checkout #order_review_heading {
  font-size: 18px;
  margin: 0 0 14px;
}

.woocommerce-cart .cart_totals table.shop_table,
.woocommerce-checkout #order_review table.shop_table {
  border: none;
  border-radius: 0;
  font-size: 14px;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-checkout #order_review table.shop_table th {
  background: transparent;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: #1a1a1a;
  padding: 12px 0;
}

.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce-checkout #order_review table.shop_table td {
  padding: 12px 0;
  text-align: right;
}

.woocommerce-cart .cart_totals tr.order-total th,
.woocommerce-cart .cart_totals tr.order-total td,
.woocommerce-checkout #order_review tr.order-total th,
.woocommerce-checkout #order_review tr.order-total td {
  font-size: 18px;
  font-weight: 800;
  border-top: 2px solid rgba(10, 10, 10, 0.1);
}

/* Full-width primary actions */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 22px;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 6px;
}

/* Cart: two-column layout with a sticky summary on desktop */
@media (min-width: 1000px) {
  .woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
    column-gap: 40px;
    align-items: start;
  }

  .woocommerce-cart .woocommerce>.woocommerce-notices-wrapper {
    grid-column: 1 / -1;
  }

  .woocommerce-cart .woocommerce form.woocommerce-cart-form {
    grid-column: 1;
    margin: 0;
  }

  .woocommerce-cart .woocommerce .cart-collaterals {
    grid-column: 2;
    width: 100%;
    position: sticky;
    top: 96px;
  }

  .woocommerce-cart .cart-collaterals .cross-sells {
    display: none;
    /* keep the summary column focused; cross-sells render on product pages */
  }
}

/* Checkout: details left, sticky order/payment review right on desktop */
@media (min-width: 1000px) {
  .woocommerce-checkout form.checkout.woocommerce-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    column-gap: 40px;
    align-items: start;
  }

  .woocommerce-checkout form.checkout #customer_details {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    float: none;
  }

  .woocommerce-checkout form.checkout #order_review_heading {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .woocommerce-checkout form.checkout #order_review {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    /* float: none;
    position: sticky;
    top: 96px; */
  }
}

/* Tidy the billing/shipping inner columns */
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  width: 100%;
  float: none;
  margin-bottom: 10px;
}

.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

/* Coupon row on the cart */
.woocommerce table.cart td.actions {
  padding: 16px;
}

.woocommerce table.cart td.actions .coupon {
  display: flex;
  gap: 8px;
  align-items: center;
}

.woocommerce table.cart td.actions .coupon .input-text {
  max-width: 150px;
  margin: 0 !important;
  padding: 12px;
}

.woocommerce table.cart td.actions .coupon .input-text {
  width: 150px;
}

/* Order review payment area inside the sticky card */
.woocommerce-checkout #order_review #payment {
  background: #fafafa;
  margin-top: 16px;
  border-radius: 12px;
}

.woocommerce-checkout #payment ul.payment_methods {
  padding: 14px 16px;
}

.woocommerce-checkout #payment div.form-row.place-order {
  padding: 16px;
}

/* Empty-cart state */
.woocommerce .cart-empty.woocommerce-info {
  font-size: 16px;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════════════════
 * 4. WooCommerce base styling — applies to Cart, Checkout, Order received
 *    (thank-you) and My Account. WooCommerce's own stylesheets are disabled
 *    (see inc/woocommerce.php), so every surface below is styled from scratch
 *    against the brand tokens:
 *      ink #0a0a0a · ink-soft #1a1a1a · ink-muted #525866
 *      lime-brand #91c300 · lime-deep #7ba300 · lime-soft #e9f4c8
 *      slate2-50 #fafafa · slate2-100 #f4f5f6 · hairline rgba(10,10,10,.1)
 * ════════════════════════════════════════════════════════════════════════ */

.woocommerce,
.woocommerce-account .woocommerce,
.woocommerce-page .woocommerce {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui;
  color: #0a0a0a;
}

/* .woocommerce a {
  color: #0a0a0a;
}
.woocommerce a:hover {
  color: #7ba300;
} */

/* ── Headings ────────────────────────────────────────────────────────────── */
.woocommerce h2,
.woocommerce h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  text-shadow: none;
  box-shadow: none;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

/* Default / secondary button — solid ink */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: #0a0a0a;
  color: #fff;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: #1a1a1a;
  color: #fff;
}

/* Primary call-to-action — brand lime */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order,
.woocommerce #payment #place_order {
  background: #91c300;
  color: #0a0a0a;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #place_order:hover,
.woocommerce #payment #place_order:hover {
  background: #7ba300;
  color: #0a0a0a;
}

/* Primary full-width CTAs keep the block layout from section 3 */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
  width: 100%;
  padding: 15px 22px;
  font-size: 15px;
}

/* Disabled buttons */
.woocommerce a.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Quieter "outline" treatment for low-emphasis actions */
.woocommerce button[name="update_cart"],
.woocommerce input[name="update_cart"] {
  background: #fff;
  color: #0a0a0a;
  border-color: rgba(10, 10, 10, 0.18);
}

.woocommerce button[name="update_cart"]:hover,
.woocommerce input[name="update_cart"]:hover {
  background: #fafafa;
  color: #0a0a0a;
  border-color: rgba(10, 10, 10, 0.4);
}

/* ── Form fields ─────────────────────────────────────────────────────────── */
.woocommerce form .form-row,
.woocommerce-page form .form-row {
  margin: 0 0 16px;
  padding: 0;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
.woocommerce .woocommerce-form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #525866;
  margin-bottom: 6px;
}

.woocommerce .required {
  color: #d61f2a;
  border: 0;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce input.input-text,
.woocommerce-page input.input-text,
.woocommerce select,
.woocommerce textarea,
.woocommerce #order_review input.input-text {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: #0a0a0a;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.15);
  border-radius: 10px;
  padding: 11px 14px;
  line-height: 1.4;
  box-shadow: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.woocommerce form .form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce input.input-text:focus,
.woocommerce select:focus,
.woocommerce textarea:focus {
  outline: none;
  border-color: #0a0a0a;
  box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.08);
}

.woocommerce form .form-row .input-text::placeholder {
  color: #9aa0a6;
}

/* Inline validation states (WooCommerce toggles these) */
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: #d61f2a;
  background: #fdf3f4;
}

.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
  border-color: rgba(145, 195, 0, 0.7);
}

/* select2 (country / state dropdowns) — match the native field look */
.woocommerce .select2-container .select2-selection--single {
  height: 44px;
  border: 1px solid rgba(10, 10, 10, 0.15);
  border-radius: 10px;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
  padding-left: 14px;
  color: #0a0a0a;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
}

.woocommerce .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce .select2-dropdown {
  border-color: #0a0a0a;
}

.woocommerce .select2-results__option--highlighted[aria-selected] {
  background: #91c300;
  color: #0a0a0a;
}

/* ── Quantity selector ───────────────────────────────────────────────────── */
.woocommerce .quantity {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(10, 10, 10, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.woocommerce .quantity input.qty {
  width: 56px;
  text-align: center;
  border: 0;
  border-radius: 0;
  padding: 9px 6px;
  font-size: 14px;
  font-weight: 600;
  -moz-appearance: textfield;
}

.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Notices (info / success / error) ────────────────────────────────────── */
.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  border-left-width: 4px;
  border-radius: 10px;
  padding: 14px 18px;
  margin: 0 0 22px;
}

.woocommerce .woocommerce-message {
  background: #f4faea;
  border-color: #91c300;
  color: #3f5400;
}

.woocommerce .woocommerce-info {
  background: #f4f5f6;
  border-color: #0a0a0a;
  color: #1a1a1a;
}

.woocommerce .woocommerce-error {
  background: #fdf3f4;
  border-color: #d61f2a;
  color: #a01620;
}

.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-error .button {
  margin-left: auto;
  padding: 8px 16px;
  font-size: 13px;
}

.woocommerce ul.woocommerce-error {
  flex-direction: column;
  align-items: flex-start;
}

.woocommerce ul.woocommerce-error li {
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════
 * 4a. Cart table
 * ════════════════════════════════════════════════════════════════════════ */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 24px;
}

.woocommerce table.cart thead th {
  background: #fafafa;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 700;
  color: #525866;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.woocommerce table.cart tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  vertical-align: middle;
  font-size: 14px;
}

.woocommerce table.cart .product-thumbnail img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 12px;
  background: #fafafa;
  padding: 4px;
}

.woocommerce table.cart .product-name a {
  font-weight: 700;
  color: #0a0a0a;
}

.woocommerce table.cart .product-name a:hover {
  color: #7ba300;
}

.woocommerce table.cart td.product-price,
.woocommerce table.cart td.product-subtotal {
  font-weight: 700;
  color: #0a0a0a;
}

.woocommerce table.cart td.product-remove {
  width: 36px;
  text-align: center;
}

.woocommerce table.cart td.product-remove a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  font-size: 0;
  line-height: 1;
  color: transparent;
  background: #f4f5f6;
  transition: background 0.15s ease;
}

.woocommerce table.cart td.product-remove a.remove::before {
  content: "×";
  font-size: 18px;
  color: #525866;
}

.woocommerce table.cart td.product-remove a.remove:hover {
  background: #fdecee;
}

.woocommerce table.cart td.product-remove a.remove:hover::before {
  color: #d61f2a;
}

.woocommerce table.cart td.actions {
  background: #fafafa;
}

.woocommerce table.cart td.actions .coupon label {
  display: none;
}

.woocommerce table.cart td.actions>.button {
  float: right;
}

/* ── Cart totals card refinements ────────────────────────────────────────── */
.woocommerce-cart .cart_totals table.shop_table {
  border: none;
  margin: 0;
}

.woocommerce-cart .cart_totals .woocommerce-shipping-methods,
.woocommerce-cart .cart_totals .shipping-calculator-button {
  font-size: 13px;
}

.woocommerce-cart .cart_totals .shipping-calculator-button {
  color: #7ba300;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════════════════
 * 4b. Checkout
 * ════════════════════════════════════════════════════════════════════════ */
.woocommerce-checkout .woocommerce-form-login-toggle,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  margin-bottom: 18px;
}

.woocommerce-checkout form.login,
.woocommerce-checkout form.checkout_coupon,
.woocommerce-checkout form.register {
  border-radius: 14px;
  padding: 22px;
  margin: 0 0 22px;
  display: flow-root;
}

.woocommerce-checkout .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  display: none;
}

.bikecentral-entry .checkout-inline-error-message {
  color: rgb(255, 0, 0) !important;
  font-size: 14px;
}

.woocommerce form.checkout_coupon .form-row {
  margin-bottom: 0;
}

.woocommerce-checkout #customer_details .col2-set,
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout #order_review table.shop_table {
  border: none;
  margin: 0;
}

.woocommerce-checkout #order_review .cart_item td,
.woocommerce-checkout #order_review tfoot th,
.woocommerce-checkout #order_review tfoot td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  font-size: 14px;
}

.woocommerce-checkout #order_review .product-name {
  font-weight: 600;
  text-align: left;
}

.woocommerce-checkout #order_review .product-total {
  text-align: right;
  font-weight: 700;
}

.woocommerce-checkout #order_review .product-quantity {
  color: #525866;
}

/* Payment methods */
.woocommerce-checkout #payment {
  border: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.woocommerce-checkout #payment ul.payment_methods li {
  margin: 0 0 8px;
  font-size: 14px;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
  margin-bottom: 0;
}

.woocommerce-checkout #payment ul.payment_methods li label {
  display: inline;
  font-weight: 700;
  color: #0a0a0a;
  margin-left: 6px;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
  accent-color: #91c300;
}

.woocommerce-checkout #payment div.payment_box {
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 10px;
  font-size: 13px;
  color: #525866;
  padding: 12px 14px;
  margin: 10px 0 4px;
}

.woocommerce-checkout #payment div.payment_box::before {
  display: none;
}

.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper {
  font-size: 14px;
  color: #525866;
  margin-bottom: 12px;
}

/* ════════════════════════════════════════════════════════════════════════
 * 4c. Order received (thank-you) — overview list, order details, addresses
 * ════════════════════════════════════════════════════════════════════════ */
.woocommerce ul.woocommerce-order-overview.order_details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  background: rgba(10, 10, 10, 0.08);
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.woocommerce ul.woocommerce-order-overview.order_details li {
  background: #fff;
  margin: 0;
  padding: 18px 20px;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #525866;
  text-align: left;
}

.woocommerce ul.woocommerce-order-overview.order_details li strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  color: #0a0a0a;
}

.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-customer-details {
  margin-bottom: 36px;
}

.woocommerce .woocommerce-order-details__title,
.woocommerce .woocommerce-customer-details h2,
.woocommerce .woocommerce-column__title {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 16px;
}

.woocommerce .woocommerce-order-details table.shop_table th,
.woocommerce .woocommerce-order-details table.shop_table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  font-size: 14px;
  text-align: left;
}

.woocommerce .woocommerce-order-details table.shop_table tfoot th,
.woocommerce .woocommerce-order-details table.shop_table tfoot td {
  text-align: left;
}

.woocommerce .woocommerce-order-details table.shop_table td.product-total,
.woocommerce .woocommerce-order-details table.shop_table tfoot td {
  text-align: right;
  font-weight: 700;
}

.woocommerce .woocommerce-customer-details address {
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 14px;
  padding: 18px 20px;
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #1a1a1a;
}

/* ════════════════════════════════════════════════════════════════════════
 * 4d. My Account
 * ════════════════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .woocommerce-account .woocommerce {
    /* display: grid; */
    display: flex;
    grid-template-columns: 240px minmax(0, 1fr);
    column-gap: 40px;
    align-items: start;
  }

  .woocommerce-account .woocommerce>.woocommerce-notices-wrapper {
    grid-column: 1 / -1;
  }
}

/* Navigation sidebar */
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  /* border-radius: 14px;
  background: #fff; */
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding-left: 0;

  &::before {
    display: none;
  }
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #525866;
  text-decoration: none;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: #f4f5f6;
  color: #0a0a0a;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  background: #0a0a0a;
  color: #fff;
}

/* Account content */
.woocommerce-account .woocommerce-MyAccount-content {
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1.7;
}

.woocommerce-account .woocommerce-MyAccount-content p {
  margin: 0 0 14px;
}

.woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
  color: #7ba300;
  font-weight: 600;
}

/* Orders / downloads tables in the account area */
.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .shop_table {
  font-size: 14px;
}

.woocommerce-account .woocommerce-orders-table thead th,
.woocommerce-account .shop_table thead th {
  background: #fafafa;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 700;
  color: #525866;
  padding: 13px 16px;
}

.woocommerce-account .woocommerce-orders-table tbody td,
.woocommerce-account .shop_table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
}

.woocommerce-account .woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions {
  text-align: right;
}

.woocommerce-account .woocommerce-orders-table .button {
  padding: 8px 14px;
  font-size: 13px;
}

/* Address cards on the account "Addresses" tab */
.woocommerce-account .woocommerce-Addresses {
  display: flex;
  gap: 20px;
}

@media (min-width: 640px) {
  .woocommerce-account .woocommerce-Addresses.col2-set {
    grid-template-columns: 1fr 1fr;
  }
}

.woocommerce-account .woocommerce-Address {
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 14px;
  padding: 22px;
}

.woocommerce-account .woocommerce-Address .woocommerce-Address-title h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 12px;
}

.woocommerce-account .woocommerce-Address address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
}

.woocommerce-account .woocommerce-Address .edit {
  font-size: 13px;
  font-weight: 700;
  color: #7ba300;
}

/* ── Lost-password / Reset-password form card ────────────────────────────── */
/* (The Login + Register layout and styling live in the dedicated block below.) */
.woocommerce-account .woocommerce-ResetPassword {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow:
    0 2px 4px rgba(10, 10, 10, 0.03),
    0 30px 60px -36px rgba(10, 10, 10, 0.35);
}

.woocommerce-account .woocommerce-ResetPassword .woocommerce-Button.button {
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: #0a0a0a;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.woocommerce-account .woocommerce-ResetPassword .woocommerce-Button.button:hover {
  background: #91c300;
  color: #0a0a0a;
}

/* Password field with the show/hide toggle: pad the input so the typed text
   doesn't run under the eye button, and pin the button inside on the right. */
.woocommerce-account .password-input {
  position: relative;
  display: block;
}

.woocommerce-account .password-input input.input-text {
  width: 100%;
  padding-right: 44px;
}

.woocommerce-account .password-input .show-password-input {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
}

.woocommerce-account .password-input .show-password-input::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: currentColor;
  color: #0a0a0a;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / 20px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / 20px no-repeat;
}

.woocommerce-account .password-input .show-password-input:hover {
  opacity: 0.85;
}

.woocommerce-account .password-input .show-password-input.display-password {
  opacity: 0.9;
}

/* Hide the browser's *native* password reveal/clear controls so they don't
   duplicate WooCommerce's own show/hide eye (Edge/IE add a second eye, and
   WebKit adds auto-fill buttons). Leaves a single, themed toggle per field. */
.woocommerce-account .password-input input.input-text::-ms-reveal,
.woocommerce-account .password-input input.input-text::-ms-clear {
  display: none;
}

.woocommerce-account .password-input input.input-text::-webkit-credentials-auto-fill-button,
.woocommerce-account .password-input input.input-text::-webkit-strong-password-auto-fill-button,
.woocommerce-account .password-input input.input-text::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
}

/* Pagination (orders list, etc.) */
.woocommerce .woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  border: 0;
  margin: 22px 0 0;
}

.woocommerce .woocommerce-pagination ul li {
  border: 0;
}

.woocommerce .woocommerce-pagination ul li a,
.woocommerce .woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}

.woocommerce .woocommerce-pagination ul li span.current {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  border-radius: 20px;
  padding: 40px 32px;
  background: #ebecee;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 16px;
  display: block;
  color: #222222;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share ul {
  gap: 10px;
  margin-bottom: 15px;
}

.yith_wcwl_wishlist_footer .yith-wcwl-share ul .share-button a {
  min-width: 30px;
  min-height: 30px;
}

.woocommerce-Address {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
}

.customize-support .woocommerce-Address-title h2 {
  font-size: 23px !important;
  margin-bottom: 0 !important;
}

.woocommerce-account .addresses .title .edit {
  float: left !important;
  margin: 10px 0;
  color: #163e74;
  font-size: 18px;
  text-decoration: none;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  margin-top: 28px;
}

.woocommerce-address-fields label {
  font-size: 15px;
}

.woocommerce-MyAccount-content {
  background-color: #ebecee;
  border-radius: 16px;
  padding: 16px 20px;
  min-height: 453px;
}

.woocommerce-account .woocommerce-MyAccount-content h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

form.woocommerce-EditAccountForm.edit-account label {
  font-size: 15px;
}

form.woocommerce-EditAccountForm.edit-account #account_display_name_description em {
  font-size: 13px;
}

form.woocommerce-EditAccountForm.edit-account .woocommerce-Button.button {
  /* min-width: 196px; */
  text-align: center;
  /* text-transform: uppercase; */
  padding: 0 26px;
  font-size: 16px;
  border-radius: 0;
  display: block;
  line-height: 50px;
  height: 52px;
  font-weight: 600;
  border-width: 2px;
  background: var(--secondary-color3);
  color: var(--bs-white);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  margin-top: 25px;
}

form.woocommerce-EditAccountForm.edit-account .woocommerce-Button.button:hover {
  background: var(--bs-white);
  border-color: var(--bs-white);
  color: var(--secondary-color3);
}

/* ════════════════════════════════════════════════════════════════════════
 * My Account — logged-out Login / Register form (WooCommerce form-login.php)
 * Scoped to .woocommerce-account so the WordPress wp-login.php page is never
 * affected. No template override — pure styling of the default markup.
 * ════════════════════════════════════════════════════════════════════════ */

/* The logged-out account page IS the login page (no `logged-in` body class).
   Target it without :has() so the layout fix is reliable, and override the
   WooCommerce structural layout (nav+content flex, floated col2-set columns). */
body:not(.logged-in).woocommerce-account .woocommerce {
  display: block !important;
  max-width: 1000px;
  margin: 0 auto;
}

/* Layout: Login + Register side by side when registration is enabled. */
body:not(.logged-in).woocommerce-account #customer_login {
  display: grid;
  gap: 32px;
  width: 100%;
  float: none;
}

@media (min-width: 768px) {
  body:not(.logged-in).woocommerce-account #customer_login.col2-set {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

/* Reset WooCommerce's floated/percentage column widths so the grid controls it. */
body:not(.logged-in).woocommerce-account #customer_login .col-1,
body:not(.logged-in).woocommerce-account #customer_login .col-2,
body:not(.logged-in).woocommerce-account #customer_login .u-column1,
body:not(.logged-in).woocommerce-account #customer_login .u-column2 {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
}

/* WooCommerce adds a clearfix on .col2-set via ::before/::after. In a grid
   container these become stray grid items and stagger the two columns into a
   diagonal — remove them so only the Login + Register columns remain. */
body:not(.logged-in).woocommerce-account #customer_login.col2-set::before,
body:not(.logged-in).woocommerce-account #customer_login.col2-set::after {
  content: none !important;
  display: none !important;
}

/* Premium card: the whole column (heading + form) is one cohesive card. */
body:not(.logged-in).woocommerce-account #customer_login .col-1,
body:not(.logged-in).woocommerce-account #customer_login .col-2 {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 22px;
  padding: 40px 36px;
  box-shadow:
    0 2px 4px rgba(10, 10, 10, 0.03),
    0 30px 60px -36px rgba(10, 10, 10, 0.35);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

body:not(.logged-in).woocommerce-account #customer_login .col-1:hover,
body:not(.logged-in).woocommerce-account #customer_login .col-2:hover {
  box-shadow:
    0 2px 4px rgba(10, 10, 10, 0.04),
    0 40px 80px -40px rgba(10, 10, 10, 0.42);
  transform: translateY(-2px);
}

/* The inner form no longer needs its own card chrome — the column is the card.
   Let the form fill the card so the primary button sits at the bottom. */
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin: 0;
  max-width: none;
}

/* Single login form (registration disabled): only a DIRECT child of
   .woocommerce — i.e. when there is no #customer_login two-column wrapper. */
body:not(.logged-in).woocommerce-account .woocommerce>form.woocommerce-form-login {
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 36px;
  border: 1px solid rgba(10, 10, 10, 0.07);
  border-radius: 22px;
  box-shadow:
    0 2px 4px rgba(10, 10, 10, 0.03),
    0 30px 60px -36px rgba(10, 10, 10, 0.35);
}

/* Section headings (Login / Register) */
.woocommerce-account #customer_login h2,
body:not(.logged-in).woocommerce-account .woocommerce>h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #0a0a0a;
  margin: 0;
}

/* Lime accent bar above each heading */
body:not(.logged-in).woocommerce-account #customer_login .col-1>h2::before,
body:not(.logged-in).woocommerce-account #customer_login .col-2>h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: #91c300;
  margin-bottom: 16px;
}

/* Supporting subtitle under each heading */
body:not(.logged-in).woocommerce-account #customer_login .col-1>h2::after {
  content: "Welcome back — sign in to your account.";
}

body:not(.logged-in).woocommerce-account #customer_login .col-2>h2::after {
  content: "New here? Create an account in seconds.";
}

body:not(.logged-in).woocommerce-account #customer_login .col-1>h2::after,
body:not(.logged-in).woocommerce-account #customer_login .col-2>h2::after {
  display: block;
  margin: 6px 0 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  color: #525866;
}

/* Labels */
.woocommerce-account .woocommerce-form .form-row label:not(.woocommerce-form-login__rememberme) {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 6px;
}

.woocommerce-account .woocommerce-form .required {
  color: #e02424;
  border: 0;
}

/* Inputs */
.woocommerce-account .woocommerce-form .input-text {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 12px;
  background: #fafafa;
  font-size: 15px;
  color: #0a0a0a;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.woocommerce-account .woocommerce-form .input-text:focus {
  outline: none;
  border-color: #91c300;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(145, 195, 0, 0.18);
}

/* Form row spacing */
.woocommerce-account .woocommerce-form .form-row {
  margin: 0 0 16px;
}

.woocommerce-account .woocommerce-form .form-row:last-child {
  margin-bottom: 0;
}

/* Remember me */
.woocommerce-account .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #525866;
  margin-bottom: 16px;
}

.woocommerce-account .woocommerce-form-login__rememberme input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #91c300;
}

/* Submit buttons */
.woocommerce-account .woocommerce-form .button {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: #0a0a0a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.woocommerce-account .woocommerce-form .button:hover {
  background: #91c300;
  color: #0a0a0a;
  box-shadow: 0 14px 26px -12px rgba(145, 195, 0, 0.6);
  transform: translateY(-1px);
}

/* Register: privacy-policy microcopy */
.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text,
.woocommerce-account .woocommerce-form-register .woocommerce-privacy-policy-text p {
  font-size: 12.5px;
  line-height: 1.55;
  color: #6b7280;
  margin: 2px 0 18px;
}

/* Lost password link */
.woocommerce-account .woocommerce-LostPassword {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
}

.woocommerce-account .woocommerce-LostPassword a {
  color: #525866;
  font-weight: 600;
}

.woocommerce-account .woocommerce-LostPassword a:hover {
  color: #7ba300;
}

.cart-page {
  padding: 80px 0;

  .woocommerce {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 16px;
    position: relative;
    width: 100%;

    .woocommerce-cart-form {
      box-sizing: border-box;
      margin: 0;
      padding-right: 4.5283018868%;
      width: 65%;
    }

    .cart-collaterals {
      /* height: 100%; */
      width: 35%;

      .cart_totals {
        background-color: #ebecee !important;
        padding: 24px !important;
        border-radius: 12px !important;
        position: sticky;
        top: 35px;
      }

      h2 {
        font-weight: 500 !important;
        font-size: 20px !important;
      }
    }
  }
}

.custom-btn-wrapper a.added_to_cart.wc-forward {
  font-size: 14px;
  margin-left: 10px;
  color: var(--secondary-color5);
}

/* Product card: while the AJAX add-to-cart request is in flight, WooCommerce
   adds a "loading" class — show a spinner in place of the button label. */
.product-card .add_to_cart_button.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.product-card .add_to_cart_button.loading>* {
  visibility: hidden;
}

.product-card .add_to_cart_button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bc-qty-spin 0.6s linear infinite;
}

@keyframes bc-qty-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Product card: after an AJAX add-to-cart, hide the "Add" button and let the
   WooCommerce-injected "View cart" link take its exact place, styled to match. */
.product-card .add_to_cart_button.added {
  display: none !important;
}

.product-card a.added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
  height: 40px;
  padding: 0 16px;
  margin: 0;
  background: #0a0a0a;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.product-card a.added_to_cart:hover {
  background: #1a1a1a;
  color: #fff;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  width: 100%;
}

.wc-block-cart__totals-title {
  font-weight: 500 !important;
  font-size: 20px !important;
}

.woocommerce table.shop_table {
  border: none;
}

.wc-proceed-to-checkout .checkout-button.button,
.checkout-page .woocommerce form.checkout.woocommerce-checkout #order_review #payment #place_order {
  text-align: center;
  padding: 0 26px !important;
  font-size: 16px !important;
  border-radius: 0 !important;
  display: block;
  line-height: 50px;
  height: 52px;
  font-weight: 600;
  border-width: 2px;
  background-color: var(--secondary-color3) !important;
  color: var(--bs-white) !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  margin-top: 25px;
}

.wc-proceed-to-checkout .checkout-button.button:hover,
.checkout-page .woocommerce form.checkout.woocommerce-checkout #order_review #payment #place_order:hover {
  background: var(--bs-white) !important;
  border-color: var(--bs-white) !important;
  color: var(--secondary-color3) !important;
}

.checkout-page .woocommerce form.checkout.woocommerce-checkout #order_review #payment #place_order {
  margin-inline: auto;
  float: unset;
}

#checkout_order {
  box-sizing: border-box;
  padding-left: 2.2641509434%;
  width: 35%;
  position: sticky;
  align-self: flex-start;
  top: 24px;
}

.checkout-page .woocommerce form.checkout.woocommerce-checkout #customer_details .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper label,
.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-2,
.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-2 label {
  font-size: 14px;
}

.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-2,
.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-2 {
  margin-top: 25px;
}

.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-2 textarea,
.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-2 textarea {
  resize: none;
  height: 100px;
}

#customer_details {
  box-sizing: border-box;
  margin: 0;
  padding-right: 4.5283018868%;
  width: 65%;
}


.checkout-page,
.wishlist-page {
  padding: 80px 0;
}

.checkout-page .woocommerce form.checkout.woocommerce-checkout {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 16px;
  position: relative;
}

.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-1,
.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-1,
.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-2,
.checkout-page .woocommerce form.checkout.woocommerce-checkout .col2-set .col-2 {
  width: 100%;
}

.checkout-page .woocommerce form.checkout.woocommerce-checkout #order_review .shop_table.woocommerce-checkout-review-order-table {
  background: #fff;
  padding: 15px;
  margin: 15px 0;

  td {
    font-size: 14px;
  }
}

.checkout-page .woocommerce form.checkout.woocommerce-checkout #order_review #payment .woocommerce-privacy-policy-text p,
.checkout-page .woocommerce form.checkout.woocommerce-checkout #order_review #payment .payment_box.payment_method_bacs p {
  font-size: 14px;
}

.woocommerce-form-coupon-toggle .woocommerce-info .showcoupon {
  color: var(--secondary-color3);
}

.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item .product-thumbnail {
  img {
    width: 70px;
  }
}

.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item .product-name a {
  color: #0a0a0a;
}

.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item .product-name a.bc-remove-link {
  color: #9aa0a6;
}

.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item .product-name a.bc-remove-link:hover {
  color: #e02424;
}

.woocommerce-cart-form .woocommerce-cart-form__cart-item.cart_item .product-name a.remove:not(.bc-remove-link) {
  height: 2em;
  width: 2em;
  font-size: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart_pro_price {
  width: fit-content;
  font-weight: bold;
  margin: 10px 0;
}

.woocommerce-order {
  .woocommerce-notice--success.woocommerce-thankyou-order-received {
    margin-bottom: 20px;
  }
}

.woocommerce ul.order_details li.woocommerce-order-overview__order.order strong {
  margin-top: 10px;
}

.order-billing-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 16px;
  position: relative;
  width: 100%;

  .woocommerce-order-details {
    box-sizing: border-box;
    margin: 0;
    padding-right: 4.5283018868%;
    width: 68%;
    float: left;
    background: #ebecee;
    padding: 20px;
    border-radius: 15px;

    h2 {
      font-size: 30px;
    }

    a {
      color: var(--secondary-color3);
    }
  }

  .woocommerce-customer-details {
    width: 30%;
    box-sizing: border-box;
    margin: 0;
    float: right;
    background: #ebecee;
    padding: 20px;
    border-radius: 15px;

    h2 {
      font-size: 30px;
      margin-bottom: 20px;
    }
  }
}

th.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-number a {
  color: var(--secondary-color3);
}

td.woocommerce-orders-table__cell.woocommerce-orders-table__cell-order-actions .woocommerce-button.button.view {
  background-color: var(--secondary-color3);
  color: var(--bs-white);
  font-size: 14px;

  &:hover {
    background-color: var(--bs-white);
    color: var(--secondary-color3);
  }
}

.product-section .product-details form.cart {
  display: flex;
  gap: 25px;
}

.stellarnav.mobile>ul>li>a {
  padding: 15px !important;
}

.stellarnav.mobile #menu-top-menu {
  padding-inline: 0 !important;
}

.innerText #menu-footer-bottom-menu li:hover a {
  color: #fff !important;
}

.company.about_Sec.new p {
  margin-bottom: 20px;
}

.company.about_Sec.new p:last-child {
  margin-bottom: 0;
}

.sticky-header .navbar {
  position: fixed;
  top: 0;
  background: #fff;
  padding: 15px 0;
}

.woocommerce-notices-wrapper {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  z-index: 9999;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  top: 1.05em;
  left: 1.9em;
}

.woocommerce-message {
  background: #ffffff;
  color: #000026;
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stellarnav li.active a {
  font-weight: bold !important;
  color: var(--secondary-color5) !important;
}

.wishlist-page .woocommerce-message {
  padding-left: 40px;
}

.wishlist-page .woocommerce-message::before {
  left: 15px;
  top: 0.7em;
}

.company.blog_detail .company_img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.yith-wcwl-feedback-messages-container {
  padding: 20px 40px;
  font-size: 17px;
  line-height: 24px;
  color: #000;
  border-radius: 4px;
  /* box-shadow: 0px 4px 4px 0px #00000027; */
}

header.woocommerce-Address-title.title {
  display: flex;
  flex-direction: column;

  h2 {
    margin-top: 0;
  }
}

.woocommerce table.shop_table {
  border: none;
}

.cart-page {
  padding: 80px 0;

  .woocommerce {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 16px;
    position: relative;
    width: 100%;

    .woocommerce-cart-form {
      box-sizing: border-box;
      margin: 0;
      padding-right: 4.5283018868%;
      width: 65%;
    }

    .cart-collaterals {
      /* height: 100%; */
      width: 35%;

      .cart_totals {
        background-color: #ebecee !important;
        padding: 24px !important;
        border-radius: 12px !important;
        position: sticky;
        top: 35px;
      }

      h2 {
        font-weight: 500 !important;
        font-size: 20px !important;
      }
    }
  }
}

.woocommerce table.cart thead th {
  border: none;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  background-color: #ebecee !important;
  padding: 24px !important;
  border-radius: 12px !important;
  position: sticky;
  top: 35px;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td,
.woocommerce-checkout #order_review table.shop_table td {
  border: none;
  border-bottom: 1px solid #2e2e2e;
}

.woocommerce-cart .cart_totals table.shop_table tr.order-total {
  border-bottom: none;
}

.woocommerce-cart .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart_totals table.shop_table tr.order-total td {
  border-bottom: none;
}

.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button.button.alt.wc-forward {
  background-color: #91c300 !important;
  background: rgb(145 195 0) !important;
  border-radius: 0.375rem !important;
}

.checkout-page {
  --co-gold: var(--secondary-color3, #cba25b);
  --co-navy: var(--secondary-color5, #163e74);
  --co-ink: #1d2433;
  --co-muted: #6b7280;
  --co-line: #e6e8ec;
  --co-card: #ffffff;
  --co-radius: 16px;
  --co-shadow: 0 10px 30px rgba(22, 62, 116, 0.08);
  --co-shadow-sm: 0 4px 14px rgba(22, 62, 116, 0.06);
  background:
    radial-gradient(1200px 400px at 100% -10%,
      rgba(203, 162, 91, 0.06),
      transparent 60%),
    #f5f6f8;
  padding: 70px 0 90px;
}

.woocommerce-checkout .woocommerce .woocommerce-info {
  background: #fff;
  border: none;
  border-top: 3px solid #91c300;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(22, 62, 116, 0.06);
  color: #1d2433;
  font-size: 16px;
}

.woocommerce-checkout .bg-white {
  background-color: rgb(245, 246, 248);
}

.checkout-page .woocommerce-form-login-toggle,
.checkout-page .woocommerce-form-coupon-toggle {
  margin-bottom: 22px;
}

.checkout-page .woocommerce-info .showcoupon,
.checkout-page .woocommerce-info a {
  color: #163e74;
  font-weight: 600;
}

.checkout-page .woocommerce-billing-fields,
.checkout-page .woocommerce-shipping-fields,
.checkout-page .woocommerce-additional-fields,
.checkout-page .woocommerce-account-fields,
.checkout-page #checkout_order {
  background: #ffffff;
  border: 1px solid #e6e8ec;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(22, 62, 116, 0.06);
  padding: 28px 30px;
  margin-bottom: 26px;
}

.woocommerce-form-coupon-toggle .woocommerce-info .showcoupon {
  color: #7ba300;
  text-decoration: none;
}

.checkout-page form.checkout_coupon {
  margin: 0 0 26px !important;
}

.checkout.woocommerce-checkout #customer_details .woocommerce-billing-fields {
  background: #ffffff;
  border: 1px solid #e6e8ec;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(22, 62, 116, 0.06);
  padding: 28px 30px;
  margin-bottom: 26px;

  textarea {
    width: 100%;
    background: #fbfbfc;
    border: 1px solid #e6e8ec;
    border-radius: 10px;
    padding: 13px 15px;
    font-size: 15px;
    color: #000;
    line-height: 1.4;
    transition:
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease;
    box-shadow: none;
  }

  h3 {
    font-family: var(--headingFont);
    font-size: 24px;
    letter-spacing: 0.3px;
    color: var(--co-navy);
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e6e8ec;
    position: relative;
    text-transform: uppercase;

    &::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 56px;
      height: 3px;
      border-radius: 3px;
      background: #7ba300;
    }
  }

  label {
    display: block;
    font-size: 13px !important;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--co-ink);
    margin-bottom: 7px;
  }

  input {
    width: 100%;
    background: #fbfbfc;
    border: 1px solid #e6e8ec;
    border-radius: 10px;
    padding: 13px 15px;
    font-size: 15px;
    color: #000;
    line-height: 1.4;
    transition:
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease;
    box-shadow: none;
  }

  .select2-selection {
    width: 100%;
    background: #fbfbfc;
    border: 1px solid #e6e8ec;
    border-radius: 10px;
    padding: 13px 15px;
    font-size: 15px;
    color: #000;
    line-height: 1.4;
    transition:
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease;
    box-shadow: none;
  }
}

.wc_payment_methods.payment_methods.methods li {
  padding-left: 0;
}

.wc_payment_methods.payment_methods.methods li::before {
  display: none;
}

.checkout.woocommerce-checkout #customer_details .woocommerce-additional-fields {
  background: #ffffff;
  border: 1px solid #e6e8ec;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(22, 62, 116, 0.06);
  padding: 28px 30px;
  margin-bottom: 26px;

  textarea {
    width: 100%;
    background: #fbfbfc;
    border: 1px solid #e6e8ec;
    border-radius: 10px;
    padding: 13px 15px;
    font-size: 15px;
    color: #000;
    line-height: 1.4;
    transition:
      border-color 0.18s ease,
      box-shadow 0.18s ease,
      background 0.18s ease;
    box-shadow: none;
  }

  h3 {
    font-family: var(--headingFont);
    font-size: 24px;
    letter-spacing: 0.3px;
    color: var(--co-navy);
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e6e8ec;
    position: relative;
    text-transform: uppercase;
  }
}

.checkout.woocommerce-checkout #customer_details .woocommerce-additional-fields h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: #7ba300;
}

.term-accessories .product-card {
  a.aspect-square.acc-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    span {
      text-align: center;
      display: flex;
      justify-content: center;
      gap: 5px;
    }
  }
}

.checkout-order-review {
  box-shadow: 0 10px 30px rgba(22, 62, 116, 0.08);
  padding: 0;
  overflow: hidden;
  width: 100%;
  float: none;
  position: sticky;
  top: 96px;
  border-radius: 16px;
}

.checkout-order-review #order_review_heading {
  margin: 0;
  padding: 22px 26px;
  border-bottom: 1px solid #e6e8ec;
  background: linear-gradient(180deg, #fff, #fcfbf8);
  position: relative;
  font-size: 24px;

  &::after {
    content: "";
    position: absolute;
    left: 26px;
    bottom: -1px;
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: #7ba300;
  }
}

.woocommerce-checkout form.checkout #order_review {
  border: none;
  border-radius: 0;
}

.woocommerce-checkout form.checkout #order_review .shop_table.woocommerce-checkout-review-order-table .cart_item .product-name {
  text-align: left !important;
}

.woocommerce-checkout form.checkout #order_review .shop_table.woocommerce-checkout-review-order-table .cart_item td {
  border-bottom: none !important;
}

.filter-bar {
  padding: 30px;
}

@media screen and (max-width: 991px) {
  .filter-bar {
    height: 100%;
    padding: 15px;
  }

  .filter-bar .filter-buttons {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 780px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 25px;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 100%;
  }
}

@media screen and (max-width: 580px) {
  .all_acc_main_wrap.bikecentral-entry {
    padding-inline: 1.5rem !important;
  }
}

@media screen and (max-width: 480px) {
  .filter-bar {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════════════════════════════════════
 * Cart — two-column layout (Product | Sub total).
 * Title → price → quantity stacked in the product cell; remove is a text link.
 * ════════════════════════════════════════════════════════════════════════ */
.bc-cart-table {
  width: 100%;
  border-collapse: collapse;
}

.bc-cart-table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #525866;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
}

.bc-cart-table thead th.product-subtotal {
  text-align: center;
}

.bc-cart-table tbody td {
  padding: 22px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  vertical-align: middle;
}

.bc-cart-table td.product-subtotal {
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: #0a0a0a;
  white-space: nowrap;
}

/* Product cell: thumbnail beside a stacked info column */
.bc-cart-product {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.bc-cart-thumb {
  flex: 0 0 auto;
  width: 110px;
}

.bc-cart-thumb a,
.bc-cart-thumb img {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0;
  border-radius: 14px;
  object-fit: cover;
  background: #f4f5f6;
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.bc-cart-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* 1) Title */
.bc-cart-title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.bikecentral-entry .bc-cart-title a {
  color: #0a0a0a;
  text-decoration: none;
}

.bikecentral-entry .bc-cart-title a:hover {
  color: #7ba300;
}

/* 2) Price (below title) */
.bc-cart-price {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #525866;
}

.bc-cart-price .amount {
  color: #0a0a0a;
}

/* 3) Quantity + remove icon (on one row, below price) */
.bc-cart-actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Dim + lock a cart row while its live quantity update is in flight. */
.bc-cart-row-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.bc-cart-qty {
  margin: 0;
}

.bc-cart-qty--stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bc-cart-qty .quantity {
  display: inline-flex;
  margin: 0;
}

.bc-cart-qty .quantity input.qty {
  width: 72px;
  height: 44px;
  padding: 0 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 10px;
}

.bc-cart-qty--stepper .quantity input.qty {
  width: 56px;
  -moz-appearance: textfield;
  appearance: textfield;
}

.bc-cart-qty--stepper .quantity input.qty::-webkit-outer-spin-button,
.bc-cart-qty--stepper .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.bc-cart-qty .quantity input.qty:focus {
  outline: none;
  border-color: #91c300;
  box-shadow: 0 0 0 3px rgba(145, 195, 0, 0.18);
}

/* Plus / minus stepper buttons flanking the quantity input. */
.bc-qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 44px;
  flex: 0 0 auto;
  color: #0a0a0a;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.bc-qty-btn:hover {
  background: #f4f5f6;
  border-color: rgba(10, 10, 10, 0.28);
}

.bc-qty-btn svg {
  width: 16px;
  height: 16px;
}

/* Remove — icon button beside the quantity box */
.bikecentral-entry .bc-cart-table a.remove.bc-remove-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  font-size: 0;
  color: #9aa0a6;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 10px;
  text-decoration: none;
  line-height: 1;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.bikecentral-entry .bc-cart-table a.remove.bc-remove-link::before {
  content: none;
}

.bikecentral-entry .bc-cart-table a.remove.bc-remove-link svg {
  width: 18px;
  height: 18px;
}

.bikecentral-entry .bc-cart-table a.remove.bc-remove-link:hover {
  color: #e02424;
  border-color: #f3c0c0;
  background: #fdecee;
}

/* Actions row (coupon + update) */
.bc-cart-table td.actions {
  border-bottom: 0;
  padding-top: 22px;
}

@media (max-width: 600px) {

  .bc-cart-thumb,
  .bc-cart-thumb a,
  .bc-cart-thumb img {
    width: 84px;
    height: 84px;
  }

  .bc-cart-table td.product-subtotal {
    text-align: center;
  }
}

/* ════════════════════════════════════════════════════════════════════════
 * Header mega menu — "Most Popular" hover-slide image carousel
 * (built by initMegaCarousels() in main.js, mirrors design/index.html).
 * ════════════════════════════════════════════════════════════════════════ */
.mega-carousel {
  position: relative;
  overflow: hidden;
}

.mega-carousel .mega-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.mega-carousel .mega-track>img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
}

.mega-carousel .mega-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 6px;
}

.mega-carousel .mega-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0a0a0a;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

/* ── Product-card image carousel: hover-slide behaviour ────────────────────
 * Overrides the opacity cross-fade defined for .carousel-img in the compiled
 * output.css so the listing cards match the mega-menu "Most Popular" slider:
 * a cursor-driven translateX track (see initCarousels() in main.js, which wraps
 * the images in .carousel-track). Loaded after output.css, so these win.
 * ───────────────────────────────────────────────────────────────────────── */
.img-carousel .carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.img-carousel .carousel-track>.carousel-img {
  position: relative;
  /* override the absolute stacking used for the fade */
  inset: auto;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  opacity: 1 !important;
  /* track slides; every image stays visible */
  transition: none;
}

/* ════════════════════════════════════════════════════════════════════════
 * Accessories product cards — small-screen fixes.
 * Root cause at ≤360px: the global .px-5 gutter is forced to 3rem (48px) which
 * leaves too little width, so the price + "Add" row couldn't fit and the card
 * overflowed the column — which in turn blew up the aspect-square icon
 * thumbnail. Fix: reclaim gutter space on phones, let the price row wrap, allow
 * cards to shrink, and cap the icon thumbnail height.
 * ════════════════════════════════════════════════════════════════════════ */
.term-accessories [data-shop-grid] {
  min-width: 0;
}

.term-accessories [data-shop-grid]>.product-card {
  min-width: 0;
  max-width: 100%;
}

.term-accessories .product-card .card-content {
  min-width: 0;
}

@media (max-width: 640px) {

  /* The 3rem (48px) gutter is far too wide on phones — reclaim the space. */
  .term-accessories .px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Let the price + Add button wrap rather than overflow on tight widths,
     and make the Add button a clear full-width control on the second line. */
  .term-accessories .product-card .card-content>div:last-child {
    flex-wrap: wrap;
    gap: 12px;
  }

  .term-accessories .product-card .card-content>div:last-child>a {
    width: 50%;
    justify-content: center;
  }

  /* Cap the icon thumbnail so it isn't a giant empty square. */
  .term-accessories .product-card .acc-thumb {
    aspect-ratio: auto;
    height: 180px;
  }

  .term-accessories .product-card .acc-thumb svg {
    width: 92px;
    height: 92px;
  }
}

/* Service hero stat values: shrink from 30px to 25px on very small screens. */
@media (max-width: 320px) {
  .sv-hero-stat-value {
    font-size: 25px !important;
  }
}

/* Service page: stack the Klarna plans and parts grids into a single
   column under 575px. */
@media (max-width: 575px) {

  .sv-klarna-grid,
  .sv-parts-grid {
    grid-template-columns: 1fr;
  }
}

/* Home page: px-5 -> px-4 on 1400px containers, centered alignment. */
.home-main .max-w-\[1400px\].px-5 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  text-align: center;
  padding-top: 28px;
}

/* Home page: hero carousel controls get a 25px top margin at <=320px. */
@media (max-width: 320px) {
  .hero-carousel-controls {
    margin-bottom: 64px;
  }
}

/* Footer legal links: gap-5 -> gap-3 at <=375px. */
@media (max-width: 375px) {
  .footer-legal-links {
    gap: 0.75rem !important;
  }
}

/* Footer bottom bar: px-5 -> px-4 at <=375px. */
@media (max-width: 375px) {
  .footer-bottom-bar {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Footer trust badges: stack into a single column at <=480px. */
@media (max-width: 480px) {
  .footer-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer newsletter container px-5 -> px-4 at <=320px (all pages). */
@media (max-width: 320px) {
  .max-w-\[1400px\].px-5.pt-16 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .search-item {
    display: flex;
    flex-direction: column;
  }
}

/* Home page: product card content switches from flex to block at <=375px. */
@media (max-width: 375px) {
  .home-main .card-content {
    display: block;
  }
}

@media (max-width: 320px) {
  .home-main .card-content {
    display: contents;
  }
}

/* Home page hero stats: stack into a single column at <=480px. */
@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Header nav bar: reduce px-5 to px-4 at <=480px. */
@media (max-width: 480px) {
  .header-nav-bar {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Header top utility bar: reduce px-5 to px-4 at <=768px. */
@media (max-width: 768px) {
  .top-util-bar {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Footer columns: flex at <=768px, back to grid at <=575px. */
@media (max-width: 768px) {
  .footer-cols {
    display: flex;
  }
}

@media (max-width: 575px) {
  .footer-cols {
    display: grid;
  }

  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .grid-cols-2 {
    grid-template-columns: repeat(1, minmax(1fr));
  }

  .text-\[28px\] {
    font-size: 24px;
  }

  .mb-10 {
    margin-bottom: 0.8rem;
  }

  .py-16 {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }

  .x5-highlights-slider {
    overflow: hidden;
  }
}

/* Journal page: show a horizontal (x-axis) scrollbar on the filter bar under 480px. */
@media (max-width: 480px) {
  .blog .journal-filter-bar {
    overflow-x: auto;
  }

  .w-\[90px\] {
    width: 50px;
  }

  .h-\[92px\] {
    height: 52px;
  }

  .gap-4 {
    gap: 0.5rem;
  }

  .blog .journal-filter-bar.no-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
    padding-bottom: 6px;
  }

  .blog .journal-filter-bar.no-scrollbar::-webkit-scrollbar {
    display: block;
    height: 6px;
  }

  .blog .journal-filter-bar.no-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 9999px;
  }

  .blog .journal-filter-bar.no-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 9999px;
  }

  .blog .journal-filter-bar.no-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.55);
  }
}

/* Journal page: reduce px-5 gutter to px-4 on 1400px containers under 480px. */
@media (max-width: 480px) {
  .blog .max-w-\[1400px\].px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Journal page: stack post-card meta row in a column under 480px. */
@media (max-width: 480px) {
  .journal-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* About page: stack the Story action buttons in a column under 480px. */
@media (max-width: 480px) {
  .about-story-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* About page: remove the px-5 gutter on the 1400px containers under 575px. */
@media (max-width: 575px) {
  .about-page .max-w-\[1400px\].px-5 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Service page: reduce Klarna example padding from px-5 to px-4 under 480px. */
@media (max-width: 480px) {
  .sv-klarna-example {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Header: shrink all link text to 11px at 1024px. */
@media (max-width: 1024px) {
  #site-header a {
    font-size: 11px !important;
  }
}

/* Footer newsletter: at 1024px the 12-col grid squishes the form.
   Stack to a single column so the form keeps its original full-width style. */
@media (max-width: 1024px) {

  footer #newsletter,
  footer #newsletter~div,
  footer .lg\:col-span-7 {
    grid-column: 1 / -1 !important;
  }

  footer #newsletter form {
    flex-direction: row !important;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 100%;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation {
    padding: 30px 20px;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    display: block;
    color: #222222;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    font-size: 16px;
  }
}

/* Footer newsletter: stack input + button in a centered column
   from 575px down to 320px. */
@media (max-width: 575px) {
  footer #newsletter form {
    flex-direction: column !important;
    align-items: center !important;
  }

}

/* E-Bikes category: reduce product-card price font size from 22px to 18px. */
.term-e-bikes .pc-price-row .items-baseline>div:first-child {
  font-size: 18px;
}

/* E-Bikes category: remove extra bottom margin on the 5th/last card at 768px. */
@media (max-width: 768px) {

  .term-e-bikes [data-shop-grid] .product-card:nth-child(5),
  .term-e-bikes [data-shop-grid] .product-card:last-child {
    margin-bottom: 0 !important;
  }
}

/* E-Bikes category: stack price + Add button as a column at 480px. */
@media (max-width: 480px) {
  .term-e-bikes .pc-price-row {
    flex-direction: column;
    align-items: baseline;
    gap: 0.5rem;
  }

  /* Spec chips: single centered column at 480px. */
  .term-e-bikes .pc-spec-grid {
    grid-template-columns: 1fr;
  }

  .term-e-bikes .pc-spec-grid .spec-chip {
    justify-content: center;
  }

  /* Filter buttons: center-align at 480px. */
  .filter-buttons {
    justify-content: center;
  }
}

.bottom_panel_box h2,
.bottom_panel_box h3,
.rc-slide-heading {
  color: #fff !important;
}

.gap-7 {
  gap: 42px 28px !important;
}

.wp-singular.post-template-default.single.single-post {
  article {
    .absolute.items-end {
      nav {
        color: #fff !important;

        span.text-ink {
          color: #fff !important;
        }
      }

      .flex.flex-wrap.gap-5 {
        span {
          color: #fff !important;
        }
      }
    }
  }
}

/* Rotate FAQ plus icon when the details item is open */
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

/* ════════════════════════════════════════════════════════════════════════
 * Active navigation item — highlights the page the user is currently on.
 * ════════════════════════════════════════════════════════════════════════ */
.header-nav-bar nav a.nav-active {
  color: #7ba300;
  background-color: #f2f8e0;
  font-weight: 700;
}

.header-nav-bar nav a.nav-active:hover {
  background-color: #eaf3d1;
}

/* Mobile drawer active item */
#mob-menu a.nav-active {
  color: #7ba300;
  font-weight: 700;
}

@media (max-width: 991px) {
  #customer_details {
    width: 100% !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }

  /* .actions {
  margin-bottom: 20px !important;
}  */
}

@media (max-width: 320px) {
  .bc-cart-actions {
    margin-top: 21px;
    display: flex;
    margin-left: -58px;
    align-items: center;
    gap: 10px;
    flex-direction: column !important;
  }

  .object-cover {
    object-fit: contain !important;
  }

  .term-accessories .product-card .acc-thumb svg {
    width: 60px !important;
    height: 94px;
  }

  .term-accessories .product-card {
    & a.aspect-square.acc-thumb {
      span {
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 5px;
        flex-direction: column !important;
      }
    }
  }

  .button {
    font-size: 12px !important;
    padding: 13px 11px !important;
  }
}

@media (max-width: 768px) {
  .woocommerce table.cart td.actions {
    padding: 16px;
    height: 130px !important;
  }

  .woocommerce-MyAccount-content {
    min-height: fit-content;
  }
}

@media (max-width: 1024px) {
  .pc-price-row.mt-auto.flex.items-end.justify-between.gap-3.pt-4.border-t.hairline {
    flex-direction: column !important;
    align-items: center !important;
  }
}

/* Blog page: stack the featured-post meta (author / date / read time) into a
   column only on very small screens (<=320px). */
@media (max-width: 320px) {
  .bc-featured-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* @media (max-width: 991px) { */
.woocommerce-notices-wrapper {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 9999;
}

/* } */
.woocommerce-cart-form .shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents.bc-cart-table tbody td .bc-cart-product