/** Shopify CDN: Minification failed

Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 85:10 Unexpected "{"
Line 85:19 Expected ":"
Line 298:10 Unexpected "{"
Line 298:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-template (INDEX:0) */
.section-{{ section.id }}-padding {
  padding: 60px 40px;
}

.collection-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.collection-description {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.collection-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card h3 {
  padding: 15px;
  margin: 0;
  font-size: 1.1rem;
}

.product-card .price {
  padding: 0 15px 15px;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 768px) {
  .collection-product-grid {
    grid-template-columns: 1fr;
  }
}
/* END_SECTION:collection-template */

/* START_SECTION:collections-list-page (INDEX:1) */
.section-{{ section.id }}-padding {
  padding: 60px 40px;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.collection-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.collection-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.collection-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-info {
  padding: 20px;
}

.collection-title {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.collection-description {
  color: #666;
  margin: 0 0 15px 0;
  line-height: 1.5;
}

.collection-product-count {
  display: inline-block;
  padding: 5px 12px;
  background-color: #f0f0f0;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #333;
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}
/* END_SECTION:collections-list-page */

/* START_SECTION:main-page (INDEX:7) */
.contact-page-hero {
  background-color: #808080;
  min-height: 100vh;
  padding: 60px 40px;
}

.contact-hero-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-hero-left {
  color: white;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.contact-hero-subtitle {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
}

.contact-hero-right {
  background: transparent;
}

.contact-hero-right form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field,
.form-field-half {
  display: flex;
  flex-direction: column;
}

.form-field label,
.form-field-half label {
  color: white;
  font-size: 0.875rem;
  margin-bottom: 6px;
  font-weight: 400;
}

.form-field input,
.form-field textarea,
.form-field-half input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  background: white;
  font-size: 1rem;
  font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.form-field-half input::placeholder {
  color: #999;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-submit-btn {
  align-self: flex-end;
  padding: 12px 32px;
  background-color: white;
  color: #b83a3a;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

.form-success {
  padding: 1rem;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.form-errors {
  padding: 1rem;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin-bottom: 1rem;
}

/* Regular page styles */
.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-width--narrow {
  max-width: 800px;
}

.section-{{ section.id }}-padding {
  padding-top: 36px;
  padding-bottom: 36px;
  padding-left: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-hero-title,
  .contact-hero-subtitle {
    font-size: 2.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* END_SECTION:main-page */