/** Shopify CDN: Minification failed

Line 799:50 Unexpected "("
Line 836:27 Unexpected "<"
Line 839:64 Comments in CSS use "/* ... */" instead of "//"

**/
/*
 * OpenForge — Custom theme overrides
 * Loaded after Horizon's main stylesheet.
 * Brand: black + orange #FF6B1A + neutrals
 */

:root {
  /* OpenForge brand colors */
  --of-orange: #FF6B1A;
  --of-orange-hover: #FF8A42;
  --of-black: #0A0A0A;
  --of-elevated: #161616;
  --of-card: #1A1A1A;
  --of-border: #2A2A2A;
  --of-text: #F5F5F5;
  --of-text-muted: #9CA3AF;
  --of-mono: 'JetBrains Mono', monospace;
}

/* ---------- Logo (use uploaded asset instead of text) ---------- */
.header__logo img,
.header-component .header__logo-image,
.header logo img {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1); /* make logo white since we uploaded the colored version */
}

/* ---------- Buttons: orange instead of inverse ---------- */
.button--primary,
[class*="button--primary"],
.cart__checkout-button,
.shopify-payment-button__button,
button[name="checkout"],
button[name="add"] {
  background-color: var(--of-orange) !important;
  color: #FFFFFF !important;
  border: none !important;
  transition: background-color 0.2s ease;
}

.button--primary:hover,
[class*="button--primary"]:hover,
.shopify-payment-button__button:hover {
  background-color: var(--of-orange-hover) !important;
}

.button--secondary,
[class*="button--secondary"] {
  background-color: transparent !important;
  color: var(--of-text) !important;
  border: 1px solid var(--of-border) !important;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.button--secondary:hover,
[class*="button--secondary"]:hover {
  border-color: var(--of-orange) !important;
  color: var(--of-orange) !important;
}

/* ---------- Section spacing (OpenForge prefers tighter) ---------- */
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* ---------- Body text color fixes for dark mode ---------- */
body {
  color: var(--of-text);
  background-color: var(--of-black);
}

/* ---------- Cards on dark background ---------- */
.card,
.product-card,
.collection-card {
  background-color: var(--of-card) !important;
  border: 1px solid var(--of-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover,
.product-card:hover,
.collection-card:hover {
  transform: translateY(-2px);
  border-color: var(--of-orange);
}

.card__title,
.product-card__title {
  color: var(--of-text);
}

.card__price,
.product-card__price {
  color: var(--of-orange) !important;
  font-weight: 600;
}

/* ---------- Hero (home page) ---------- */
.hero-of {
  background: linear-gradient(135deg, var(--of-black) 0%, var(--of-elevated) 100%);
  padding: 6rem 2rem;
  text-align: center;
}

.hero-of__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--of-text);
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-of__title-accent {
  color: var(--of-orange);
}

.hero-of__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--of-text-muted);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.hero-of__cta {
  display: inline-block;
  background-color: var(--of-orange);
  color: #FFFFFF;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-of__cta:hover {
  background-color: var(--of-orange-hover);
  transform: translateY(-1px);
  color: #FFFFFF;
}

/* ---------- Footer: dark elevated + brand colors ---------- */
.footer {
  background-color: var(--of-elevated) !important;
  border-top: 1px solid var(--of-border);
}

.footer a {
  color: var(--of-text-muted) !important;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--of-orange) !important;
}

.footer__copyright,
.footer__content-bottom {
  color: var(--of-text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--of-border);
  padding-top: 1.5rem;
}

/* ---------- Product page (bundle detail) ---------- */
.product__title {
  color: var(--of-text);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.product__price {
  color: var(--of-orange) !important;
  font-size: 1.75rem;
  font-weight: 700;
}

.product__description {
  color: var(--of-text);
  line-height: 1.7;
}

.product__description h2,
.product__description h3 {
  color: var(--of-text);
  margin-top: 1.5rem;
}

.product__description ul,
.product__description ol {
  color: var(--of-text-muted);
  padding-left: 1.5rem;
}

.product__description strong {
  color: var(--of-text);
}

/* ---------- Featured products section on home ---------- */
.featured-products-of {
  background-color: var(--of-black);
  padding: 4rem 2rem 6rem;
}

.featured-products-of__title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--of-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.featured-products-of__subtitle {
  text-align: center;
  color: var(--of-text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.featured-products-of__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- Header compact: force small height regardless of theme defaults ---------- */
header-component,
header-component.header {
  --header-height: 60px;
  --header-group-height: 60px;
}

header-component .header__row--top,
header-component.header--compact .header__row--top {
  min-height: 60px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

/* Announcement bar: thin and unobtrusive */
complementary,
.header-announcements,
[class*="announcements"] {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  font-size: 0.8125rem !important;
}

/* Hero section: trim default top padding from 96px to something smaller */
.section-wrapper .section--page-width,
.section-wrapper .section--full-width {
  padding-top: 48px !important;
}
.header:not([data-sticky-state="inactive"]),
.header-component:not([data-sticky-state="inactive"]),
header-component:not([data-sticky-state="inactive"]) {
  background-color: var(--of-black) !important;
  border-bottom: 1px solid var(--of-border);
}

/* ---------- Hero: hide the default OpenForge cursive SVG logo
   that Pitch renders as a fallback background image on the hero section. */
.background-image-container:has(svg[viewBox="0 0 1300 731"]) {
  display: none !important;
}

/* ---------- Email signup "Sign up" button: orange instead of custom inverse ---------- */
.email-signup__button,
.email-signup button,
.email-signup input[type="submit"],
button.email-signup__button,
button[class*="email-signup__button"] {
  background-color: var(--of-orange) !important;
  color: #FFFFFF !important;
  border-color: var(--of-orange) !important;
}

.email-signup__button:hover,
.email-signup button:hover,
.email-signup input[type="submit"]:hover,
button.email-signup__button:hover,
button[class*="email-signup__button"]:hover {
  background-color: var(--of-orange-hover) !important;
  border-color: var(--of-orange-hover) !important;
  color: #FFFFFF !important;
}

.header__menu-item,
.header__link,
.nav__link {
  color: var(--of-text) !important;
}

.header__menu-item:hover,
.header__link:hover {
  color: var(--of-orange) !important;
}

/* ---------- Form inputs on dark ---------- */
input[type="text"],
input[type="email"],
input[type="search"],
textarea,
select {
  background-color: var(--of-elevated) !important;
  color: var(--of-text) !important;
  border-color: var(--of-border) !important;
}

input::placeholder,
textarea::placeholder {
  color: var(--of-text-muted) !important;
}

/* ---------- Tagline (used in legal pages etc) ---------- */
.tagline-of {
  color: var(--of-orange);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* ---------- Utility: hide-by-default + utility for OpenForge elements ---------- */
.of-only {
  display: none !important;
}

/* ---------- Section background alternation for visual rhythm ---------- */
.section--of-dark {
  background-color: var(--of-black);
}

.section--of-elevated {
  background-color: var(--of-elevated);
}

/* ===========================================================
 * OPENFORGE HOMEPAGE REDESIGN — Custom additions 2026-06-17
 * =========================================================== */

/* ---------- Hero split (media-with-content) ---------- */
.section-wrapper:has(.of-hero-split),
.hero-of-split {
  min-height: 80vh;
}

.of-hero-split__caption {
  color: var(--of-orange);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin: 0;
}

.of-hero-split__heading h1,
.of-hero-split__heading h2 {
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

.of-hero-split__subtitle {
  font-size: 1.125rem;
  color: var(--of-text-muted);
  line-height: 1.55;
  max-width: 480px;
}

.of-hero-split__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.of-hero-split__buttons .button--primary,
.of-hero-split__buttons a[href*="/collections"] {
  background-color: var(--of-orange);
  color: #FFFFFF !important;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.of-hero-split__buttons .button--primary:hover,
.of-hero-split__buttons a[href*="/collections"]:hover {
  background-color: var(--of-orange-hover);
}

.of-hero-split__buttons .button--secondary,
.of-hero-split__buttons a[href*="/pages"] {
  background-color: transparent;
  color: var(--of-text) !important;
  border: 1px solid var(--of-border);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.of-hero-split__buttons .button--secondary:hover,
.of-hero-split__buttons a[href*="/pages"]:hover {
  border-color: var(--of-orange);
  color: var(--of-orange) !important;
}

/* ---------- Announcement strip (pattern background) ---------- */
.section-wrapper:has(.of-announcement-strip) {
  border-top: 1px solid var(--of-border);
  border-bottom: 1px solid var(--of-border);
}

.of-announcement-strip {
  text-align: center;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

/* ---------- Product grid (Bundles) ---------- */
.section-wrapper:has(.of-product-grid) .section-resource-list__header {
  text-align: left;
  margin-bottom: 32px;
}

.section-wrapper:has(.of-product-grid) .section-resource-list__header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.section-wrapper:has(.of-product-grid) .section-resource-list__header p {
  color: var(--of-text-muted);
  font-size: 1.125rem;
  max-width: 720px;
}

/* ---------- Divider naranja ---------- */
.of-divider {
  height: 4px;
  background: var(--of-orange);
  width: 100%;
}

/* ---------- Why / Built-by-makers splits (media-with-content) ---------- */
.section-wrapper:has(.of-split-content) h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 8px 0 16px;
}

.section-wrapper:has(.of-split-content) .of-split-content__caption {
  color: var(--of-orange);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.section-wrapper:has(.of-split-content) p {
  color: var(--of-text-muted);
  line-height: 1.65;
  font-size: 1.0625rem;
  max-width: 520px;
}

/* ---------- Feature cards (4-col) ---------- */
.of-features-grid__card {
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.of-features-grid__card:hover {
  border-color: var(--of-orange) !important;
  transform: translateY(-2px);
}

.of-features-grid__icon {
  font-size: 2.25rem;
  color: var(--of-orange);
  line-height: 1;
  display: block;
}

.of-features-grid__card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--of-text);
  margin: 8px 0;
}

.of-features-grid__card p {
  color: var(--of-text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* ---------- Berlin jumbo band (pattern background) ---------- */
.of-jumbo-band {
  position: relative;
  text-align: center;
}

.of-jumbo-band__kicker {
  color: var(--of-orange);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.of-jumbo-band__heading {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--of-text);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Featured blog editorial ---------- */
.section-wrapper:has(.featured-blog-posts) h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 32px;
}

/* ---------- Stats band ---------- */
.of-stat__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--of-orange);
  line-height: 1;
  margin: 0;
}

.of-stat__label {
  color: var(--of-text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 8px 0 0;
}

/* ---------- Newsletter orange ---------- */
.of-newsletter-orange {
  background-color: var(--of-orange) !important;
}

.of-newsletter-orange h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0;
}

.of-newsletter-orange p {
  color: #FFFFFF !important;
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.95;
}

.of-newsletter-orange .email-signup input[type="email"] {
  background-color: rgba(255, 255, 255, 0.95) !important;
  color: #161616 !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 1rem;
}

.of-newsletter-orange .email-signup input[type="email"]::placeholder {
  color: #666 !important;
}

.of-newsletter-orange .email-signup__button {
  background-color: #161616 !important;
  color: #FFFFFF !important;
  border-color: #161616 !important;
  border-radius: 6px;
  padding: 14px 28px;
  font-weight: 600;
  margin-top: 12px;
  transition: background-color 0.2s ease;
}

.of-newsletter-orange .email-signup__button:hover {
  background-color: #000 !important;
  border-color: #000 !important;
}

/* ---------- Page wrapper fix for dev theme scroll lock ---------- */
.page-wrapper {
  overflow-y: auto !important;
}

/* ===========================================================
 * HERO BUTTONS + LINKS FIX (2026-07-17 06:30)
 * Without explicit button styles, the hero CTA links render as
 * plain unstyled text. Force OpenForge brand on hero buttons, kill
 * the default Shopify blue link color on the home, and hide the
 * invasive Sidekick chat widget.
 * =========================================================== */
a.button--primary,
a.button--secondary,
#shopify-section-template--27001538773321__hero_split a[href*="/collections/all"],
#shopify-section-template--27001538773321__hero_split a[href*="/pages/"] {
  text-decoration: none !important;
  font-weight: 600 !important;
  display: inline-block !important;
}
#shopify-section-template--27001538773321__hero_split a[href*="/collections/all"] {
  background-color: #FF6B1A !important;
  color: #FFFFFF !important;
  padding: 14px 28px !important;
  border-radius: 6px !important;
  font-size: 1rem !important;
  transition: background-color 0.2s ease, transform 0.2s ease !important;
  border: none !important;
  box-shadow: none !important;
}
#shopify-section-template--27001538773321__hero_split a[href*="/collections/all"]:hover {
  background-color: #FF8A42 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px) !important;
}
#shopify-section-template--27001538773321__hero_split a[href*="/pages/"] {
  background-color: transparent !important;
  color: #F5F5F5 !important;
  padding: 13px 26px !important;
  border-radius: 6px !important;
  border: 1px solid #2A2A2A !important;
  font-size: 1rem !important;
  margin-left: 12px !important;
  transition: border-color 0.2s ease, color 0.2s ease !important;
}
#shopify-section-template--27001538773321__hero_split a[href*="/pages/"]:hover {
  border-color: #FF6B1A !important;
  color: #FF6B1A !important;
}

/* Kill the default Shopify blue link color on the home + global focus rings */
:where(.shopify-section, .page-wrapper) a:not([class*="button"]):not([class*="hero__media"]) {
  color: inherit !important;
}
:where(.shopify-section, .page-wrapper) a:not([class*="button"]):hover {
  color: #FF6B1A !important;
}

/* The "Shop all" / nav links were rendering as text-shadow blue/white mix.
   The header wrapper hides the brand but the link colors are still bleeding in. */
.header__menu-item,
.header__link,
.header__inline-menu .header__menu-item,
.site-header a[href*="/collections/"] {
  color: #F5F5F5 !important;
  text-decoration: none !important;
}
.header__menu-item:hover,
.header__link:hover {
  color: #FF6B1A !important;
}

/* Hide the orphaned slideshow controls leaking into the hero */
.slideshow-control,
.slideshow-control--previous,
.slideshow-control--next,
.slideshow-control--style-chevron,
.slideshow-control--style-arrow,
button.slideshow-control {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Sidekick chat launcher — Shopify AI assistant that lives in the top-right
   of every storefront. It's an anonymous DIV with z-index 2147483647 and
   no class. Kill it by z-index + position + size constraints. */
body > div[style*="z-index: 2147483647"],
body > div[style*="z-index:2147483647"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.sidekick-container,
.sidekick-frame,
.sidekick-launcher,
.sidekick-portal,
.sidekick-messenger,
[class*="Sidekick"],
sidekick-app {
  display: none !important;
}

/* The hero_split renders a 2-column grid: text on the left, media on the
   right. With the media hidden the right side is empty black space.
   Paint the right column with the OpenForge Spark bundle image and
   a soft orange gradient to give the page a real focal point. */
#shopify-section-template--27001538773321__hero_split .hero {
  position: relative;
  overflow: hidden;
}
#shopify-section-template--27001538773321__hero_split .hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background-image:
    linear-gradient(90deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.0) 25%, rgba(10, 10, 10, 0.6) 100%),
    url('/cdn/shop/files/S001-starter-kit_b66c522b-a973-4027-a961-d63177f54af0.png?v=1781664881');
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
#shopify-section-template--27001538773321__hero_split .hero__container,
#shopify-section-template--27001538773321__hero_split .hero__content,
#shopify-section-template--27001538773321__hero_split .hero__media-grid {
  position: relative;
  z-index: 1;
}

/* Subtitle color is too dim — bump it to a high-contrast off-white */
#shopify-section-template--27001538773321__hero_split .hero__content .text-block:last-of-type p,
#shopify-section-template--27001538773321__hero_split .hero__content > div > div:last-child p,
#shopify-section-template--27001538773321__hero_split .hero__content p {
  color: #C8CACE !important;
  font-size: 1.0625rem !important;
  line-height: 1.55 !important;
  max-width: 540px !important;
}

/* Eyebrow caption "OPENFORGE × BERLIN" gets the brand orange */
#shopify-section-template--27001538773321__hero_split .hero__content .text-block:first-of-type p,
#shopify-section-template--27001538773321__hero_split .hero__content > div > div:first-child p,
#shopify-section-template--27001538773321__hero_split .hero__content .caption p {
  color: #FF6B1A !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-size: 0.8125rem !important;
}

/* Hero section — give it a real min-height, push the image column in,
   and prevent the text column from collapsing into a thin left strip. */
#shopify-section-template--27001538773321__hero_split .section {
  min-height: 640px !important;
  padding-block-start: 48px !important;
  padding-block-end: 64px !important;
}
#shopify-section-template--27001538773321__hero_split .hero__content {
  max-width: 640px !important;
  padding-inline-start: 24px !important;
}
#shopify-section-template--27001538773321__hero_split .hero__media-grid,
#shopify-section-template--27001538773321__hero_split .hero__media {
  display: none !important;
}
 * The Pitch hero_split renders a placeholder SVG (the "couple by water"
 * illustration) as its media. We hide that and paint our own brand-consistent
 * background: dark with the OpenForge schematic pattern + orange accent.
 * =========================================================== */
.section-wrapper:has(.hero__split),
.section:has(.hero__split) {
  background-color: #0A0A0A !important;
  position: relative;
  overflow: hidden;
}
.section-wrapper:has(.hero__split)::before,
.section:has(.hero__split)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 107, 26, 0.08) 0%, rgba(0,0,0,0) 60%),
    url('/cdn/shop/t/3/assets/of-pattern-schematic.svg?v=1781704269');
  background-size: cover, 800px 800px;
  background-position: center, center;
  background-repeat: no-repeat, repeat;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}
.section-wrapper:has(.hero__split) > *,
.section:has(.hero__split) > * {
  position: relative;
  z-index: 1;
}
.hero__media-grid > svg.hero__media {
  display: none !important;
}
.hero__container,
.hero.color-custom-template--27001538773321__hero_split {
  background: transparent !important;
}
 * The Pitch theme renders <product-card> web components with
 * collapsed --size-style-width/height custom properties, so cards
 * end up at 2px tall. Force a sane default and surface inner content.
 * The data-product-id attribute is the bare numeric ID (no gid:// prefix).
 * =========================================================== */
.section-resource-list product-card.product-card.size-style,
.section-resource-list product-card.product-card {
  display: block !important;
  min-height: 420px !important;
  height: 420px !important;
  width: 100% !important;
  background-color: #1A1A1A !important;
  border: 1px solid #2A2A2A !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  position: relative !important;
  transition: transform 0.2s ease, border-color 0.2s ease !important;
  --size-style-width: 100% !important;
  --size-style-height: 420px !important;
  grid-area: 1 / 1 !important;
}
.resource-list__item product-card.product-card.size-style,
.resource-list__item product-card.product-card,
:is(.product-grid__item, .resource-list__item) product-card.product-card.size-style,
:is(.product-grid__item, .resource-list__item) product-card.product-card {
  display: block !important;
  height: 420px !important;
  min-height: 420px !important;
  max-height: none !important;
}
.section-resource-list product-card.product-card:hover {
  transform: translateY(-2px) !important;
  border-color: #FF6B1A !important;
}
.section-resource-list product-card.product-card a.product-card__link {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  text-decoration: none !important;
  color: inherit !important;
}
.section-resource-list product-card.product-card variant-picker,
.section-resource-list product-card.product-card product-sku-component {
  display: none !important;
}
/* Force the visual placeholder image to fill the top of the card.
   The theme renders the actual product image inside the link,
   but in a size-style layout that collapses; we paint our own background. */
.section-resource-list product-card.product-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0A0A0A;
  background-image: var(--card-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
.section-resource-list product-card.product-card[data-product-id="10244503535945"] { --card-bg: url('/cdn/shop/files/S001-starter-kit_b66c522b-a973-4027-a961-d63177f54af0.png?v=1781664881'); --card-title: 'Spark — Arduino Starter Kit'; }
.section-resource-list product-card.product-card[data-product-id="10244503568713"] { --card-bg: url('/cdn/shop/files/E001-led-light_9620007a-3ef6-472f-99a1-a43d9a5346ef.png?v=1781664882'); --card-title: 'Ember — Smart LED Light'; }
.section-resource-list product-card.product-card[data-product-id="10244503601481"] { --card-bg: url('/cdn/shop/files/F001-plotter-arm_0b656b3b-f1aa-4188-aa36-3413cb6fbb12.png?v=1781664887'); --card-title: 'Forge — Mini Plotter Arm'; }
.section-resource-list product-card.product-card[data-product-id="10244503634249"] { --card-bg: url('/cdn/shop/files/C001-robot-car_57401ccd-cd9e-4999-98c7-4f522088e8bb.png?v=1781664885'); --card-title: 'Crucible — Autonomous Robot Car'; }
.section-resource-list .resource-list__item {
  padding: 8px !important;
  width: 100% !important;
}
.section-resource-list product-card.product-card product-price {
  display: block !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 3 !important;
  background-color: #161616 !important;
  color: #FF6B1A !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  padding: 16px 18px !important;
  margin: 0 !important;
  border-top: 1px solid #2A2A2A !important;
  text-align: left !important;
}
.section-resource-list product-card.product-card::after {
  content: var(--card-title, '');
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  line-height: 1.25;
  pointer-events: none;
}
.section-resource-list product-card.product-card .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Class-based typography for OpenForge redesign ---------- */
.of-caption {
  color: var(--of-orange);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin: 0;
}

.of-announcement-text {
  color: #FFFFFF;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
}

.of-icon {
  font-size: 2.25rem;
  color: var(--of-orange);
  line-height: 1;
  margin: 0;
}

.of-jumbo-heading {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--of-text);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.of-stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--of-orange);
  line-height: 1;
  margin: 0;
  text-align: center;
}

.of-stat-label {
  color: var(--of-text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 8px 0 0;
  text-align: center;
}

.of-newsletter-heading {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.of-newsletter-subtitle {
  color: #FFFFFF;
  font-size: 1.125rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.95;
}
