/* ============================================================
   SMOKYFISH — Design System v1.2
   Accent: Warm Gold + Near-Black
   Type: Cormorant Garamond (display) + DM Sans (UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --sf-bg:           #0E0E0E;
  --sf-bg-2:         #161616;
  --sf-bg-3:         #1E1E1E;
  --sf-surface:      #1A1A1A;
  --sf-ink:          #F5F0E8;
  --sf-ink-2:        #B8B0A0;
  --sf-ink-3:        #6B6560;
  --sf-border:       rgba(245,240,232,0.10);
  --sf-border-light: rgba(245,240,232,0.06);
  --sf-gold:         #E8B84B;
  --sf-gold-dark:    #C49830;
  --sf-gold-light:   #F2CC78;
  --sf-gold-bg:      rgba(232,184,75,0.10);
  --sf-gold-glow:    rgba(232,184,75,0.25);
  --sf-error:        #E05252;
  --sf-r:            10px;
  --sf-r-sm:         6px;
  --sf-r-lg:         18px;
  --sf-shadow:       0 2px 20px rgba(0,0,0,0.40);
  --sf-shadow-md:    0 6px 36px rgba(0,0,0,0.50);
  --sf-shadow-gold:  0 4px 24px rgba(232,184,75,0.20);
  --sf-display:      'Cormorant Garamond', Georgia, serif;
  --sf-ui:           'DM Sans', -apple-system, sans-serif;
  --sf-ease:         0.22s cubic-bezier(0.4,0,0.2,1);
  /* Card dimensions — uniform across all product grids */
  --sf-card-w:       150px;
  --sf-card-img:     100px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

@media (max-width: 768px) {
  #lessons.woocommerce .products ul::before,
  #lessons.woocommerce .products ul::after,
  #lessons.woocommerce ul.products::before,
  #lessons.woocommerce ul.products::after,
  #merch.woocommerce .products ul::before,
  #merch.woocommerce .products ul::after,
  #merch.woocommerce ul.products::before,
  #merch.woocommerce ul.products::after,
  #lessons .woocommerce .products ul::before,
  #lessons .woocommerce .products ul::after,
  #lessons .woocommerce ul.products::before,
  #lessons .woocommerce ul.products::after,
  #merch .woocommerce .products ul::before,
  #merch .woocommerce .products ul::after,
  #merch .woocommerce ul.products::before,
  #merch .woocommerce ul.products::after {
    content: none !important;
    display: none !important;
  }
}

/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: var(--sf-ui);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--sf-ink);
  background: var(--sf-bg);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sf-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sf-ink);
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Containers ─────────────────────────────────────────────── */
/* Standard — 1200px */
.sf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Wide — allows the single-row product grids to breathe */
.sf-container--wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .sf-container,
  .sf-container--wide { padding: 0 16px; }
}

/* ============================================================
   HEADER — logo left · nav center · actions right
   ============================================================ */
.sf-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sf-border);
}

.sf-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  padding: 0 32px;
  gap: 16px;
}

/* ── Logo — left column ── */
.sf-logo {
  justify-self: start;
}
.sf-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--sf-r);
  padding: 6px 14px;
  transition: all var(--sf-ease);
}
.sf-logo img,
.sf-logo .custom-logo {
  height: 45px;
  width: auto !important;
  display: block;
  /* Remove any filter so colours show correctly on white bg */
  filter: none !important;
}
.sf-logo__text {
  font-family: var(--sf-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  /* Dark text so it reads on the white pill */
  color: #111111;
  white-space: nowrap;
}

/* ── Nav — center column ── */
.sf-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: center;
}

.sf-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: var(--sf-r-sm);
  font-family: var(--sf-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sf-ink-3);
  transition: all var(--sf-ease);
  white-space: nowrap;
}
.sf-header__nav-link:hover {
  color: var(--sf-gold);
  background: var(--sf-gold-bg);
}
.sf-header__nav-link--icon svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.sf-header__nav-link--icon:hover svg { opacity: 1; }

/* Active state — highlight based on scroll position (set via JS if needed) */
.sf-header__nav-link.is-active {
  color: var(--sf-gold);
}

/* ── Actions — right column ── */
.sf-header__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}

.sf-header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--sf-r-sm);
  border: 1px solid var(--sf-border);
  background: transparent;
  cursor: pointer;
  color: var(--sf-ink-2);
  transition: all var(--sf-ease);
  text-decoration: none;
  position: relative;
}
.sf-header__action-btn:hover {
  border-color: var(--sf-gold);
  color: var(--sf-gold);
  background: var(--sf-gold-bg);
}
.sf-header__action-btn svg {
  width: 17px; height: 17px;
  stroke: currentColor; fill: none; stroke-width: 1.6;
}

/* Cart badge */
.sf-cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 16px; height: 16px;
  padding: 0 3px;
  background: var(--sf-gold);
  color: var(--sf-bg);
  border-radius: 999px;
  font-family: var(--sf-ui);
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* WooCommerce mini-cart override */
.wc-block-mini-cart__button {
  background: transparent !important;
  border: 1px solid var(--sf-border) !important;
  cursor: pointer !important;
  color: var(--sf-ink-2) !important;
  width: 36px !important; height: 36px !important;
  padding: 0 !important;
  border-radius: var(--sf-r-sm) !important;
  transition: all var(--sf-ease) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
}
.wc-block-mini-cart__button:hover {
  border-color: var(--sf-gold) !important;
  color: var(--sf-gold) !important;
  background: var(--sf-gold-bg) !important;
}
.wc-block-mini-cart__icon { width: 17px !important; height: 17px !important; }
.wc-block-mini-cart__badge {
  background: var(--sf-gold) !important;
  color: var(--sf-bg) !important;
  font-family: var(--sf-ui) !important;
  font-size: 9px !important; font-weight: 700 !important;
  min-width: 16px !important; height: 16px !important;
  border-radius: 999px !important; padding: 0 3px !important;
}

/* Customer account block */
.wp-block-woocommerce-customer-account a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-r-sm);
  color: var(--sf-ink-2);
  transition: all var(--sf-ease);
}
.wp-block-woocommerce-customer-account a:hover {
  border-color: var(--sf-gold); color: var(--sf-gold);
}
.wc-block-customer-account__account-icon { width: 17px !important; height: 17px !important; }

/* ── Hamburger (mobile only) ── */
.sf-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px; height: 36px;
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-r-sm);
  background: transparent;
  cursor: pointer;
  padding: 8px;
  transition: border-color var(--sf-ease);
}
.sf-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--sf-ink-2);
  border-radius: 2px;
  transition: all var(--sf-ease);
  transform-origin: center;
}
.sf-hamburger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.sf-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sf-hamburger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.sf-hamburger:hover { border-color: var(--sf-gold); }
.sf-hamburger:hover span { background: var(--sf-gold); }

/* ── Mobile nav drawer ── */
.sf-mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--sf-border);
  background: rgba(14,14,14,0.98);
  padding: 12px 20px 16px;
  gap: 2px;
}
.sf-mobile-nav.is-open { display: flex; }
.sf-mobile-nav a {
  padding: 10px 12px;
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sf-ink-2);
  border-radius: var(--sf-r-sm);
  transition: all var(--sf-ease);
}
.sf-mobile-nav a:hover { color: var(--sf-gold); background: var(--sf-gold-bg); }

/* ── Responsive header ── */
@media (max-width: 900px) {
  .sf-header__nav { display: none; }
  .sf-hamburger { display: flex; }
  .sf-header__inner { grid-template-columns: 1fr auto; }
}
.sf-logo img, .sf-logo .custom-logo {
  height: 45px;
}
@media (max-width: 480px) {
  .sf-header__inner { padding: 0 16px; height: 56px; }
  .sf-logo img, .sf-logo .custom-logo { height: 30px !important; }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.woocommerce-breadcrumb, .sf-breadcrumbs {
  font-size: 0.72rem; font-family: var(--sf-ui);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sf-ink-3); margin-bottom: 36px; display: block;
}
.woocommerce-breadcrumb a { color: var(--sf-ink-2); transition: color var(--sf-ease); }
.woocommerce-breadcrumb a:hover { color: var(--sf-gold); }

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.sf-main { min-height: 60vh; padding: 40px 0 80px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.sf-section { padding: 80px 0; }
.sf-section--dark    { background: var(--sf-bg-2); }
.sf-section--darker  { background: var(--sf-bg); }
.sf-section--surface { background: var(--sf-bg-3); }
.sf-products-section { padding: 72px 0; background: var(--sf-bg-2); }

.sf-section__label {
  font-family: var(--sf-ui);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sf-gold); margin-bottom: 10px; display: block;
}
.sf-section__title {
  font-family: var(--sf-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--sf-ink); margin-bottom: 18px;
}
.sf-divider {
  width: 44px; height: 2px;
  background: var(--sf-gold); border-radius: 2px;
  margin: 0 auto;
}
.sf-divider--left { margin: 0; }

@media (max-width: 768px) { .sf-section { padding: 52px 0; } }

/* ============================================================
   HERO
   ============================================================ */
.sf-hero {
  position: relative;
  min-height: 69vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.sf-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.32);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.sf-hero:hover .sf-hero__bg { transform: scale(1.0); }
.sf-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(14,14,14,0.1) 0%, rgba(14,14,14,0.05) 40%, rgba(14,14,14,0.75) 100%);
}
.sf-hero__content {
  position: relative; z-index: 2;
  max-width: 860px; padding: 80px 40px;
}
.sf-hero__eyebrow {
  font-family: var(--sf-ui); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sf-gold); margin-bottom: 18px; display: block;
}
.sf-hero__title {
  font-family: var(--sf-display) !important;
  font-size: clamp(3.2rem, 8vw, 5.5rem) !important;
  font-weight: 300 !important; letter-spacing: 0.06em !important;
  text-transform: uppercase !important; line-height: 1.0 !important;
  color: var(--sf-ink) !important; margin-bottom: 24px !important;
}
.sf-hero__title span { color: var(--sf-gold); font-style: italic; }
.sf-hero__tagline {
  font-family: var(--sf-display);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300; font-style: normal;
  color: var(--sf-ink-2); margin-bottom: 36px; line-height: 1.65;
}
.sf-hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.sf-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1.5px solid var(--sf-border, #3a3020);
  border-radius: 999px;
  background: #111 !important;
  color: var(--sf-ink, #f5ecd9) !important;
  font-family: var(--sf-ui, inherit);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.sf-btn:hover {
  transform: translateY(-1px);
  border-color: var(--sf-gold, #e8b84b);
  color: #111 !important;
  background: var(--sf-gold, #e8b84b) !important;
  box-shadow: 0 10px 28px rgba(232,184,75,.22);
}

/* Instagram */
.sf-btn--instagram {
  border-color: rgba(254, 1, 107, 0.42) !important;
  box-shadow: inset 0 0 0 1px rgba(254, 1, 107, 0.10), 0 8px 24px rgba(0,0,0,.28);
}

.sf-btn--instagram:hover {
  background: #fe016b !important;
  border-color: #fe016b !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(254, 1, 107, 0.28);
}

/* Telegram */
.sf-btn--telegram {
  border-color: rgba(44, 172, 233, 0.42) !important;
  box-shadow: inset 0 0 0 1px rgba(44, 172, 233, 0.10), 0 8px 24px rgba(0,0,0,.28);
}

.sf-btn--telegram:hover {
  background: #2cace9 !important;
  border-color: #2cace9 !important;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(44, 172, 233, 0.28);
}

.sf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--sf-r);
  font-family: var(--sf-ui); font-size: 0.74rem;
  font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  cursor: pointer; transition: all var(--sf-ease);
  text-decoration: none; border: 2px solid transparent;
}
.sf-btn--gold {
  background: var(--sf-gold); color: var(--sf-bg);
  box-shadow: var(--sf-shadow-gold);
}
.sf-btn--gold:hover {
  background: var(--sf-gold-light); color: var(--sf-bg);
  box-shadow: 0 6px 32px rgba(232,184,75,0.40); transform: translateY(-1px);
}
.sf-btn--outline {
  background: transparent; color: var(--sf-ink-2);
  border-color: var(--sf-border);
}
.sf-btn--outline:hover {
  border-color: var(--sf-gold); color: var(--sf-gold); background: var(--sf-gold-bg);
}

@media (max-width: 640px) {
  .sf-hero__content { padding: 60px 20px; }
  .sf-hero { min-height: 80vh; }
}
.sf-about-intro__lead {
      max-width: 860px;
    margin: 0 auto;
}
/* ============================================================
   PRODUCT CARD GRID — single row, uniform cards
   Applies to BOTH lessons and merch grids
   ============================================================ */

/* Wrapper that forces a single scrollable row on desktop */
.sf-grid-nowrap .products.columns-4,
.sf-grid-nowrap ul.products {
  display: flex !important;
  flex-wrap: nowrap !important;       /* ← single row */
  gap: 14px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 35px 0;
  justify-content: center !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding-bottom: 4px !important;
}
.sf-grid-nowrap .products.columns-4::-webkit-scrollbar,
.sf-grid-nowrap ul.products::-webkit-scrollbar { display: none !important; }

/* ── Every product card — uniform size ── */
.woocommerce ul.products li.product,
ul.products li.product,
.products.columns-4 > li {
  /* Fixed dimensions so every card is identical */
  flex: 0 0 var(--sf-card-w) !important;
  width: var(--sf-card-w) !important;
  min-width: var(--sf-card-w) !important;
  max-width: var(--sf-card-w) !important;

  /* Layout inside card */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;

  background: var(--sf-surface) !important;
  border: 1px solid var(--sf-border-light) !important;
  border-radius: var(--sf-r-lg) !important;
  padding: 18px 12px 16px !important;
  text-align: center !important;
  transition: all var(--sf-ease) !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.woocommerce ul.products li.product:hover,
ul.products li.product:hover {
  border-color: rgba(232,184,75,0.30) !important;
  box-shadow: 0 8px 36px rgba(0,0,0,0.50), 0 0 0 1px rgba(232,184,75,0.15) !important;
  transform: translateY(-3px) !important;
}

/* ── Uniform image area ── */
.woocommerce ul.products li.product a img,
ul.products li.product a img,
.woocommerce ul.products li.product img,
ul.products li.product img {
  border-radius: 50% !important;
  object-fit: cover !important;
  width: var(--sf-card-img) !important;
  height: var(--sf-card-img) !important;
  min-width: var(--sf-card-img) !important;
  min-height: var(--sf-card-img) !important;
  display: block !important;
  margin: 0 auto 12px !important;
  border: 2px solid var(--sf-border) !important;
  transition: border-color var(--sf-ease) !important;
  flex-shrink: 0 !important;
}
ul.products li.product:hover a img { border-color: rgba(232,184,75,0.40) !important; }

/* ── Uniform title area — fixed height so price always aligns ── */
.woocommerce-loop-product__title {
  font-family: var(--sf-ui) !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: var(--sf-ink) !important;
  /* 2 lines max, ellipsis if longer */
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 2.4em !important;   /* reserve space for 2 lines */
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 6px !important;
}

/* ── Price — always at same vertical position ── */
ul.products .price,
.woocommerce ul.products li.product .price {
  font-family: var(--sf-display) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: var(--sf-gold) !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 10px !important;
  min-height: 1.4em !important;  /* reserve even when no price */
  flex-grow: 0 !important;
}
.woocommerce-Price-currencySymbol { font-size: 0.6em !important; vertical-align: super !important; }

/* ── Button — pinned to bottom of card ── */
.woocommerce ul.products li.product .button,
ul.products li.product .button,
ul.products li.product .add_to_cart_button {
  display: block !important;
  width: 100% !important;
  margin-top: auto !important;   /* pushes to bottom */
  padding: 7px 0 !important;
  background: transparent !important;
  border: 1px solid var(--sf-border) !important;
  border-radius: var(--sf-r-sm) !important;
  color: var(--sf-ink-2) !important;
  font-family: var(--sf-ui) !important;
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: all var(--sf-ease) !important;
  cursor: pointer !important;
  text-align: center !important;
}
.woocommerce ul.products li.product .button:hover,
ul.products li.product .button:hover {
  background: var(--sf-gold) !important;
  border-color: var(--sf-gold) !important;
  color: var(--sf-bg) !important;
  box-shadow: var(--sf-shadow-gold) !important;
}

/* ── Section headers ── */
.sf-products-header, .sf-merch-header {
  text-align: center; margin-bottom: 40px;
}
.sf-products-header .sf-divider,
.sf-merch-header .sf-divider { margin: 14px auto 0; }

/* ── Merch: the two-wrapper structure ── */
.woocommerce.custom-class { margin-bottom: 0 !important; }
.woocommerce.custom-class ul.products,
.woocommerce.custom-class .products.columns-4 {
  justify-content: center !important;
  flex-wrap: nowrap !important;
  margin-bottom: 14px !important;
}

.woocommerce.custom-class-2 ul.products,
.woocommerce.custom-class-2 .products.columns-4 {
  flex-wrap: nowrap !important;
  justify-content: center !important;
}


/* ── Responsive: allow wrapping below 900px ── */
@media (max-width: 900px) {
  .sf-grid-nowrap .products.columns-4,
  .sf-grid-nowrap ul.products,
  .woocommerce.custom-class-2 ul.products,
  .woocommerce.custom-class ul.products {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  :root {
    --sf-card-w: 140px;
    --sf-card-img: 90px;
  }
}

@media (max-width: 480px) {
  :root {
    --sf-card-w: calc(50vw - 24px);
    --sf-card-img: 80px;
  }
  .sf-grid-nowrap .products.columns-4,
  .sf-grid-nowrap ul.products,
  .woocommerce.custom-class-2 ul.products,
  .woocommerce.custom-class ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    flex-wrap: unset !important;
  }
  .woocommerce ul.products li.product,
  ul.products li.product {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    flex: unset !important;
  }
}

/* ============================================================
   SINGLE PRODUCT PAGE
   Overrides WooCommerce's float-based layout completely.
   ============================================================ */

/* ============================================================
   SINGLE PRODUCT LAYOUT PATCH ONLY
   Keeps existing colors/styles intact
   ============================================================ */

/* Main single product wrapper */
.sf-single-product-wrap {
  width: 100%;
}

/* Force the top area into 2 columns only */
.sf-single-product-wrap > .sf-product {
  display: grid !important;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr) !important;
  gap: 40px !important;
  align-items: start !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Kill WooCommerce float widths only for this top area */
.sf-single-product-wrap > .sf-product > .sf-product__gallery,
.sf-single-product-wrap > .sf-product > .sf-product__summary,
.sf-single-product-wrap > .sf-product .woocommerce-product-gallery,
.sf-single-product-wrap > .sf-product .summary.entry-summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

/* Left column */
.sf-single-product-wrap > .sf-product > .sf-product__gallery {
  min-width: 0;
}

/* Make gallery stay inside left column */
.sf-single-product-wrap > .sf-product > .sf-product__gallery .woocommerce-product-gallery {
  max-width: 100% !important;
}

/* Prevent image from blowing full width */
.sf-single-product-wrap > .sf-product > .sf-product__gallery .woocommerce-product-gallery__image img,
.sf-single-product-wrap > .sf-product > .sf-product__gallery .woocommerce-product-gallery img.wp-post-image {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/* Right column */
.sf-single-product-wrap > .sf-product > .sf-product__summary {
  min-width: 0;
}

/* Below section */
.sf-single-product-wrap > .sf-product__below {
  width: 100%;
  margin-top: 48px;
  clear: both;
}

/* Mobile */
@media (max-width: 900px) {
  .sf-single-product-wrap > .sf-product {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

/* WC container — full-width reset for product page */
.sf-container--wc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .sf-container--wc { padding: 0 16px; } }

/* The outer WC product div — reset all WC defaults */
.sf-single-product-wrap,
.woocommerce div.product {
  display: block !important;
  width: 100% !important;
  float: none !important;
  clear: both !important;
}
.woocommerce div.product::after,
.woocommerce div.product::before { display: none !important; }

/* ── Two-column grid ── */
.sf-product {
  display: grid !important;
  grid-template-columns: 420px 1fr !important;
  gap: 56px !important;
  align-items: start !important;
  margin-bottom: 0 !important;
}
@media (max-width: 900px) {
  .sf-product { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* LEFT column — gallery */
.sf-product__gallery {
  position: sticky;
  top: 80px;
  /* Reset WooCommerce float defaults */
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

/* The WooCommerce gallery element itself */
.sf-product__gallery .woocommerce-product-gallery,
.woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  background: var(--sf-surface);
  border-radius: var(--sf-r-lg);
  border: 1px solid var(--sf-border);
  overflow: hidden;
  box-shadow: var(--sf-shadow);
  aspect-ratio: 1;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.woocommerce-product-gallery__wrapper {
  margin: 0 !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.woocommerce-product-gallery__image {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 28px !important;
  overflow: hidden !important;
}

/* Product image — circular, contained */
.woocommerce-product-gallery__image img,
.woocommerce-product-gallery img.wp-post-image {
  border-radius: 50% !important;
  width: 100% !important;
  height: auto !important;
  max-width: 340px !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Hide zoom overlay image, thumbnails, trigger */
.woocommerce-product-gallery .zoomImg { display: none !important; }
.woocommerce-product-gallery__trigger { display: none !important; }
.woocommerce-product-gallery .flex-control-thumbs { display: none !important; }
.woocommerce-product-gallery--columns-4 .flex-control-thumbs { display: none !important; }

/* RIGHT column — summary */
.sf-product__summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding-top: 8px;
}

/* Reset WC's own summary float */
.woocommerce div.product div.summary {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

/* ── Full-width below: tabs + related ── */
.sf-product__below {
  clear: both;
  width: 100%;
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--sf-border);
}

/* Hide product tabs (descriptions) — matches original site */
.woocommerce-tabs { display: none !important; }

/* Related products heading */
.sf-product__below .related > h2,
.related > h2 {
  font-family: var(--sf-display) !important;
  font-size: 1.3rem !important; font-weight: 400 !important;
  letter-spacing: 0.08em !important; text-transform: uppercase !important;
  color: var(--sf-ink-2) !important; margin-bottom: 28px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--sf-border) !important;
  position: relative !important;
}
.sf-product__below .related > h2::after,
.related > h2::after {
  content: '' !important; position: absolute !important;
  bottom: -1px !important; left: 0 !important;
  width: 28px !important; height: 2px !important;
  background: var(--sf-gold) !important;
}

/* Related products grid — reuse card styles, allow wrap */
.related ul.products {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  justify-content: flex-start !important;
}

/* Product title */
.product_title.entry-title {
  font-family: var(--sf-display) !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 300 !important; letter-spacing: 0.06em !important;
  text-transform: uppercase !important; line-height: 1.1 !important;
  margin: 0 0 6px !important; color: var(--sf-ink) !important;
}

/* Product price on single page */
.summary .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--sf-display) !important;
  font-size: 2rem !important; font-weight: 400 !important;
  color: var(--sf-gold) !important;
  display: block !important; margin-bottom: 24px !important;
  border-bottom: 1px solid var(--sf-border-light) !important;
  padding-bottom: 20px !important;
}
.summary .price .woocommerce-Price-amount,
.woocommerce div.product p.price .woocommerce-Price-amount {
  font-size: 2rem !important;
  color: var(--sf-gold) !important;
}

/* Short description */
.woocommerce-product-details__short-description {
  font-size: 0.92rem; color: var(--sf-ink-2);
  margin-bottom: 20px; line-height: 1.75;
}

/* ── Add to Cart Form ── */
form.cart { display: flex !important; flex-direction: column !important; gap: 18px !important; }

.child-name-field h3, .option-description h3, .dropdown-selector h3 {
  font-family: var(--sf-ui) !important; font-size: 0.70rem !important;
  font-weight: 600 !important; letter-spacing: 0.10em !important;
  text-transform: uppercase !important; color: var(--sf-ink-3) !important;
  margin: 0 0 8px 0 !important;
}
.child-name-field input[type="text"], input[name="child_name"] {
  width: 100% !important; padding: 13px 16px !important;
  background: var(--sf-surface) !important; border: 1.5px solid var(--sf-border) !important;
  border-radius: var(--sf-r) !important; font-family: var(--sf-ui) !important;
  font-size: 0.92rem !important; color: var(--sf-ink) !important;
  outline: none !important; transition: border-color var(--sf-ease), box-shadow var(--sf-ease) !important;
  margin: 0 !important;
}
.child-name-field input[type="text"]::placeholder { color: var(--sf-ink-3) !important; font-style: italic !important; }
.child-name-field input[type="text"]:focus, input[name="child_name"]:focus {
  border-color: var(--sf-gold) !important; box-shadow: 0 0 0 3px var(--sf-gold-bg) !important;
}
.dropdown-selector select, select[name="lesson_option_combined"] {
  width: 100% !important; padding: 13px 40px 13px 16px !important;
  background: var(--sf-surface) !important; border: 1.5px solid var(--sf-border) !important;
  border-radius: var(--sf-r) !important; font-family: var(--sf-ui) !important;
  font-size: 0.92rem !important; color: var(--sf-ink) !important;
  appearance: none !important; -webkit-appearance: none !important;
  cursor: pointer !important; outline: none !important;
  transition: border-color var(--sf-ease), box-shadow var(--sf-ease) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right 14px center !important;
}
.dropdown-selector select:focus { border-color: var(--sf-gold) !important; box-shadow: 0 0 0 3px var(--sf-gold-bg) !important; }

/* Quantity */
.quantity, div.quantity,
.woocommerce div.product form.cart div.quantity { display: none !important; }
.tais-bundle-product form.cart .quantity,
.tais-bundle-product form.cart .qty,
.tais-bundle-product form.cart div.quantity {
  display: inline-flex !important; visibility: visible !important;
  opacity: 1 !important; height: auto !important; width: auto !important;
}

/* ±qty widget */
.tais-qty-wrap {
  display: inline-flex !important; align-items: center !important;
  background: var(--sf-surface) !important; border: 1.5px solid var(--sf-border) !important;
  border-radius: var(--sf-r) !important; overflow: hidden !important;
}
.tais-qty-btn {
  width: 42px !important; height: 42px !important; border: none !important;
  background: transparent !important; cursor: pointer !important; font-size: 19px !important;
  font-weight: 300 !important; color: var(--sf-ink) !important; border-radius: 0 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  transition: background var(--sf-ease) !important;
}
.tais-qty-btn:hover { background: var(--sf-border) !important; }
.tais-qty-wrap input.qty {
  width: 52px !important; height: 42px !important; text-align: center !important;
  border: none !important; border-left: 1.5px solid var(--sf-border) !important;
  border-right: 1.5px solid var(--sf-border) !important; background: transparent !important;
  font-family: var(--sf-ui) !important; font-size: 0.94rem !important;
  font-weight: 500 !important; color: var(--sf-ink) !important;
  padding: 0 !important; outline: none !important; -moz-appearance: textfield !important;
}
.tais-qty-wrap input.qty::-webkit-inner-spin-button,
.tais-qty-wrap input.qty::-webkit-outer-spin-button { -webkit-appearance: none !important; }
.tais-qty-hidden { display: none !important; }

/* Add to cart button */
button.single_add_to_cart_button, .single_add_to_cart_button {
  display: block !important; width: 100% !important; padding: 16px 24px !important;
  background: var(--sf-gold) !important; color: var(--sf-bg) !important;
  border: 2px solid var(--sf-gold) !important; border-radius: var(--sf-r) !important;
  font-family: var(--sf-ui) !important; font-size: 0.76rem !important;
  font-weight: 700 !important; letter-spacing: 0.14em !important;
  text-transform: uppercase !important; cursor: pointer !important;
  text-align: center !important; transition: all var(--sf-ease) !important;
  box-shadow: var(--sf-shadow-gold) !important; outline: none !important;
}
button.single_add_to_cart_button:hover {
  background: var(--sf-gold-light) !important; border-color: var(--sf-gold-light) !important;
  box-shadow: 0 6px 32px rgba(232,184,75,0.38) !important; transform: translateY(-1px) !important;
}

/* Product meta */
.product_meta {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--sf-border-light);
  font-size: 0.76rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--sf-ink-3); font-family: var(--sf-ui);
}
.product_meta a { color: var(--sf-ink-2); transition: color var(--sf-ease); }
.product_meta a:hover { color: var(--sf-gold); }

/* ============================================================
   NOTICES
   ============================================================ */
.woocommerce-message {
  background: var(--sf-surface) !important; border-left: 3px solid var(--sf-gold) !important;
  border-radius: 0 var(--sf-r-sm) var(--sf-r-sm) 0 !important; color: var(--sf-ink) !important;
  font-family: var(--sf-ui) !important; font-size: 0.88rem !important;
  padding: 14px 18px !important; margin-bottom: 20px !important;
  box-shadow: var(--sf-shadow) !important; list-style: none !important;
}
.woocommerce-error {
  background: var(--sf-surface) !important; border-left: 3px solid var(--sf-error) !important;
  border-radius: 0 var(--sf-r-sm) var(--sf-r-sm) 0 !important; color: var(--sf-ink) !important;
  font-family: var(--sf-ui) !important; font-size: 0.88rem !important;
  padding: 14px 18px !important; margin-bottom: 20px !important; list-style: none !important;
}

/* ── Notices ── (above) */

/* ============================================================
   BUNDLE PRODUCT EMBED
   ============================================================ */
.tais-bundle-product { max-width: 680px; margin: 32px auto; padding: 0 16px; box-sizing: border-box; }
.tais-bundle-product .product {
  background: var(--sf-surface); border: 1px solid var(--sf-border);
  border-radius: var(--sf-r-lg); padding: 28px; box-shadow: var(--sf-shadow-md);
}
.tais-bundle-product .product_meta,
.tais-bundle-product .woocommerce-tabs,
.tais-bundle-product .related,
.tais-bundle-product .upsells { display: none !important; }
.tais-bundle-product div.summary {
  float: none !important; width: 100% !important; margin: 0 !important;
  display: flex !important; flex-direction: column !important;
  align-items: center !important; text-align: center !important;
}
.tais-bundle-product .woocommerce-product-gallery {
  display: block !important; width: 110px !important;
  margin: 0 auto 16px !important; float: none !important;
}
.tais-bundle-product .woocommerce-product-gallery img {
  width: 110px !important; height: 110px !important;
  object-fit: cover !important; border-radius: 50% !important;
  border: 2px solid var(--sf-border) !important;
}
.tais-bundle-product .woocommerce-product-gallery__wrapper > div:not(:first-child),
.tais-bundle-product .woocommerce-product-gallery__trigger,
.tais-bundle-product .flex-control-thumbs { display: none !important; }
.tais-bundle-product form.cart {
  justify-content: center !important; margin-top: 20px !important;
  padding-top: 18px !important; border-top: 1px solid var(--sf-border-light) !important;
}
.tais-bundle-product .option-description { display: none !important; }
.tais-bundle-product .child-name-field,
.tais-bundle-product .dropdown-selector { width: 100% !important; }

/* ============================================================
   CHECKOUT & CART
   ============================================================ */
.woocommerce-checkout .form-row label {
  font-size: 0.72rem !important; font-weight: 600 !important;
  letter-spacing: 0.07em !important; text-transform: uppercase !important;
  color: var(--sf-ink-3) !important; margin-bottom: 6px !important; display: block !important;
}
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select {
  width: 100% !important; padding: 13px 16px !important;
  background: var(--sf-surface) !important; border: 1.5px solid var(--sf-border) !important;
  border-radius: var(--sf-r) !important; font-family: var(--sf-ui) !important;
  font-size: 0.92rem !important; color: var(--sf-ink) !important;
  outline: none !important; transition: border-color var(--sf-ease) !important;
}
.woocommerce-checkout .form-row input:focus {
  border-color: var(--sf-gold) !important; box-shadow: 0 0 0 3px var(--sf-gold-bg) !important;
}
#place_order {
  display: block !important; width: 100% !important; padding: 16px !important;
  background: var(--sf-gold) !important; color: var(--sf-bg) !important;
  border: 2px solid var(--sf-gold) !important; border-radius: var(--sf-r) !important;
  font-family: var(--sf-ui) !important; font-size: 0.78rem !important;
  font-weight: 700 !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; cursor: pointer !important;
  transition: all var(--sf-ease) !important; box-shadow: var(--sf-shadow-gold) !important;
}
#place_order:hover { background: var(--sf-gold-light) !important; border-color: var(--sf-gold-light) !important; }
.woocommerce a.checkout-button, .woocommerce .wc-proceed-to-checkout .checkout-button {
  display: block !important; padding: 16px 24px !important;
  background: var(--sf-gold) !important; color: var(--sf-bg) !important;
  border: 2px solid var(--sf-gold) !important; border-radius: var(--sf-r) !important;
  font-family: var(--sf-ui) !important; font-size: 0.76rem !important;
  font-weight: 700 !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; text-align: center !important;
  cursor: pointer !important; transition: all var(--sf-ease) !important;
  box-shadow: var(--sf-shadow-gold) !important;
}
.woocommerce a.checkout-button:hover { background: var(--sf-gold-light) !important; border-color: var(--sf-gold-light) !important; }
.woocommerce-privacy-policy-text { display: none !important; }
.wc-block-components-checkout-place-order-button {
  background: var(--sf-gold) !important; border-color: var(--sf-gold) !important;
  color: var(--sf-bg) !important; font-family: var(--sf-ui) !important;
  font-weight: 700 !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; border-radius: var(--sf-r) !important;
}
.wc-block-components-text-input input:focus {
  border-color: var(--sf-gold) !important;
  box-shadow: 0 0 0 3px var(--sf-gold-bg) !important; outline: none !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.sf-footer { background: #0A0A0A; border-top: 1px solid var(--sf-border); padding: 52px 0; }
.sf-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.sf-footer__logo img, .sf-footer__logo .custom-logo {
  height: 48px !important; width: auto !important;
  filter: brightness(0) invert(1); opacity: 0.55; transition: opacity var(--sf-ease);
}
.sf-footer__logo a:hover img { opacity: 0.85; }
.sf-footer__divider { width: 32px; height: 1px; background: var(--sf-border); }
.sf-footer__copy { font-size: 0.72rem; color: var(--sf-ink-3); letter-spacing: 0.04em; font-family: var(--sf-ui); }
.sf-footer__copy strong { color: rgba(245,240,232,0.25); font-weight: 400; }

/* ============================================================
   GENERIC WP BUTTONS
   ============================================================ */
.wp-element-button, .wp-block-button__link {
  display: inline-block; padding: 11px 22px;
  background: var(--sf-gold); color: var(--sf-bg);
  border: 2px solid var(--sf-gold); border-radius: var(--sf-r);
  font-family: var(--sf-ui); font-size: 0.76rem;
  font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; cursor: pointer;
  transition: all var(--sf-ease); text-decoration: none;
}
.wp-element-button:hover, .wp-block-button__link:hover {
  background: var(--sf-gold-light); border-color: var(--sf-gold-light); color: var(--sf-bg);
}

/* ============================================================
   MISC
   ============================================================ */
.woocommerce-LoopProduct-link br { display: none !important; }
.custom-class-2 .post-138 { display: none !important; }
.more-options {
  width: 100%;
  max-width: 1300px;
}

/* ============================================================
   MORE OPTIONS / LESSONS GRID — uniform card alignment
   ============================================================ */

.more-options .woocommerce,
.more-options .products,
.more-options .woocommerce.columns-4,
.more-options .woocommerce.columns-4 > ul.products.columns-4 {
  width: 100%;
}

/* reset WooCommerce default 4-col float layout */
.more-options .woocommerce.columns-4 > ul.products.columns-4 {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  justify-content: center !important;
  align-items: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* kill WC floats / first / last / nth-child clearing */
.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product,
.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product.first,
.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product.last,
.more-options ul.products li.product,
.more-options ul.products[class*="columns-"] li.product {
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;

  flex: 0 0 220px !important;
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;

  padding: 18px 12px 16px !important;
  box-sizing: border-box !important;
  text-align: center !important;
}

.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product:nth-child(4n+1),
.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product:nth-child(4n),
.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product:nth-child(3n),
.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product:nth-child(3n+1),
.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product:nth-child(2n),
.more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product:nth-child(2n+1),
.more-options ul.products li.product:nth-child(4n+1),
.more-options ul.products li.product:nth-child(4n),
.more-options ul.products li.product:nth-child(3n),
.more-options ul.products li.product:nth-child(3n+1),
.more-options ul.products li.product:nth-child(2n),
.more-options ul.products li.product:nth-child(2n+1) {
  clear: none !important;
  margin-right: 0 !important;
}

/* product link block */
.more-options ul.products li.product > a.woocommerce-LoopProduct-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  flex: 1 1 auto !important;
  text-decoration: none !important;
}

/* uniform image */
.more-options ul.products li.product img {
  width: 150px !important;
  height: 150px !important;
  min-width: 150px !important;
  min-height: 150px !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto 12px !important;
  flex-shrink: 0 !important;
}

/* uniform title */
.more-options ul.products li.product .woocommerce-loop-product__title {
  width: 100% !important;
  min-height: 2.6em !important;
  margin: 0 0 8px !important;
  text-align: center !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* uniform price space */
.more-options ul.products li.product .price {
  width: 100% !important;
  min-height: 24px !important;
  margin: 0 0 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* button pinned down */
.more-options ul.products li.product .button {
  width: 100% !important;
  margin-top: auto !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* remove decorative pseudo-elements in this block only */
.more-options ul.products li.product::before,
.more-options ul.products li.product::after,
.more-options ul.products li.product > a.woocommerce-LoopProduct-link::before,
.more-options ul.products li.product > a.woocommerce-LoopProduct-link::after,
.more-options ul.products li.product .woocommerce-loop-product__title::before,
.more-options ul.products li.product .woocommerce-loop-product__title::after,
.more-options ul.products li.product .price::before,
.more-options ul.products li.product .price::after,
.more-options ul.products li.product .button::before,
.more-options ul.products li.product .button::after {
  content: none !important;
  display: none !important;
}

/* also neutralize any theme pseudo-elements deeper inside */
.wp-block-group.more-options ul.products *,
.wp-block-group.more-options ul.products *::before,
.wp-block-group.more-options ul.products *::after {
  box-sizing: border-box;
}

.wp-block-group.more-options ul.products *::before,
.wp-block-group.more-options ul.products *::after {
  content: none !important;
  display: none !important;
}

/* product with no visible price: reserve price row */
.more-options ul.products li.product.post-845 > a.woocommerce-LoopProduct-link::after {
  content: "";
  display: block !important;
  width: 100%;
  height: 24px;
  margin: 0 0 12px;
}

/* mobile */
@media (max-width: 768px) {
  .more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product,
  .more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product.first,
  .more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product.last,
  .more-options ul.products li.product {
    flex: 0 0 calc(50% - 7px) !important;
    width: calc(50% - 7px) !important;
    min-width: calc(50% - 7px) !important;
    max-width: calc(50% - 7px) !important;
  }
}

@media (max-width: 480px) {
  .more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product,
  .more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product.first,
  .more-options .woocommerce.columns-4 > ul.products.columns-4 > li.product.last,
  .more-options ul.products li.product {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  #about.sf-section,
  .sf-section--dark#about {
    padding: 25px 18px !important;
  }
}

@media (max-width: 480px) {
  #about.sf-section,
  .sf-section--dark#about {
    padding: 22px 14px !important;
  }
}

