/** Shopify CDN: Minification failed

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

**/
/* ============================================
   RIGORER CANADA — style.css
   Edit this file to change colours, fonts,
   spacing and layout across the whole site.
   ============================================ */

/* ---------- CSS VARIABLES (easy to customise) ---------- */
:root {
  --accent:       #ec0101;   /* red — used for sale prices, hover states */
  --black:        #000000;
  --white:        #ffffff;
  --text:         #222222;
  --light-grey:   #f5f5f5;
  --border:       #e5e5e5;
  --font:         'Inter', sans-serif;
  --sale-badge:   #ff4e00;
}

/* ---------- GOOGLE FONT ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { font-size: 62.5%; scroll-behavior: smooth; }
body   { font-family: var(--font); font-size: 14px; color: var(--text); background: #fff; overflow-x: hidden; line-height: 1.7; }
a      { color: inherit; text-decoration: none; }
img    { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.canada-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  letter-spacing: 0.5px;
}

/* ============================================
   HEADER
   ============================================ */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* Top row: logo + icons */
.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 20px;
}
.logo img { height: 36px; width: auto; }

/* Bottom row: nav */
.header-nav-row {
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--border);
  padding: 6px 0;
}

/* NAV */
nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
nav a {
  padding: 5px 14px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
nav a:hover         { color: var(--accent); }
nav a.nav-sale      { color: var(--accent); font-weight: 700; }

/* NAV ICONS */
.nav-icons { display: flex; align-items: center; gap: 4px; }
.nav-icons a {
  padding: 0 7px;
  display: flex;
  align-items: center;
  color: var(--text);
}
.nav-icons a:hover { color: var(--accent); }
.nav-icons svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none;
  stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
/* MOBILE MENU BUTTON */
.mobile-nav-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-nav-btn svg { width: 28px; height: 16px; fill: var(--text); }

@media (min-width: 1025px) { .mobile-nav-btn { display: none; } }
@media (max-width: 1024px) { .header-nav-row { display: none; } }

/* ============================================
   HERO SLIDESHOW
   ============================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #111;
  margin-bottom: 50px;
}
.slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide          { min-width: 100%; position: relative; }
.slide img      { width: 100%; height: 500px; object-fit: cover; display: block; }
.slide-placeholder {
  width: 100%; height: 500px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #888;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Prev / Next buttons */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.slider-btn:hover { background: #fff; }
.slider-btn.prev  { left: 20px; }
.slider-btn.next  { right: 20px; }
.slider-btn svg   { width: 16px; height: 16px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: background 0.2s;
  cursor: pointer;
}
.dot.active { background: #fff; }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section {
  max-width: 1300px;
  margin: 0 auto 50px;
  padding: 0 20px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media (min-width: 768px) { .section-title { font-size: 24px; } }

.view-all-btn {
  border: 1px solid #222;
  background: transparent;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
}
.view-all-btn:hover { background: #222; color: #fff; }

/* ============================================
   PRODUCT GRID
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px)  { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; } }
@media (min-width: 1025px) { .product-grid.cols-6 { grid-template-columns: repeat(6, 1fr); } }

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card { position: relative; }
.product-card:hover .product-img img.product-img-primary { transform: scale(1.04); }

.product-img {
  position: relative;
  overflow: hidden;
  background: var(--light-grey);
  aspect-ratio: 1 / 1;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

/* Hover image swap — show second product image on hover */
.product-img img.product-img-secondary {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
}
.product-card:hover .product-img img.product-img-primary {
  opacity: 0;
  transform: scale(1.04);
}
.product-card:hover .product-img img.product-img-secondary {
  opacity: 1;
  transform: scale(1.04);
}

/* Badges */
.product-badges {
  position: absolute;
  top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2;
}
.badge          { font-size: 11px; font-weight: 700; padding: 3px 7px; color: #fff; letter-spacing: 0.3px; }
.badge-sale     { background: var(--sale-badge); }
.badge-new      { background: #cfc8af; }
.badge-soldout  { background: #999; }

/* Info */
.product-info  { padding: 10px 0 0; }
.product-title {
  font-size: 12px; font-weight: 400; line-height: 1.4; margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price     { font-size: 14px; font-weight: 600; }
.product-price del { color: #888; font-weight: 400; margin-right: 5px; font-size: 13px; }
.product-price ins { color: var(--accent); text-decoration: none; }

/* ============================================
   BANNER
   ============================================ */
.banner-section              { margin-bottom: 50px; }
.banner-section img          { width: 100%; height: auto; display: block; }

/* ============================================
   COLLECTION GRID
   ============================================ */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 768px)  { .collection-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
@media (min-width: 1025px) { .collection-grid { grid-template-columns: repeat(6, 1fr); } }

.collection-item           { text-align: center; }
.collection-item:hover .coll-img img { transform: scale(1.04); }

.coll-img       { overflow: hidden; background: var(--light-grey); aspect-ratio: 2 / 3; }
.coll-img.wide  { aspect-ratio: 3 / 2; }
.coll-img img   { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.coll-title     { margin-top: 10px; font-size: 13px; font-weight: 500; }

/* ============================================
   NEWS / BLOG
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .news-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; } }

.news-card .news-img          { aspect-ratio: 3 / 2; overflow: hidden; background: var(--light-grey); }
.news-card .news-img img      { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-img img { transform: scale(1.04); }

.news-info    { padding: 12px 0 0; }
.news-title   { font-size: 14px; font-weight: 500; line-height: 1.4; margin-bottom: 6px; }
.news-date    { font-size: 12px; color: #888; }
.news-excerpt {
  font-size: 12px; color: #666; margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--black); color: var(--white); }

.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 45px 20px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px)  { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1025px) { .footer-top { grid-template-columns: 7fr 5fr 3fr 3fr 3fr 3fr; } }

.footer-newsletter-text { font-size: 16px; font-weight: 500; line-height: 1.4; }

.footer-email-form        { display: flex; }
.footer-email-form input  {
  flex: 1; padding: 10px 14px;
  border: 1px solid #fff; background: transparent;
  color: #fff; font-size: 13px; outline: none;
}
.footer-email-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.footer-email-form button {
  padding: 10px 18px;
  background: #fff; color: #222;
  border: 1px solid #fff;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s;
}
.footer-email-form button:hover { background: #ddd; }

.footer-col h3        { font-size: 15px; font-weight: 600; margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-col ul        { list-style: none; }
.footer-col ul li     { margin-bottom: 8px; }
.footer-col ul li a   { font-size: 13px; color: rgba(255, 255, 255, 0.8); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }

.social-links   { display: flex; gap: 12px; margin-top: 4px; }
.social-links a {
  width: 34px; height: 34px;
  background: #222; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; color: #fff;
}
.social-links a:hover { background: #444; }
.social-links svg     { width: 16px; height: 16px; fill: currentColor; }

.footer-bottom       { border-top: 1px solid #333; padding: 20px; }
.footer-bottom-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy   { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon  {
  background: #fff; border-radius: 3px;
  padding: 3px 7px; font-size: 10px;
  font-weight: 700; color: #222; letter-spacing: 0.3px;
}

/* ============================================
   SHOPIFY-SPECIFIC ADDITIONS
   ============================================ */

/* Cart count badge */
.cart-icon-link { position: relative; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Money formatting — Shopify outputs currency with symbol, no extra needed */

/* Rte (rich text editor) base styles */
.rte h2 { font-size: 18px; font-weight: 700; margin: 24px 0 10px; }
.rte p  { margin-bottom: 14px; line-height: 1.8; }
.rte a  { color: var(--accent); }
.rte ul, .rte ol { padding-left: 20px; margin-bottom: 14px; }
.rte li { margin-bottom: 6px; }
.rte img { max-width: 100%; }

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher { display: flex; align-items: center; }
.lang-switcher select {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
  padding: 4px 2px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
.lang-switcher select:hover { color: var(--accent); }

/* ============================================
   LANGUAGE SWITCHER — button style EN/FR
   ============================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}
.lang-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
  padding: 2px 4px;
  opacity: .55;
  transition: opacity .2s;
}
.lang-btn:hover { opacity: 1; color: var(--accent); }
.lang-current {
  font-weight: 700;
  padding: 2px 4px;
  border-bottom: 2px solid currentColor;
}

/* ============================================
   SEARCH TOGGLE BUTTON
   ============================================ */
.search-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 7px;
  display: flex;
  align-items: center;
  color: var(--text);
  transition: color .2s;
}
.search-toggle-btn:hover { color: var(--accent); }
.search-toggle-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 900;
}
.search-backdrop.open { display: block; }

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 901;
  padding: 24px 20px 0;
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.search-overlay.open { transform: translateY(0); }

.search-overlay-inner { max-width: 700px; margin: 0 auto; padding-bottom: 24px; }

.search-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  line-height: 1;
  padding: 4px 8px;
  transition: color .2s;
}
.search-close:hover { color: #222; }

.search-overlay-form { margin-bottom: 20px; }

.search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #222;
  padding-bottom: 8px;
  gap: 10px;
}
.search-icon-inline { width: 20px; height: 20px; fill: #888; flex-shrink: 0; }

#searchInput {
  flex: 1;
  border: none;
  outline: none;
  font-size: 22px;
  font-family: inherit;
  color: #222;
  background: transparent;
}
#searchInput::placeholder { color: #bbb; }

.search-loading, .search-no-results {
  font-size: 14px;
  color: #888;
  padding: 16px 0;
}

.search-result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-result-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: inherit;
  text-decoration: none;
  transition: background .15s;
}
.search-result-item a:hover { background: #fafafa; }

.search-result-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #f5f5f5;
  flex-shrink: 0;
}
.search-result-no-img {
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  flex-shrink: 0;
}

.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-result-title { font-size: 14px; font-weight: 500; }
.search-result-price { font-size: 13px; color: #888; }

.search-view-all {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  text-decoration: underline;
}
.search-view-all:hover { color: var(--accent); }
