/** Shopify CDN: Minification failed

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

**/

/* ========================================
   DIGGS.PET VISUAL FOUNDATION
   Color Palette + Typography System
   ======================================== */

/* === 1. COLOR PALETTE === */
:root {
  /* Diggs Primary Colors */
  --color-midnight-navy: #001F3F;
  --color-fog: #F7F7F7;
  --color-accent-orange: #E67E22;
  --color-canvas-white: #FFFFFF;
  
  /* Typography Colors */
  --color-text-primary: #001F3F;
  --color-text-secondary: #4A4A4A;
  --color-text-muted: #8A8A8A;
  
  /* Background Colors */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F7F7F7;
  --color-bg-dark: #001F3F;
  
  /* CTA Colors */
  --color-cta-primary: #E67E22;
  --color-cta-hover: #D35400;
}

/* === 2. TYPOGRAPHY SYSTEM === */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;800&family=Inter:wght@400;500;600&display=swap');

/* Body & Base */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.015em;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

/* Headings - Outfit Bold */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-midnight-navy);
  margin-bottom: 1rem;
}

h1, .h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2, .h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4, .h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5, .h5 { font-size: 1.125rem; }
h6, .h6 { font-size: 1rem; }

/* Paragraphs */
p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

/* === 3. CTA BUTTONS === */

.btn, button, [type="submit"], .button, 
.shopify-payment-button__button,
.product-form__submit {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  font-size: 0.875rem !important;
  padding: 16px 32px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
  border: none !important;
}

/* Primary CTA - Orange */
.btn-primary, button[type="submit"],
.product-form__submit,
.shopify-payment-button__button--unbranded {
  background-color: var(--color-cta-primary) !important;
  color: var(--color-canvas-white) !important;
}

.btn-primary:hover,
button[type="submit"]:hover,
.product-form__submit:hover {
  background-color: var(--color-cta-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* Secondary CTA - Navy Outline */
.btn-secondary {
  background-color: transparent !important;
  color: var(--color-midnight-navy) !important;
  border: 2px solid var(--color-midnight-navy) !important;
}

.btn-secondary:hover {
  background-color: var(--color-midnight-navy) !important;
  color: var(--color-canvas-white) !important;
}

/* === 4. SECTIONS & SPACING === */

/* Section Padding - Generous like Diggs */
.section, .shopify-section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section, .shopify-section {
    padding: 100px 0;
  }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === 5. CARDS & PRODUCTS === */

.card, .product-card {
  background: var(--color-canvas-white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 31, 63, 0.08);
  transition: all 0.3s ease;
}

.card:hover, .product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 31, 63, 0.12);
  transform: translateY(-4px);
}

/* Product Titles */
.product__title, .product-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-midnight-navy);
}

/* Product Price */
.price, .product__price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-midnight-navy);
}

/* === 6. LINKS === */

a {
  color: var(--color-midnight-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-orange);
}

/* === 7. ACCESSIBILITY === */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
button:focus, a:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--color-accent-orange);
  outline-offset: 2px;
}

/* === 8. RESPONSIVE TYPOGRAPHY === */

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  .section, .shopify-section {
    padding: 60px 0;
  }
}

/* === END DIGGS VISUAL FOUNDATION === */
