/** Shopify CDN: Minification failed

Line 8:28 Unexpected "{"
Line 8:37 Expected ":"
Line 8:44 Unexpected "{"

**/
.summer-collection-section-{{ section.id }} {
  background: var(--background-color);
  overflow: hidden;
}
.summer-collection-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}
.summer-collection-grid.img-right {
    flex-direction: row;
}
.summer-collection-grid.img-left {
    flex-direction: row-reverse;
}
.summer-right {
  display: flex;
  justify-content: center;
  flex: 0 0 65%;
  max-width: 65%;
  width: 100%;
  height: auto;
  background: #0000000d;
  min-height: 80rem;
}
.summer-left {
  flex: auto;
}
.summer-right-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.summer-right img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.summer-heading {
  font-weight: 600;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0;
  text-transform: capitalize;
  margin: 0 0  30px;
  color: var(--text-color);
  text-align: var(--text-align);
}

@media screen and (max-width: 1100px){
  .summer-collection-grid {     gap: 40px; }
  .summer-right {   flex: 0 0 63%;   max-width: 63%; }
}

@media screen and (max-width: 900px){
  .summer-collection-grid {    gap: 32px;}
  .summer-right {   flex: 0 0 56%;     max-width: 56%;     min-height: 60rem; }
  .summer-left {     flex: 0 0 38%; }
  .summer-heading {      font-size: 26px;      margin: 0 0  20px;  }
}

@media screen and (max-width:640px){
  .summer-collection-grid.img-right {     flex-direction: column ; }
  .summer-right {     flex: 0 0 100%;     max-width: 100%;     min-height: 100%; }
  .summer-collection-wrapper.container {     padding: 0; }
}