/** Shopify CDN: Minification failed

Line 19:10 Unexpected "{"
Line 19:19 Expected ":"
Line 20:14 Expected identifier but found whitespace
Line 20:16 Unexpected "{"
Line 20:25 Expected ":"
Line 20:76 Expected ":"
Line 21:17 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:28 Expected ":"
Line 21:82 Expected ":"
... and 10 more hidden warnings

**/


/* CSS from section stylesheet tags */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

/* Mobile styles (default) */
.size-guide-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 0 5%;
}

.size-guide-image {
  width: 90%;
  margin: 0 auto;
  order: 2; /* Image below text on mobile */
}

.size-guide-content {
  width: 90%;
  order: 1; /* Text above image on mobile */
}

/* Desktop styles */
@media screen and (min-width: 750px) {
  .size-guide-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    align-items: start !important;
    padding: 0 15% !important;
  }
  
  /* Default layout - Image on left, text on right */
  .size-guide-item:not(.reverse) .size-guide-grid {
    grid-template-areas: "image content" !important;
  }
  
  .size-guide-item:not(.reverse) .size-guide-image {
    grid-area: image !important;
    width: 70% !important;
    justify-self: end !important;
  }
  
  .size-guide-item:not(.reverse) .size-guide-content {
    grid-area: content !important;
    width: 70% !important;
    justify-self: start !important;
  }
  
  /* Reverse layout - Text on left, image on right */
  .size-guide-item.reverse .size-guide-grid {
    grid-template-areas: "content image" !important;
  }
  
  .size-guide-item.reverse .size-guide-image {
    grid-area: image !important;
    width: 70% !important;
    justify-self: start !important;
  }
  
  .size-guide-item.reverse .size-guide-content {
    grid-area: content !important;
    width: 70% !important;
    justify-self: end !important;
  }
}

/* Mobile title size adjustment */
@media screen and (max-width: 749px) {
  .main-page-title {
    font-size: 2rem !important;
  }
  
  .size-guide-content h2 {
    font-size: 1.6rem !important;
  }
}

/* Lightbox Modal Styles */
.size-guide-lightbox {
  cursor: pointer;
}

.size-guide-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

#size-guide-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: white;
  padding: 10px 0;
  height: 150px;
  font-family: 'Articulat CF', sans-serif;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive lightbox adjustments */
@media only screen and (max-width: 749px) {
  .modal-content {
    max-width: 90%;
  }
}