/* PURE LIFE - Custom CSS Styles */
/* Brand Colors: Burgundy #550b14, Cream #F5F0E8, White #FFFFFF */

:root {
  --purelife-burgundy: #550b14;
  --purelife-cream: #F5F0E8;
  --purelife-white: #FFFFFF;
}

/* Button Styling */
.btn-primary, .s-button-primary, button[type="submit"] {
  background-color: #550b14 !important;
  border-color: #550b14 !important;
  color: #FFFFFF !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover, .s-button-primary:hover {
  background-color: #3d0810 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(85, 11, 20, 0.3);
}

/* Product Cards */
.product-card, .s-product-card {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover, .s-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(85, 11, 20, 0.15);
}

/* Footer Styling */
footer, .footer {
  background: linear-gradient(180deg, #550b14 0%, #3d0810 100%);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}