/** Shopify CDN: Minification failed

Line 19:18 Unexpected "{"
Line 19:27 Expected ":"
Line 23:18 Unexpected "{"
Line 23:27 Expected ":"
Line 31:18 Unexpected "{"
Line 31:27 Expected ":"
Line 39:18 Unexpected "{"
Line 39:27 Expected ":"
Line 48:20 Unexpected "{"
Line 48:29 Expected ":"
... and 2 more hidden warnings

**/


/* CSS from section stylesheet tags */
#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;
}
}
.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%;
  }
}
.full-width-image-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.full-width-image-section .full-width-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  object-fit: cover;
}
.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;
}
}
/* SECTION BACKGROUND */
.story-section {
  width: 100%;
  height: 500px;
  background: #f0ebe4;
  display: flex;
  justify-content: center;
  margin: 150px 0 100px;
}

/* INNER FLEX CONTAINER */
.story-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 60px;
}
/* LEFT IMAGE COLUMN */
.story-image {
  width: 60%;
  position: relative;
}

/* IMAGE OVERFLOW + ROTATION */
.story-image img {
  width: 100%;
  position: relative;
  border-radius: 10px;
  object-position: center;
  object-fit: cover;
}

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

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

/* SIGNATURE (ROTATED) */
.story-signature {
  font-size: 18px;
  opacity: 0.75;
  font-style: italic;
  transform: rotate(-2deg);  /* signature slight rotation */
  display: inline-block;
}
.story-bottom-image img {
  width: 90%;
  max-width: 500px;
  height: 60px;
  margin-left: 10%;
  object-fit: cover;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .story-section {
  height: inherit;
  margin: 100px 0 0;
  padding-bottom: 50px;
}
  .story-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .story-image, .story-text {
    width: 100%;
  }
  .story-image img {
    top: 0;
    margin-top: -70px;
    height: inherit;
  }
  .story-paragraph {
  max-width: 80%;
  text-align: justify;
  margin: 0 auto;
}
  .story-signature {
    transform: none;
  }
  .story-bottom-image img {
  max-width: 500px;
  height: 70px;
  margin-left: 20%;
  object-fit: cover;
}
}
.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;
}
}
.single-button-section .button-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.single-button-section .custom-btn {
  display: inline-block;
    background: #000;
  color: #fff;
  padding: 10px 50px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 0;
  text-align: center;
  margin: 0 auto;
}
.two-col-wrapper {
  display: flex;
  max-width: 1360px;
  gap: 40px;
  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;
  margin-bottom: 25px;
  max-width: 400px;
  text-align: justify;
  margin-left: auto;
}

.left-img-wrap img{
  width: 300px;
  height: 70px;
  object-fit: cover;
  display: block;
  margin-left: auto;

}
.right-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .two-col-wrapper {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 30px 20px;
  }
}