/** Shopify CDN: Minification failed

Line 14:0 Unexpected "<"
Line 81:0 Unexpected "<"
Line 88:19 Expected identifier but found whitespace
Line 88:21 Unexpected "{"
Line 88:30 Expected ":"
Line 145:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #f8f8f8;
}

.header__nav ul {
  list-style: none;
  display: flex;
}

.header__nav ul li {
  margin: 0 10px;
}

.header__nav ul li a {
  text-decoration: none;
  color: #333;
}

/* Sections */
section {
  padding: 40px 20px;
}

h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.collection-grid, .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.collection-item, .product-item {
  text-align: center;
}

.collection-item img, .product-item img {
  max-width: 100%;
  height: auto;
}

.newsletter-signup form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: auto;
}

.newsletter-signup input, .newsletter-signup button {
  padding: 10px;
  margin-bottom: 10px;
}
</style>
<style>
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: {{ section.settings.background_color }};
  height: 100vh;
  overflow: hidden;
}

.hero-section__content {
  display: flex;
  width: 100%;
  height: 100%;
}

.collection-block {
  position: relative;
  flex: 1;
  overflow: hidden;
}

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

.collection-block a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s;
}

.collection-block a:hover {
  background: rgba(0, 0, 0, 0.7);
}

.collection-block h2, .collection-block p {
  margin: 0;
  padding: 10px;
}

@media (max-width: 768px) {
  .hero-section__content {
    flex-direction: column;
  }

  .collection-block {
    height: 50vh;
  }
}
</style>