/** Shopify CDN: Minification failed

Line 21:18 Unexpected "{"
Line 21:27 Expected ":"
Line 25:18 Unexpected "{"
Line 25:27 Expected ":"
Line 33:18 Unexpected "{"
Line 33:27 Expected ":"
Line 41:18 Unexpected "{"
Line 41:27 Expected ":"
Line 50:20 Unexpected "{"
Line 50:29 Expected ":"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:3-column-image-title (INDEX:0) */
#shopify-section-{{ section.id }} .three-column-image-title {
  padding: 40px 0;
}

#shopify-section-{{ section.id }} .three-column-image-title__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

#shopify-section-{{ section.id }} .three-column-image-title__item img {
  max-width: 100%;
  height: 600px;
  display: block;
  margin: 0 auto 15px;
  object-fit: cover;
}

#shopify-section-{{ section.id }} .three-column-image-title__title {
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  margin-left: 30px;
  color: #000000;
}
@media (max-width: 768px) {
  #shopify-section-{{ section.id }} .three-column-image-title__grid {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  #shopify-section-{{ section.id }} .three-column-image-title__item img {

  height: 520px;
}
}
/* END_SECTION:3-column-image-title */

/* START_SECTION:full-video-header (INDEX:19) */
.full-video-header {
  position: relative;
  width: 100%;
  height: 100vh; /* Desktop height */
  overflow: hidden;
}

.full-video-header video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Mobile responsive height */
@media only screen and (max-width: 767px) {
  .full-video-header {
    height: 60vh; /* Mobile height reduced */
  }
  .full-video-header video {
    height: 100%;
    width: auto;
    min-width: 100%;
  }
}
/* END_SECTION:full-video-header */

/* START_SECTION:hover-video-header (INDEX:22) */
.hover-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Cursor pointer on hover */
.hover-video-section:hover {
  cursor: pointer;
}

/* Main Video */
.hover-video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* OPACITY OVERLAY FIXED */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
  z-index: 9999;         
  pointer-events: none;  
}

/* HOVER OPACITY */
.hover-video-section:hover .video-overlay {
  background: rgba(0,0,0,0.25);
}

/* Sound Icon Button */
.sound-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

/* show on hover */
.hover-video-section:hover .sound-toggle {
  opacity: 1;
}
@media (max-width: 768px) {
  .hover-video-section {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
}
}
/* END_SECTION:hover-video-header */

/* START_SECTION:left-rotate-image (INDEX:25) */
/* SECTION BACKGROUND */
.story-section {
  width: 100%;
  height: 500px;
  background-image: url("/cdn/shop/files/Website_Bolina_Island_SS26_403e6277-d2f7-4302-9ac3-1345461a4a90.webp?v=1774862418");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  margin: 150px 0 100px;
}

/* INNER FLEX CONTAINER */
.story-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the content within the max-width */
  gap: 40px;
}

/* LEFT IMAGE COLUMN - Reduced from 60% to 45% */
.story-image {
  width: 45%; 
  position: relative;
  z-index: 2;
}

/* IMAGE OVERFLOW + ROTATION */
.story-image img {
  width: 100%;
  position: relative;
  border-radius: 10px;
  object-position: center;
  object-fit: cover;
  /* Adjust top margin to pull it into the section if it's too high */
  margin-top: -20px; 
}

/* RIGHT COLUMN */
.story-text {
  width: 45%;
}

/* PARAGRAPH STYLE */
.story-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  max-width: 350px;
  text-align: justify;
}

/* SIGNATURE (TEXT) */
.story-signature {
  font-size: 18px;
  opacity: 0.85;
  font-style: italic;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 0; /* Removes the default paragraph margin */
}

/* ---> THE UPDATED IMAGE FIX <--- */
.story-bottom-image {
  max-width: 350px; /* Anchors it to the exact same width as your paragraphs */
  margin-top: -15px; /* Pulls the image closer to the text above it */
}

.story-bottom-image img {
  width: 100%;
  max-width: 210px;    /* Keeps the wider size */
  height: 70px;        /* Keeps the taller size */
  margin-left: auto;   /* Pushes the signature to the right side */
  object-fit: contain; /* Forces the entire signature to fit without getting cut off */
  display: block;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .story-section {
    height: auto;
    margin: 80px 0 0;
    padding-bottom: 50px;
  }
  .story-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .story-image, .story-text {
    width: 90%;
  }
  .story-image img {
    margin-top: -50px;
  }
  .story-paragraph, .story-bottom-image {
    max-width: 90%;
    margin: 0 auto 15px;
  }
  .story-bottom-image img {
    margin: 0 auto; /* Centers the signature on mobile */
  }
}
/* END_SECTION:left-rotate-image */

/* START_SECTION:lookbook-header (INDEX:26) */
.lookbook-header {
  text-align: center;
  padding: 40px 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.signature-img {
  margin-bottom: 10px;
}

.signature-img img {
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lookbook-title {
  font-size: 28px;
  letter-spacing: 2px;
  margin: 0;
  margin-bottom: 10px;
}

.lookbook-subtitle {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.lookbook-description {
  padding: 0px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .lookbook-description {
    padding: 20px;
  }
  .lookbook-title {
  font-size: 24px;
}
  .signature-img img {
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}
}
/* END_SECTION:lookbook-header */

/* START_SECTION:single-button (INDEX:56) */
.single-button-section .button-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.single-button-section .custom-btn {
  display: inline-block;
    background: #000;
  color: #fff;
  padding: 5px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 0;
  text-align: center;
  margin: 0 auto;
}
/* END_SECTION:single-button */

/* START_SECTION:text-image-about (INDEX:58) */
/* Added more padding specifically to the bottom */
.two-col-text-image {
  padding: 60px 0 90px 0; /* Top: 60px, Right/Left: 0, Bottom: 90px */
  width: 100%;
}

.two-col-wrapper {
  display: flex;
  max-width: 1360px;
  gap: 60px; 
  align-items: center; 
  margin: 0 auto;
  padding: 0 20px;
}

.left-column, .right-column {
  flex: 1;
}

.text-title {
  font-size: 28px;
  margin-bottom: 15px;
}

.text-description {
  font-size: 16px;
  line-height: 1.7; 
  letter-spacing: 0.5px;
  margin-bottom: 30px; 
  max-width: 400px;
  text-align: justify;
  margin-left: auto; 
  margin-right: 0;
}

/* SIGNATURE IMAGE (Left Column) */
.left-img-wrap img {
  width: 220px; 
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: 0;
}

/* POLAROID IMAGE (Right Column) */
.right-img-wrap img {
  width: 80%;      
  max-width: 400px; 
  height: auto;
  display: block;
  margin: 0 auto;  
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .two-col-text-image {
    padding: 40px 0 60px 0; /* Slightly more on the bottom for mobile too */
  }
  
  .two-col-wrapper {
    flex-direction: column-reverse;
    gap: 30px;
  }
  
  .text-description {
    margin: 0 auto 25px auto;
  }

  .left-img-wrap img {
    margin: 0 auto;
  }

  .right-img-wrap img {
    width: 90%; 
    max-width: 350px;
  }
}
/* END_SECTION:text-image-about */