/** Shopify CDN: Minification failed

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

**/
/* ============================================
   Bar B Ranch - Global Custom Styles
   ============================================ */

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

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
  /* Brand Colors */
  --color-ranch-brown: #5D4037;
  --color-sage: #7B8B6F;
  --color-cream: #F5F0E8;
  --color-rust: #BF5B04;
  --color-charcoal: #2C2C2C;
  --color-white: #FFFFFF;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 5rem;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 10px 40px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Container Max Width */
  --container-max-width: 1280px;

  /* Breakpoints (for reference in JS if needed) */
  --breakpoint-mobile: 750px;
  --breakpoint-tablet: 990px;
}

/* ============================================
   Base Typography
   ============================================ */
body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  line-height: 1.6;
  background-color: var(--color-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-ranch-brown);
  margin: 0 0 var(--spacing-md);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

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

/* ============================================
   Buttons - HIGH SPECIFICITY TO OVERRIDE DAWN THEME
   ============================================ */
.btn,
a.btn,
.hero-buttons a,
.cta-buttons a {
  display: inline-block !important;
  padding: 14px 28px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  text-align: center !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  line-height: 1.5 !important;
}

.btn-primary,
a.btn-primary,
.hero-buttons a.btn-primary,
.cta-buttons a.btn-primary {
  background-color: #BF5B04 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(191, 91, 4, 0.3) !important;
}

.btn-primary:hover,
a.btn-primary:hover,
.hero-buttons a.btn-primary:hover,
.cta-buttons a.btn-primary:hover {
  background-color: #A54D03 !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(191, 91, 4, 0.4) !important;
}

.btn-secondary,
a.btn-secondary,
.hero-buttons a.btn-secondary,
.cta-buttons a.btn-secondary {
  background-color: rgba(255, 255, 255, 0.95) !important;
  color: #5D4037 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.btn-secondary:hover,
a.btn-secondary:hover,
.hero-buttons a.btn-secondary:hover,
.cta-buttons a.btn-secondary:hover {
  background-color: white !important;
  color: #5D4037 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(93, 64, 55, 0.2) !important;
}

.btn-outline,
a.btn-outline {
  background-color: transparent !important;
  border: 2px solid #BF5B04 !important;
  color: #BF5B04 !important;
}

.btn-outline:hover,
a.btn-outline:hover {
  background-color: #BF5B04 !important;
  color: white !important;
}

/* Mobile responsive buttons */
@media screen and (max-width: 749px) {
  .btn,
  a.btn,
  .hero-buttons a,
  .cta-buttons a {
    padding: 12px 20px !important;
    font-size: 15px !important;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn,
  .hero-buttons a.btn,
  .cta-buttons .btn,
  .cta-buttons a.btn {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ============================================
   Container & Layout Utilities
   ============================================ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .container {
    padding: 0 40px;
  }
}

@media screen and (min-width: 990px) {
  .container {
    padding: 0 60px;
  }
}

/* Hero video section uses its own padding system via schema settings */
/* Container padding is needed for proper text spacing */

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2,
.section-header h3 {
  margin-bottom: 16px;
  font-size: 48px;
}

.section-header p {
  font-size: 20px;
  color: var(--color-sage);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   Grid Systems
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

/* ============================================
   Card Styles
   ============================================ */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

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

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

/* ============================================
   Badge Styles
   ============================================ */
.badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background-color: var(--color-rust);
  color: var(--color-white);
}

.badge-secondary {
  background-color: rgba(93, 64, 55, 0.1);
  color: var(--color-ranch-brown);
}

/* ============================================
   Overlay Utilities
   ============================================ */
.overlay {
  position: absolute;
  inset: 0;
}

.overlay-dark {
  background: linear-gradient(to right, rgba(93, 64, 55, 0.8), rgba(93, 64, 55, 0.6), transparent);
}

.overlay-gradient {
  background: linear-gradient(to top, rgba(93, 64, 55, 0.8), transparent);
}

/* ============================================
   Text Utilities
   ============================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-white {
  color: var(--color-white);
}

.text-brown {
  color: var(--color-ranch-brown);
}

.text-sage {
  color: var(--color-sage);
}

.text-rust {
  color: var(--color-rust);
}

/* ============================================
   Background Utilities
   ============================================ */
.bg-cream {
  background-color: var(--color-cream);
}

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

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

.bg-brown {
  background-color: var(--color-ranch-brown);
}

.bg-gradient-ranch {
  background: linear-gradient(135deg, var(--color-ranch-brown), var(--color-sage));
}

/* ============================================
   Spacing Utilities
   ============================================ */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.pt-0 { padding-top: 0; }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-0 { padding-bottom: 0; }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet (750px - 989px) */
@media screen and (max-width: 989px) {
  .section {
    padding: 60px 0;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2 {
    gap: var(--spacing-md);
  }
}

/* Mobile (< 750px) */
@media screen and (max-width: 749px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 80px;
  }

  .section-header h2,
  .section-header h3 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 18px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .btn {
    display: block;
    width: 100%;
  }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out;
}

/* ============================================
   Form Elements
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(123, 139, 111, 0.3);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 16px;
  transition: var(--transition-base);
  background-color: var(--color-white);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-rust);
  box-shadow: 0 0 0 3px rgba(191, 91, 4, 0.1);
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ranch-brown);
  margin-bottom: 8px;
}

/* ============================================
   Image Utilities
   ============================================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-rounded {
  border-radius: var(--radius-md);
}

/* ============================================
   Accessibility
   ============================================ */
.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;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--color-rust);
  outline-offset: 2px;
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .no-print {
    display: none !important;
  }
}

/* ==========================================================================
   BAR B RANCH - COMPREHENSIVE SHOPIFY THEME FIXES
   Implementation: Complete styling overhaul for proper display
   ========================================================================== */

/* ==========================================================================
   1. REMOVED CONFLICTING CONTAINER PADDING - Now handled in main container styles above
   ========================================================================== */

/* ==========================================================================
   2. ADDITIONAL BUTTON TARGETING - Ensures all button-like links are styled
   ========================================================================== */
/* Exclude header navigation links from button styling */
a.button,
button[type="submit"],
input[type="submit"] {
  display: inline-block;
  padding: 14px 28px;
  background-color: #BF5B04;
  color: white !important;
  text-decoration: none !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(191, 91, 4, 0.3);
}

a.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191, 91, 4, 0.4);
  color: white !important;
}

a[href*="Our Story"],
a[href*="/pages/about"] {
  display: inline-block;
  padding: 14px 28px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #5D4037 !important;
  text-decoration: none !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

a[href*="Our Story"]:hover,
a[href*="/pages/about"]:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 64, 55, 0.2);
  color: #5D4037 !important;
}

/* ==========================================================================
   3. MOST POPULAR BADGE - Makes it visible and pill-like
   ========================================================================== */
/* More specific selectors to only target product card badges, not all badges */
.product-card .badge,
.card-wrapper .badge,
.product-badge,
[class*="badge-popular"],
[class*="most-popular"],
.product-card:nth-child(2) .badge,
.grid__item:nth-child(2) .badge,
.grid__item .card .badge {
  display: inline-block;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #BF5B04 0%, #D66A0A 100%);
  color: white !important;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(191, 91, 4, 0.5);
  z-index: 10;
  border: 2px solid white;
}

/* Ensure parent container is positioned */
.product-card,
.grid__item {
  position: relative;
}

/* ==========================================================================
   4. ROUNDED CORNERS - Softens all edges
   ========================================================================== */
.card,
.product-card,
.grid__item,
.feature-card,
.testimonial-card {
  border-radius: 16px;
  overflow: hidden;
}

.product-card img,
.card img,
.featured-image,
.product-image {
  border-radius: 12px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  border-radius: 8px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #BF5B04;
  outline: none;
  box-shadow: 0 0 0 3px rgba(191, 91, 4, 0.1);
}

/* ==========================================================================
   5. PRODUCT GRID - Better spacing and layout
   ========================================================================== */
.product-grid,
.collection-grid,
.grid--uniform {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 24px 0;
}

@media (max-width: 768px) {
  .product-grid,
  .collection-grid,
  .grid--uniform {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

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

/* ==========================================================================
   6. TYPOGRAPHY - Brand fonts and hierarchy
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Lato:wght@400;600;700&display=swap');

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2C2C2C;
  line-height: 1.6;
  background-color: #F5F0E8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #2C2C2C;
}

/* ==========================================================================
   7. HERO SECTION - Better positioning and spacing
   NOTE: These styles are scoped to NOT affect .hero-video-section which has its own dedicated styles
   ========================================================================== */
.hero:not(.hero-video-section),
.hero-section:not(.hero-video-section) {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 60px 24px;
}

@media (max-width: 768px) {
  .hero:not(.hero-video-section),
  .hero-section:not(.hero-video-section) {
    min-height: 500px;
    padding: 40px 16px;
  }
}

.hero:not(.hero-video-section) .hero-content,
.hero-section:not(.hero-video-section) .hero-content,
.hero__inner {
  max-width: 800px;
  padding: 40px;
  background: rgba(93, 64, 55, 0.85);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .hero:not(.hero-video-section) .hero-content,
  .hero-section:not(.hero-video-section) .hero-content,
  .hero__inner {
    padding: 24px;
  }
}

.hero:not(.hero-video-section) h1,
.hero-section:not(.hero-video-section) h1,
.hero__title {
  font-size: 56px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .hero:not(.hero-video-section) h1,
  .hero-section:not(.hero-video-section) h1,
  .hero__title {
    font-size: 36px;
  }
}

.hero:not(.hero-video-section) p,
.hero-section:not(.hero-video-section) p,
.hero__subtitle {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .hero:not(.hero-video-section) p,
  .hero-section:not(.hero-video-section) p,
  .hero__subtitle {
    font-size: 16px;
  }
}

.hero:not(.hero-video-section) .hero-buttons,
.hero-section:not(.hero-video-section) .hero-buttons,
.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   8. MOBILE OPTIMIZATIONS
   ========================================================================== */
@media (max-width: 768px) {
  /* Ensure proper touch targets */
  .btn,
  button,
  a.button {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
  }

  /* Better mobile typography */
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  /* Stack buttons on very small screens */
  @media (max-width: 480px) {
    .hero-buttons,
    .hero__buttons {
      flex-direction: column;
    }

    .btn,
    button {
      width: 100%;
      text-align: center;
    }
  }
}

/* ==========================================================================
   9. SHADOWS AND DEPTH
   ========================================================================== */
.card,
.product-card,
.feature-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover,
.product-card:hover,
.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   10. SMOOTH TRANSITIONS
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

a {
  transition: color 0.3s ease, opacity 0.3s ease;
}

img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   11. BRAND COLOR VARIABLES (for consistency)
   ========================================================================== */
:root {
  --color-brown-primary: #5D4037;
  --color-orange-accent: #BF5B04;
  --color-sage-green: #7B8B6F;
  --color-cream-bg: #F5F0E8;
  --color-charcoal-text: #2C2C2C;
  --color-white: #FFFFFF;
}

/* ==========================================================================
   12. SECTION BACKGROUNDS (alternating)
   ========================================================================== */
section:nth-child(even),
.shopify-section:nth-child(even) {
  background-color: var(--color-white);
}

section:nth-child(odd),
.shopify-section:nth-child(odd) {
  background-color: var(--color-cream-bg);
}

/* ==========================================================================
   END OF COMPREHENSIVE SHOPIFY THEME FIXES
   ========================================================================== */

