/** Shopify CDN: Minification failed

Line 136:0 Unexpected "}"

**/
/* ============================================
   REMO ART — Custom Shopify Studio Theme CSS
   Motorsport Art by Remo Polledri
   ============================================
   
   HOW TO INSTALL:
   1. In Shopify Admin, go to Online Store → Themes → Edit Code
   2. Under Assets, click "Add new asset" → Create a blank file
   3. Name it "remo-art-custom.css" and paste this entire file
   4. In layout/theme.liquid, before </head>, add:
      <link href="{{ 'remo-art-custom.css' | asset_url }}" rel="stylesheet" type="text/css" media="all" />
   
   ============================================ */


/* ── COLOUR SCHEME SETUP ─────────────────────
   
   Configure these in Theme Editor → Settings → Colors:
   
   SCHEME 1 (Default / Light):
     Background: #FFFFFF
     Foreground: #1A1A1A
     Button:     #C41E3A (Racing Red)
     Button text: #FFFFFF
     Link:       #C41E3A
   
   SCHEME 2 (Dark sections — hero, headings):
     Background: #0D0D0D
     Foreground: #FFFFFF
     Button:     #C41E3A
     Button text: #FFFFFF
     Link:       #FFFFFF
   
   SCHEME 3 (Accent — CTAs, banners):
     Background: #C41E3A
     Foreground: #FFFFFF
     Button:     #FFFFFF
     Button text: #C41E3A
   
   SCHEME 4 (Footer):
     Background: #111111
     Foreground: #C41E3A
     Button:     #C41E3A
     Button text: #FFFFFF
   
   ──────────────────────────────────────────── */


/* ── TYPOGRAPHY ───────────────────────────────
   
   In Theme Editor → Settings → Typography:
   
   Heading font: Choose "Oswald" (or load via Google Fonts below)
     - Weight: 400
     - Style: Normal
     - Scale: 1.1
   
   Body font: Helvetica (default) or "DM Sans"
     - Weight: 400
     - Scale: 1.05
   
   ──────────────────────────────────────────── */

/* Load Oswald from Google Fonts (bold motorsport heading font) */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

:root {
  /* Override heading font to Oswald */
  --font-heading-family: "Oswald", sans-serif;
  --font-heading-weight: 500;
  --font-heading-style: normal;
  
  /* Racing Red accent */
  --remo-red: #C41E3A;
  --remo-red-hover: #A01830;
  --remo-dark: #0D0D0D;
  --remo-charcoal: #1A1A1A;
  --remo-silver: #B0B0B0;
}


/* ── GLOBAL HEADING OVERRIDES ─────────────── */

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5,
.rich-text__heading,
.banner__heading,
.image-with-text__heading,
.card__heading a,
.section-header__title {
  font-family: "Oswald", sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Larger heading scale for impact */
.rich-text__heading.h1,
.banner__heading.h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.12em;
}


/* ── HEADER ───────────────────────────────── */

/* Make header text bold and uppercase to match motorsport feel */
.header__menu-item span,
.header__active-menu-item {
  font-family: "Oswald", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Transparent header overlay — keeps the hero image visible */
.header-wrapper {
  position: absolute;
  width: 100%;
  background: transparent;
}

/* Dark text on transparent header (adjust if your hero is dark) */
.header-wrapper .list-menu span,
.header-wrapper summary svg,
.header-wrapper a svg,
.header-wrapper h1.header__heading span.h2,

}

/* When mobile menu opens, restore solid background */
.overflow-hidden-desktop .header-wrapper,
.overflow-hidden-tablet .header-wrapper {
  position: initial;
  background: var(--gradient-background);
}
/* Spread menu items evenly across the center space */
@media screen and (min-width: 990px) {
  .header__inline-menu .list-menu--inline {
    width: 100%;
    justify-content: center;
    gap: 3rem;
  }
  
  .header__inline-menu {
    flex-grow: 1;
    padding: 0 2rem;
  }
}


/* ── HERO BANNER ──────────────────────────── */

/* Add a subtle gradient overlay for text readability on hero */
.banner__media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.banner__content {
  z-index: 2;
  position: relative;
}

/* Hero heading style — big, bold, white */
.banner__heading {
  font-family: "Oswald", sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}


/* ── BUTTONS ──────────────────────────────── */

/* Override button radius for sharper motorsport feel */
:root {
  --buttons-radius: 4px;
  --buttons-radius-outset: 5px;
}

/* Primary button — Racing Red */
.button--primary,
.shopify-challenge__button {
  background-color: var(--remo-red) !important;
  border-color: var(--remo-red) !important;
  color: #FFFFFF !important;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  transition: all 0.3s ease;
}

.button--primary:hover {
  background-color: var(--remo-red-hover) !important;
  border-color: var(--remo-red-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

/* Secondary button — outlined */
.button--secondary {
  border-color: var(--remo-red) !important;
  color: var(--remo-red) !important;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-width: 2px;
  transition: all 0.3s ease;
}

.button--secondary:hover {
  background-color: var(--remo-red) !important;
  color: #FFFFFF !important;
}


/* ── PRODUCT CARDS ────────────────────────── */

/* Tighter, more gallery-like product grid */
.card__heading a {
  font-family: "Oswald", sans-serif !important;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hover zoom on product images */
.card__media .media img {
  transition: transform 0.5s ease;
}

.card-wrapper:hover .card__media .media img {
  transform: scale(1.03);
}

/* Clean price styling */
.price-item {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}


/* ── COLLECTION CARDS ─────────────────────── */

.collection-card-wrapper .card__heading {
  font-family: "Oswald", sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* ── IMAGE WITH TEXT SECTIONS ─────────────── */

.image-with-text__heading {
  font-family: "Oswald", sans-serif !important;
  text-transform: uppercase;
}

.image-with-text__text {
  line-height: 1.8;
}


/* ── RICH TEXT SECTION HEADINGS ────────────── */

/* Section titles like "ART BY TYPE", "LIMITED EDITIONS" etc */
.rich-text__heading {
  font-family: "Oswald", sans-serif !important;
  color: rgb(var(--color-foreground));
}

/* On dark backgrounds, use Racing Red for section titles */
.color-scheme-2 .rich-text__heading,
.color-scheme-4 .rich-text__heading {
  color: var(--remo-red) !important;
}


/* ── FOOTER ───────────────────────────────── */

.footer {
  border-top: 3px solid var(--remo-red);
}

.list-social__link:hover {
  color: var(--remo-red) !important;
}


/* ── ANNOUNCEMENT BAR (optional) ──────────── */

.announcement-bar {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
}


/* ── SCROLLBAR (subtle dark styling) ──────── */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--remo-red);
}


/* ── SUBTLE ANIMATIONS ────────────────────── */

/* Fade in sections on scroll (works with Studio's built-in scroll triggers) */
.scroll-trigger.animate--slide-in {
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ── MOBILE REFINEMENTS ───────────────────── */

@media screen and (max-width: 749px) {
  .banner__heading {
    font-size: 2.4rem;
    letter-spacing: 0.08em;
  }
  
  .rich-text__heading.h1 {
    font-size: 1.8rem;
  }
  
  .header__menu-item span {
    font-size: 14px !important;
  }
}


/* ── RACING STRIPE ACCENT (optional) ──────── */
/* Uncomment below to add a thin red racing stripe at the very top */
/*
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--remo-red);
  z-index: 9999;
}
*/
