﻿/** Shopify CDN: Minification failed

Line 422:18 Unexpected "\"C:\\Users\\Bobby\\scotch-monkey-theme\\assets\\critical.css\""
Line 422:84 Unterminated string token
Line 452:0 Unexpected bad string token
Line 452:2 Unterminated string token

**/
/* ==========================================================================
   SCOTCH MONKEY â€” critical.css
   Global styles, reset, typography, color system
   ========================================================================== */

/* --- RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-body-size);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* --- ACCESSIBILITY --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 24px;
  background-color: var(--color-gold-primary);
  color: var(--color-bg-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 0;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6,
.heading {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: var(--font-heading-spacing);
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-text);
}

h1, .h1 { font-size: clamp(32px, 6vw, 56px); }
h2, .h2 { font-size: clamp(24px, 4vw, 40px); }
h3, .h3 { font-size: clamp(20px, 3vw, 32px); }
h4, .h4 { font-size: clamp(18px, 2.5vw, 24px); }

.text-accent {
  font-family: var(--font-accent);
  font-weight: 900;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

.text-body-medium {
  font-weight: 500;
}

.text-fine {
  font-size: 13px;
  line-height: 1.5;
}

p + p {
  margin-top: 1em;
}

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--layout-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--layout-gutter);
  padding-right: var(--layout-gutter);
}

.container--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.section-padding {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: var(--font-heading-spacing);
  text-transform: uppercase;
  line-height: 1;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-gold-primary);
  color: var(--color-bg-primary);
  border-color: var(--color-gold-primary);
}

.btn--primary:hover {
  background-color: var(--color-gold-secondary);
  border-color: var(--color-gold-secondary);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
}

.btn--outline:hover {
  background-color: var(--color-gold-primary);
  color: var(--color-bg-primary);
}

.btn--small {
  padding: 10px 20px;
  font-size: 12px;
}

/* --- LINKS --- */
.link-underline {
  position: relative;
  display: inline;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-gold-primary);
  transition: width 0.3s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* --- FORMS --- */
.form-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-text);
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-gold-secondary);
  transition: border-color 0.25s ease;
}

.form-input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-gold-primary);
}

/* --- BADGE --- */
.badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.badge--sale {
  background-color: var(--color-accent);
  color: #ffffff;
}

.badge--gold {
  background-color: var(--color-gold-primary);
  color: var(--color-bg-primary);
}

/* --- UTILITY --- */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold-primary); }

/* --- GRID --- */
.grid {
  display: grid;
  gap: var(--layout-gutter);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* --- SCROLLBAR (Webkit) --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-bg-secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-secondary);
}

/* === PRODUCT CARDS (shared) === */
.product-card {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
  margin-bottom: 0;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.product-card__body {
  background-color: var(--color-bg-secondary);
  padding: 16px;
}

.product-card__vendor {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  margin-bottom: 4px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: var(--font-heading-spacing);
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 8px;
}

.product-card__price {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.6);
}

.product-card__price--compare {
  text-decoration: line-through;
  color: rgba(245, 240, 232, 0.35);
  margin-right: 8px;
}

.product-card__price--sale {
  color: var(--color-accent);
  font-weight: 500;
}
Add-Content -Path "C:\Users\Bobby\scotch-monkey-theme\assets\critical.css" -Value @"

/* === PRODUCT DESCRIPTION â€” override injected markup === */
.product-info__description h1,
.product-info__description h2,
.product-info__description h3,
.product-info__description h4,
.product-info__description h5,
.product-info__description h6 {
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  margin-top: 16px;
  color: var(--color-text);
}

.product-info__description ul,
.product-info__description ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.product-info__description li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 4px;
}
"@

.product-info__description h1,.product-info__description h2,.product-info__description h3,.product-info__description h4{font-size:13px!important;letter-spacing:0.08em;font-weight:800;text-transform:uppercase;margin:12px 0 6px;color:rgba(245,240,232,0.5)!important;}

/* === FOOTER LAYOUT FIX === */
.footer__grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* === FOOTER LAYOUT FIX === */
.footer__grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
}

@media (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

.footer__top { display: grid !important; grid-template-columns: 1.5fr 1fr 1fr !important; gap: 48px !important; align-items: start !important; }
@media (max-width: 767px) { .footer__top { grid-template-columns: 1fr !important; } }
