/** Shopify CDN: Minification failed

Line 12:16 Expected identifier but found whitespace
Line 12:17 Unexpected "20px"
Line 70:3 Unexpected "/"

**/
/* .image-with-controls-new {
  position: relative;
  overflow: hidden;
  width: 100%; /* Make sure it takes up width */
  margin-bottom: 20px; /* Add some space below */
}

.image-container-new {
  width: 100%;
  height: 400px; /* Set a fixed height for testing */
  background-repeat: no-repeat;
  background-size: contain; /* Or cover */
  background-position: center center;
}

.controls-new {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.move-button-new {
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  cursor: pointer;
}

.section-button-new {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  z-index: 5;
}

/* Apply the stored background position */
.image-container[data-position] {
  background-position: var(--bg-position);
}
.image-container {
  width: 100%;
  height: auto; /* Or a fixed height */
  background-repeat: no-repeat;
  background-size: contain; /* Or cover */
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .image-container {
    /* Styles for mobile */
    background-image: url('{{ section.settings.mobile_image | img_url: 'master' }}'); /* Example */
  }
} */

.fullscreen-image-link {
  display: block; /* Make the link take up the full container */
  width: 100%;
  height: 100vh; /* Full viewport height */
}

.fullscreen-image-container {
  width: 100%;
  height: 100vh; /* Full viewport height */
  background-repeat: no-repeat;
  background-size: cover; /* Cover the entire viewport */
  background-position: center center;
}

@media screen and (max-width: 767px) {
  .fullscreen-image-container {
    background-image: url('{{ section.settings.mobile_image | img_url: 'master' }}');
  }
}

.fullscreen-button-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; /* Ensure button is on top of the image */
}

.fullscreen-button {
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}