/** Shopify CDN: Minification failed

Line 34:0 All "@import" rules must come first

**/
/*
  RACKRESHET – Custom Brand CSS for Shopify Horizon Theme
  =========================================================
  Add this file to your Horizon theme via:
    Online Store → Themes → Edit code → assets/ → Upload file
  It is already linked in snippets/stylesheets.liquid.
*/

/* ── Custom Font: Tel Aviv Brutalist Bold ─────────────── */
@font-face {
  font-family: 'TelAviv';
  src: url('TelAviv-BrutalistBold.woff2') format('woff2'),
       url('TelAviv-BrutalistBold.ttf')   format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── Custom Font: Plus Jakarta Sans Medium ────────────── */
@font-face {
  font-family: 'PlusJakarta';
  src: url('PlusJakartaSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ── Google Fonts: Heebo as fallback only ─────────────── */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;700;900&display=swap');

/* ── Hide Default Shopify Horizon Header ─────────────── */
/*
  The custom rr-navbar section replaces the built-in header.
  This hides the default header without touching theme layout files.
  The Horizon header section is rendered with id="shopify-section-header".
*/
#shopify-section-header {
  display: none !important;
}

/* ── Offset body for fixed navbar (80px = 60px height + 10px padding × 2) ── */
body {
  padding-top: 80px;
}

/* ── Brand Tokens ─────────────────────────────────────── */
:root {
  --rr-orange:        #FF4500;
  --rr-orange-hover:  #D93B00;
  --rr-orange-glow:   rgba(255, 69, 0, 0.35);
  --rr-black:         #0A0A0A;
  --rr-black-mid:     #141414;
  --rr-black-card:    #1A1A1A;
  --rr-white:         #FAFAFA;
  --rr-gray-light:    #F5F5F5;
  --rr-gray-mid:      #2A2A2A;
  --rr-gray-text:     rgba(255, 255, 255, 0.55);
  --rr-border:        rgba(255, 255, 255, 0.08);
}

/* ── Global Base ──────────────────────────────────────── */
body {
  font-family: 'PlusJakarta', 'Heebo', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--rr-black);
  color: var(--rr-white);
}

/* Body text — Plus Jakarta everywhere */
p, span, a, li, td, th, label, input, textarea, select, button {
  font-family: 'PlusJakarta', 'Heebo', sans-serif;
}

/* Headlines — TelAviv Brutalist Bold only */
h1, h2,
.h1, .h2 {
  font-family: 'TelAviv', 'Heebo', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}

/* Subheadlines — Plus Jakarta Sans Medium */
h3, h4, h5, h6,
.h3, .h4, .h5, .h6 {
  font-family: 'PlusJakarta', 'Heebo', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em;
}

/* ── Primary Buttons ──────────────────────────────────── */
.button,
.btn,
button[type="submit"],
.product-form__submit {
  background: var(--rr-orange) !important;
  color: #fff !important;
  border-color: var(--rr-orange) !important;
  border-radius: 8px !important;
  font-family: 'TelAviv', 'Heebo', sans-serif !important;
  font-size: 18px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  transition: background 0.15s ease, transform 0.1s ease !important;
  box-shadow: 0 4px 20px var(--rr-orange-glow) !important;
}

.button:hover,
.btn:hover,
.product-form__submit:hover {
  background: var(--rr-orange-hover) !important;
  border-color: var(--rr-orange-hover) !important;
  transform: translateY(-1px) !important;
}

.button:active,
.btn:active,
.product-form__submit:active {
  transform: translateY(0) !important;
}

/* ── Native Product Cards ─────────────────────────────── */
.card,
.product-card,
.card-wrapper {
  border-radius: 12px !important;
  border: 1px solid var(--rr-border) !important;
  background: var(--rr-black-card) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  overflow: hidden;
}

.card:hover,
.product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px var(--rr-orange-glow) !important;
}

/* ── Badges ───────────────────────────────────────────── */
.badge,
.badge--sale {
  background: var(--rr-orange) !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-family: 'TelAviv', 'Heebo', sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.06em !important;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--rr-black) !important;
  color: var(--rr-gray-text) !important;
}

.footer a {
  color: var(--rr-gray-text) !important;
  transition: color 0.15s ease !important;
}

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

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-thumb { background: var(--rr-orange); border-radius: 100px; }
::-webkit-scrollbar-track { background: var(--rr-black); }

/* ── Focus ────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--rr-orange) !important;
  outline-offset: 2px !important;
}

/* ═══════════════════════════════════════════════════════
   RR HOMEPAGE SECTIONS
   ═══════════════════════════════════════════════════════ */

/* ── Announcement Bar ─────────────────────────────────── */
.rr-announce-section .section {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
}

/* ── Hero ─────────────────────────────────────────────── */
.rr-hero-section {
  padding: 0 !important;
  margin: 0 !important;
}

.rr-hero-outer {
  padding: 0 !important;
  background: transparent !important;
}

/* ── Custom Product Cards ─────────────────────────────── */
.rr-products-section .rr-prod-card {
  border-radius: 12px !important;
  border: 1px solid var(--rr-border) !important;
  background: var(--rr-black-card) !important;
}

.rr-products-section .rr-prod-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 60px var(--rr-orange-glow) !important;
}

/* ── Footer Custom ────────────────────────────────────── */
.rr-footer-custom-section,
.rr-footer-custom-section .section,
.rr-footer-custom-section .section-background {
  background: var(--rr-black) !important;
}

/* ── Shared Animations ────────────────────────────────── */
@keyframes rr-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes rr-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.rr-animate { animation: rr-fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
.rr-animate--delay-1 { animation-delay: 0.08s; }
.rr-animate--delay-2 { animation-delay: 0.16s; }
.rr-animate--delay-3 { animation-delay: 0.24s; }
.rr-animate--delay-4 { animation-delay: 0.32s; }
