/** Shopify CDN: Minification failed

Line 49:0 Expected "}" to go with "{"

**/
/* ===============================
   Custom Brand Styling - MyIriz
   Colors:
   - Gold: #D9A875
   - Warm Taupe: #AA8474
   - Deep Rosewood: #8B645F
   - Soft Cream: #F2E5BC
================================= */

/* Backgrounds */
body {
  background-color: #F2E5BC; /* soft cream background */
  color: #8B645F; /* deep rosewood text */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #AA8474; /* warm taupe */
  font-weight: 600;
}

/* Paragraphs & general text */
p, span, li {
  color: #8B645F; /* readable deep rosewood */
}

/* Links */
a {
  color: #D9A875; /* gold links */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #AA8474; /* warm taupe on hover */
}

/* Buttons */
button, 
.shopify-section .btn, 
.shopify-payment-button button {
  background-color: #D9A875; /* gold */
  color: #F2E5BC
