/** Shopify CDN: Minification failed

Line 19:15 Expected identifier but found whitespace
Line 19:17 Unexpected "{"
Line 19:27 Expected ":"
Line 20:17 Expected identifier but found whitespace
Line 20:19 Unexpected "{"
Line 20:29 Expected ":"
Line 21:19 Expected identifier but found whitespace
Line 21:21 Unexpected "{"
Line 21:31 Expected ":"
Line 22:10 Expected identifier but found whitespace
... and 14 more hidden warnings

**/
/* Big Berb Sauces - Shopify Theme Styles */

:root {
  --smoke-dark: {{ settings.color_smoke_dark }};
  --burnt-orange: {{ settings.color_burnt_orange }};
  --golden-mustard: {{ settings.color_golden_mustard }};
  --cream: {{ settings.color_cream }};
  --bark-brown: {{ settings.color_bark_brown }};
  --charcoal: {{ settings.color_charcoal }};
  --sage: {{ settings.color_sage }};
  --rust: {{ settings.color_rust }};
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--smoke-dark);
  overflow-x: hidden;
}

/* Accessibility */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}

/* Animations */
@keyframes smokeRise {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { transform: translateY(-60px) scale(1.3); opacity: 0.3; }
  100% { transform: translateY(-120px) scale(1.6); opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes sizzle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Alfa Slab One', cursive;
}

.handwritten {
  font-family: 'Covered By Your Grace', cursive;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--burnt-orange);
  color: var(--cream);
  font-family: 'Alfa Slab One', cursive;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  border: 3px solid var(--golden-mustard);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--golden-mustard);
  color: var(--smoke-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(212, 168, 75, 0.4);
}

.btn--secondary {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}

.btn--secondary:hover {
  background: var(--cream);
  color: var(--smoke-dark);
}

.btn--sizzle {
  animation: sizzle 2s ease-in-out infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom, var(--smoke-dark) 0%, transparent 100%);
  transition: background 0.3s ease;
}

.header.scrolled {
  background: var(--smoke-dark);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-family: 'Alfa Slab One', cursive;
  font-size: 1.5rem;
  color: var(--golden-mustard);
  text-decoration: none;
  letter-spacing: 2px;
}

.header__logo img {
  max-height: 60px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.header__nav a {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.4rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--burnt-orange);
  transition: width 0.3s ease;
}

.header__nav a:hover {
  color: var(--golden-mustard);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cart {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.5rem;
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--burnt-orange);
  color: var(--cream);
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alfa Slab One', cursive;
}

/* Mobile Menu */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--smoke-dark) 0%, var(--bark-brown) 50%, var(--charcoal) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center bottom, rgba(196, 92, 38, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.smoke {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  animation: smokeRise 4s infinite ease-out;
}

.smoke:nth-child(1) { left: 20%; animation-delay: 0s; }
.smoke:nth-child(2) { left: 75%; animation-delay: 1s; }
.smoke:nth-child(3) { left: 50%; animation-delay: 2s; }
.smoke:nth-child(4) { left: 35%; animation-delay: 0.5s; }
.smoke:nth-child(5) { left: 65%; animation-delay: 1.5s; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.hero__logo {
  max-width: 450px;
  width: 90%;
  margin-bottom: 2rem;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  border-radius: 20px;
  background: var(--cream);
  padding: 1.5rem;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--golden-mustard);
  text-shadow: 4px 4px 0 var(--rust), 8px 8px 20px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.hero__tagline {
  font-family: 'Covered By Your Grace', cursive;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 2rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.2rem;
  opacity: 0.7;
  animation: float 2s ease-in-out infinite;
}

.hero__scroll-hint span {
  display: block;
  font-size: 2rem;
}

/* About Section */
.about {
  padding: 8rem 2rem;
  background: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%235c4a3d' fill-opacity='0.03'/%3E%3C/svg%3E"),
    var(--cream);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, var(--smoke-dark) 0%, transparent 100%);
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__frame {
  position: relative;
  padding: 1.5rem;
  background: var(--bark-brown);
  border-radius: 10px;
  transform: rotate(-3deg);
  box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
}

.about__frame img {
  width: 100%;
  border-radius: 5px;
  display: block;
  background: var(--cream);
}

.about__pin {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--rust);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.about__content h2 {
  font-size: 3rem;
  color: var(--burnt-orange);
  margin-bottom: 1.5rem;
}

.about__content h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 6px;
  background: var(--golden-mustard);
  margin-top: 1rem;
  border-radius: 3px;
}

.about__content p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--bark-brown);
}

.about__signature {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 2rem;
  color: var(--burnt-orange);
}

/* Featured Products / Sauces Section */
.featured-products {
  padding: 8rem 2rem;
  background: linear-gradient(to bottom, var(--smoke-dark), var(--charcoal));
}

.featured-products__title {
  font-size: 3rem;
  color: var(--golden-mustard);
  text-align: center;
  margin-bottom: 4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--burnt-orange);
}

.product-card:nth-child(2)::before {
  background: var(--rust);
}

.product-card:nth-child(3)::before {
  background: var(--golden-mustard);
}

.product-card:hover {
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.product-card__image {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 10px;
}

.product-card__title {
  font-size: 1.6rem;
  color: var(--burnt-orange);
  margin-bottom: 0.5rem;
}

.product-card__price {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.5rem;
  color: var(--bark-brown);
  margin-bottom: 1rem;
}

.product-card__description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bark-brown);
  margin-bottom: 1.5rem;
}

/* Heat Meter */
.heat-meter {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin: 1rem 0;
}

.heat-meter span {
  font-size: 1.3rem;
}

.heat-meter span.inactive {
  opacity: 0.2;
}

/* NC Style Section */
.nc-style {
  padding: 8rem 2rem;
  background: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.05'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--sage) 0%, #6b7a5f 100%);
}

.nc-style__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.nc-style__badge {
  display: inline-block;
  background: var(--cream);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.3rem;
  color: var(--burnt-orange);
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.nc-style__title {
  font-size: 3rem;
  color: var(--cream);
  margin-bottom: 2rem;
  text-shadow: 3px 3px 0 var(--smoke-dark);
}

.nc-style__text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.nc-style__features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.nc-style__feature {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  min-width: 200px;
  border: 2px solid rgba(255,255,255,0.2);
}

.nc-style__feature-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.nc-style__feature h4 {
  color: var(--cream);
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 8rem 2rem;
  background: var(--smoke-dark);
  text-align: center;
}

.contact__title {
  font-size: 3rem;
  color: var(--golden-mustard);
  margin-bottom: 1.5rem;
}

.contact__text {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact__form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: 'Lora', serif;
  font-size: 1rem;
  border: 3px solid var(--bark-brown);
  border-radius: 10px;
  background: var(--cream);
  color: var(--smoke-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--golden-mustard);
  box-shadow: 0 0 20px rgba(212, 168, 75, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--charcoal);
  padding: 3rem 2rem;
  text-align: center;
}

.footer__logo {
  font-family: 'Alfa Slab One', cursive;
  font-size: 2rem;
  color: var(--golden-mustard);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.3rem;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
}

.footer__social a {
  width: 50px;
  height: 50px;
  background: var(--bark-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__social a:hover {
  background: var(--burnt-orange);
  transform: translateY(-5px);
}

.footer__copyright {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.5;
}

.footer__links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--cream);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer__links a:hover {
  opacity: 1;
}

/* Collection Page */
.collection-header {
  background: linear-gradient(135deg, var(--smoke-dark) 0%, var(--bark-brown) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.collection-header__title {
  font-size: 3rem;
  color: var(--golden-mustard);
  margin-bottom: 1rem;
}

.collection-header__description {
  font-size: 1.2rem;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto;
}

.collection-products {
  padding: 4rem 2rem;
  background: var(--cream);
}

/* Product Page */
.product-page {
  padding: 8rem 2rem 4rem;
  background: var(--cream);
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-page__images {
  position: relative;
}

.product-page__main-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-page__info h1 {
  font-size: 2.5rem;
  color: var(--burnt-orange);
  margin-bottom: 1rem;
}

.product-page__price {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 2rem;
  color: var(--bark-brown);
  margin-bottom: 1.5rem;
}

.product-page__description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--bark-brown);
  margin-bottom: 2rem;
}

.product-form__quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-form__quantity label {
  font-family: 'Alfa Slab One', cursive;
  color: var(--smoke-dark);
}

.product-form__quantity input {
  width: 80px;
  padding: 0.75rem;
  font-size: 1rem;
  border: 3px solid var(--bark-brown);
  border-radius: 10px;
  text-align: center;
}

/* Cart Page */
.cart-page {
  padding: 8rem 2rem 4rem;
  background: var(--cream);
  min-height: 60vh;
}

.cart-page__title {
  font-size: 3rem;
  color: var(--burnt-orange);
  text-align: center;
  margin-bottom: 3rem;
}

.cart-items {
  max-width: 900px;
  margin: 0 auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.cart-item__image {
  width: 100px;
  border-radius: 10px;
}

.cart-item__title {
  font-family: 'Alfa Slab One', cursive;
  color: var(--burnt-orange);
  font-size: 1.3rem;
}

.cart-item__price {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.4rem;
  color: var(--bark-brown);
}

.cart-totals {
  max-width: 400px;
  margin: 3rem auto 0;
  padding: 2rem;
  background: var(--smoke-dark);
  border-radius: 20px;
  text-align: center;
}

.cart-totals__total {
  font-family: 'Alfa Slab One', cursive;
  font-size: 1.8rem;
  color: var(--golden-mustard);
  margin-bottom: 1.5rem;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--burnt-orange);
  padding: 0.75rem 1rem;
  text-align: center;
}

.announcement-bar__message {
  font-family: 'Covered By Your Grace', cursive;
  font-size: 1.1rem;
  color: var(--cream);
}

.announcement-bar a {
  color: var(--golden-mustard);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__menu-toggle {
    display: block;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image {
    order: -1;
  }

  .nc-style__features {
    flex-direction: column;
    align-items: center;
  }

  .product-page__grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .cart-item__price,
  .cart-item__remove {
    grid-column: 2;
  }
}
#template--16876479611087__about {
  background-color: #f5f0e1;
  color: #2c2416;
}
#template--16876479611087__featured-products {
  background-color: #2c2416;
  color: #f5f0e1;
}
#template--16876479611087__nc-style {
  background-color: #8b9a7d;
  color: #2c2416;
}
#template--16876479611087__contact {
  background-color: #5c4a3d;
  color: #f5f0e1;
}
#template--16876479611087__featured-products { background-color: #2c2416; color: #f5f0e1; }
