/** Shopify CDN: Minification failed

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

**/
/* === CLEAN HOLIDAY REFRESH === */

/* 1. Bright, clean base background */
body {
  background-color: #ffffff !important;
}

/* 2. Section styling - add subtle frosty glow and spacing */
.section, .shopify-section {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 104, 56, 0.05);
  padding: 10px;
}

/* 3. Headings - crisp Golf Stuff green with subtle glow */
h1, h2, h3, h4, h5, h6 {
  color: #006838 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.5px;
}

/* 4. Buttons - rich green with white hover */
button, .button, .btn {
  background-color: #006838 !important;
  border: none;
  color: #fff !important;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
button:hover, .button:hover, .btn:hover {
  background-color: #009b5a !important;
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0, 155, 90, 0.3);
}

/* 5. Header / Banner gradient - festive but minimal */
.header, .hero, .banner, .shopify-section--hero {
  background: linear-gradient(120deg, #006838 0%, #004d29 100%) !important;
  color: #fff !important;
}
.header a, .banner a {
  color: #ffffff !important;
}
.header a:hover, .banner a:hover {
  color: #d7f8e3 !important;
}

/* 6. Links - subtle holiday hover accent */
a:hover {
  color: #009b5a !important;
  text-decoration: underline;
}

/* 7. Product images - smooth rounded corners */
img {
  border-radius: 8px;
}

/* 8. Optional: Add subtle top sparkle line under the header */
.header::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(0,104,56,0.8), rgba(255,255,255,0.4));
}
/* Subtle festive border on header */
.header {
  position: relative;
  background: linear-gradient(120deg, #006838 0%, #004d29 100%) !important;
  color: #fff;
  border-bottom: 4px solid #f9b233; /* your gold accent */
}

/* Optional frosty sparkle edge */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  pointer-events: none;
}
/* --- Currency Selector - match clean holiday style --- */
.shopify-currency-form select,
.currency-selector,
.currency-switcher,
.header .disclosure__button {
  background-color: #ffffff !important; /* white background */
  color:rgb(252, 255, 253) !important; /* Golf Stuff green text */
  border: 1px solid #d9d9d9 !important; /* light neutral border */
  border-radius: 4px !important;
  padding: 4px 8px !important;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}

.shopify-currency-form select:hover,
.currency-selector:hover,
.currency-switcher:hover,
.header .disclosure__button:hover {
  background-color: #f5f5f5 !important; /* soft gray hover */
  color: #004f29 !important;
  border-color: #c0c0c0 !important;
}
/* === Currency Selector Override === */
.disclosure__button,
.shopify-currency-form select,
.currency-selector select,
.currency-switcher select,
.localization-form select,
.header .disclosure__button {
  background-color: #ffffff !important;  /* White background */
  color: #006838 !important;             /* Golf Stuff green text */
  border: 1px solid #d9d9d9 !important;  /* Soft neutral border */
  border-radius: 4px !important;
  font-weight: 600;
  padding: 4px 10px !important;
  transition: all 0.2s ease-in-out;
}

/* Hover and focus states */
.disclosure__button:hover,
.shopify-currency-form select:hover,
.currency-selector select:hover,
.currency-switcher select:hover,
.localization-form select:hover,
.header .disclosure__button:hover,
.disclosure__button[aria-expanded="true"] {
  background-color: #f5f5f5 !important;
  color: #004
