/** Shopify CDN: Minification failed

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

**/
/**
 * Pup Spice Custom Styles for Shopify Refresh Theme
 * 
 * This stylesheet provides premium styling enhancements that complement
 * the Refresh theme while maintaining the Pup Spice brand identity.
 * 
 * Installation: Upload to Assets folder in Shopify theme editor,
 * then add to theme.liquid: {{ 'pup-spice-custom.css' | asset_url | stylesheet_tag }}
 */

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */

:root {
  /* Brand Colors */
  --color-luxe-gold: #C9A961;
  --color-deep-charcoal: #1A1A1A;
  --color-soft-cream: #F5F1E8;
  --color-warm-beige: #E8DCC8;
  --color-rich-black: #0D0D0D;
  --color-muted-gold: #A68B5B;
  
  /* Product Variant Colors */
  --color-chicken: #D4AF37;
  --color-beef: #8B2E2E;
  --color-salmon: #E8967D;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 80px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ========================================
   TYPOGRAPHY ENHANCEMENTS
   ======================================== */

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

/* Heading Styles */
h1, .h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

h2, .h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

h3, .h3, h4, .h4 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* Body Text */
body, p, .body-text {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
}

/* Accent Text (Labels, Badges) */
.accent-text {
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
}

/* ========================================
   BUTTON STYLES
   ======================================== */

/* Primary Button */
.btn-primary,
.shopify-payment-button__button--unbranded,
button[type="submit"]:not(.btn-secondary) {
  background-color: var(--color-luxe-gold) !important;
  color: var(--color-deep-charcoal) !important;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover,
.shopify-payment-button__button--unbranded:hover,
button[type="submit"]:not(.btn-secondary):hover {
  background-color: var(--color-muted-gold) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent !important;
  border: 2px solid var(--color-luxe-gold) !important;
  color: var(--color-luxe-gold) !important;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 38px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--color-luxe-gold) !important;
  color: var(--color-deep-charcoal) !important;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.shopify-section-header,
header.header {
  background-color: var(--color-rich-black) !important;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.header__menu-item a,
.header__icon,
.header__heading-link {
  color: var(--color-luxe-gold) !important;
  transition: color 0.3s ease;
}

.header__menu-item a:hover {
  color: var(--color-muted-gold) !important;
}

/* Sticky Header Enhancement */
.shopify-section-header.shopify-section-header-sticky {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--color-rich-black);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.3) 0%, rgba(13, 13, 13, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-soft-cream);
  max-width: 800px;
  padding: var(--spacing-xl);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
  color: var(--color-luxe-gold);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--spacing-xl);
  color: var(--color-soft-cream);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   PRODUCT CARDS
   ======================================== */

.product-card {
  background: white;
  border: 1px solid var(--color-warm-beige);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-deep-charcoal);
}

.product-card__price {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-luxe-gold);
  margin-bottom: var(--spacing-md);
}

/* Product Variant Accents */
.product-card--chicken {
  border-top: 4px solid var(--color-chicken);
}

.product-card--beef {
  border-top: 4px solid var(--color-beef);
}

.product-card--salmon {
  border-top: 4px solid var(--color-salmon);
}

/* ========================================
   BADGES & TRUST INDICATORS
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 2px solid var(--color-luxe-gold);
  border-radius: 50px;
  background: transparent;
  color: var(--color-luxe-gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 4px;
}

.badge-circular {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--color-luxe-gold);
  padding: 12px;
  line-height: 1.2;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-section {
  background-color: var(--color-soft-cream);
  padding: var(--spacing-3xl) var(--spacing-xl);
  position: relative;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-deep-charcoal);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.testimonial-quote::before {
  content: '"';
  color: var(--color-luxe-gold);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
}

.testimonial-quote::after {
  content: '"';
  color: var(--color-luxe-gold);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
}

.testimonial-author {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-muted-gold);
  margin-top: var(--spacing-md);
}

.testimonial-stars {
  color: var(--color-luxe-gold);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
}

/* ========================================
   SECTION DIVIDERS
   ======================================== */

.section-divider {
  width: 80px;
  height: 2px;
  background-color: var(--color-luxe-gold);
  margin: var(--spacing-md) auto;
}

/* ========================================
   BACKGROUND SECTIONS
   ======================================== */

.bg-cream {
  background-color: var(--color-soft-cream);
}

.bg-dark {
  background-color: var(--color-deep-charcoal);
  color: var(--color-soft-cream);
}

.bg-black {
  background-color: var(--color-rich-black);
  color: var(--color-soft-cream);
}

.bg-gold {
  background-color: var(--color-luxe-gold);
  color: var(--color-deep-charcoal);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: var(--color-rich-black) !important;
  color: var(--color-soft-cream) !important;
  padding: var(--spacing-3xl) var(--spacing-xl) var(--spacing-xl);
}

.footer a {
  color: var(--color-soft-cream) !important;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-luxe-gold) !important;
}

.footer__heading {
  color: var(--color-luxe-gold) !important;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 768px) {
  :root {
    --spacing-3xl: 48px;
    --spacing-2xl: 40px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .product-card {
    padding: var(--spacing-md);
  }
  
  .testimonial-quote {
    font-size: 1.25rem;
  }
}

/* ========================================
   CUSTOM ANIMATIONS
   ======================================== */

/* Animations */
[data-animate] {
  opacity: 1; /* Default to visible to prevent blank sections */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible[data-animate] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   TEXTURE OVERLAY (OPTIONAL)
   ======================================== */

.texture-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.05" /></svg>');
  pointer-events: none;
  z-index: 1;
}
