/** Shopify CDN: Minification failed

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

**/

/**
 * Corporate Grind - Global Brand Styles
 * ======================================
 * 
 * Brand Colors:
 * - White: #FFFFFF
 * - Black: #000000
 * - Charcoal: #333333
 * - Corporate Red: #E50914
 * - Soft Heather Gray: #D9D9D9
 * - Muted Navy: #1E2A38
 * 
 * Typography:
 * - Headings: Montserrat Extra Bold
 * - Body: Poppins Regular/Medium
 * - CTAs: Montserrat SemiBold
 */

/* ========== IMPORTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ========== GLOBAL RESET ========== */
* {
  box-sizing: border-box;
}

/* ========== ROOT VARIABLES ========== */
:root {
  /* Colors */
  --cg-white: #FFFFFF;
  --cg-black: #000000;
  --cg-charcoal: #333333;
  --cg-red: #E50914;
  --cg-red-dark: #B8070D;
  --cg-gray: #D9D9D9;
  --cg-navy: #1E2A38;
  --cg-light-gray: #F5F5F5;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;
  
  /* Layout */
  --max-width: 1400px;
  --border-radius: 8px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========== GLOBAL TYPOGRAPHY ========== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cg-charcoal);
  background-color: var(--cg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--cg-black);
  margin: 0;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  margin: 0 0 var(--spacing-sm) 0;
}

a {
  color: var(--cg-black);
  text-decoration: none;
  transition: color var(--transition-normal);
}

a:hover {
  color: var(--cg-red);
}

/* ========== BUTTONS ========== */
.cg-btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all var(--transition-normal);
  cursor: pointer;
  text-align: center;
  border: none;
}

.cg-btn-primary {
  background-color: var(--cg-red);
  color: var(--cg-white);
  border: 2px solid var(--cg-red);
}

.cg-btn-primary:hover {
  background-color: var(--cg-red-dark);
  border-color: var(--cg-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.3);
}

.cg-btn-secondary {
  background-color: transparent;
  color: var(--cg-black);
  border: 2px solid var(--cg-black);
}

.cg-btn-secondary:hover {
  background-color: var(--cg-black);
  color: var(--cg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cg-btn-outline {
  background-color: transparent;
  color: var(--cg-red);
  border: 2px solid var(--cg-red);
}

.cg-btn-outline:hover {
  background-color: var(--cg-red);
  color: var(--cg-white);
}

/* ========== LAYOUT UTILITIES ========== */
.cg-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cg-section {
  padding: var(--spacing-xxl) 0;
}

.cg-text-center {
  text-align: center;
}

/* ========== PRODUCT CARDS ========== */
.cg-product-card {
  position: relative;
  background: var(--cg-white);
  border: 1px solid var(--cg-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.cg-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--cg-charcoal);
}

.cg-product-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.cg-product-card:hover .cg-product-image {
  transform: scale(1.05);
}

/* ========== BADGES & LABELS ========== */
.cg-badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.cg-badge-new {
  background-color: var(--cg-red);
  color: var(--cg-white);
}

.cg-badge-sale {
  background-color: var(--cg-red);
  color: var(--cg-white);
}

.cg-badge-bestseller {
  background-color: var(--cg-black);
  color: var(--cg-white);
}

/* ========== VOLUME DISCOUNT DISPLAY ========== */
.cg-volume-discount-box {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border: 2px solid var(--cg-red);
  border-radius: var(--border-radius);
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
}

.cg-volume-discount-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--cg-black);
  margin-bottom: var(--spacing-sm);
}

.cg-volume-discount-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-xs) 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--cg-charcoal);
}

.cg-volume-discount-savings {
  color: var(--cg-red);
  font-weight: 700;
}

/* ========== CART SMART OFFERS ========== */
.cg-cart-offer {
  background-color: var(--cg-light-gray);
  border-left: 4px solid var(--cg-red);
  padding: var(--spacing-sm);
  margin: var(--spacing-sm) 0;
  font-family: var(--font-body);
  font-size: 14px;
}

.cg-cart-offer-highlight {
  color: var(--cg-red);
  font-weight: 700;
}

/* ========== TRUST BADGES ========== */
.cg-trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  margin: var(--spacing-lg) 0;
}

.cg-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  text-align: center;
}

.cg-trust-icon {
  width: 48px;
  height: 48px;
  color: var(--cg-red);
}

/* ========== MOBILE RESPONSIVE ========== */
@media screen and (max-width: 768px) {
  :root {
    --spacing-xxl: 60px;
    --spacing-xl: 40px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .cg-btn {
    padding: 14px 32px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
}

/* ========== LOADING STATES ========== */
.cg-loading {
  opacity: 0.6;
  pointer-events: none;
}

.cg-spinner {
  border: 3px solid var(--cg-gray);
  border-top: 3px solid var(--cg-red);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: cg-spin 1s linear infinite;
}

@keyframes cg-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========== ACCESSIBILITY ========== */
.cg-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========== PRINT STYLES ========== */
@media print {
  .cg-no-print {
    display: none !important;
  }
}


/* ========================================
   MOBILE UX ENHANCEMENTS - SCRIPT 5
   ======================================== */

/* Import comprehensive mobile-first optimizations */
@import url("mobile-ux-enhancements.css");

/* Additional mobile-specific brand overrides can be added here */

