/** Shopify CDN: Minification failed

Line 550:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.carousel-outer-wrapper {
  width: 100vw;
  height:80vh;
  overflow: hidden;
  position: relative;
}

.dior-carousel-wrapper {
  display: flex;
  width: 200vw;
  height: 100%;
  transition: transform 2s ease;
  will-change: transform; /* performance hint */
}

.dior-carousel-wrapper.slide-products {
  transform: translateX(-100vw);
  transition: transform 2s ease;
}

.dior-carousel-left {
  width: 65vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  position: relative; /* ✅ Add this */
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

.dior-carousel-middle {
  position: absolute; /* ✅ Make it overlay */
  top: 0;
  right: 0; /* ✅ Align to right */
  height: 100%;
  width: auto;
  padding: 1rem;
  background-color:white; /* optional: subtle white bg */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 100%;
  white-space: nowrap;
  letter-spacing: 1vh;
  padding: 1rem 0;
  color: #111;
  text-transform: uppercase;
  font-weight: 300;
  font-family: 'Poppins', 'Inter','Work Sans','Helvetica Neue','Outfit',Helvetica, Arial, sans-serif;
  transition: transform 1s ease;
}

  
.dior-carousel-wrapper.slide-products .dior-carousel-left {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.dior-carousel-wrapper.slide-products .dior-carousel-middle {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.dior-carousel-right {
  width: 135vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  height: 100%;
  overflow: hidden;
}

.product-carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
  scroll-behavior: smooth;
}

.product-slide {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100%;
  height: 100%;
}

.product-grid-item {
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  padding: 0.5rem;
  height: 100%;
  width: 100%;
  transition: background 0.5s ease-in-out;
}
.product-grid-item:hover{
  background:#F7EFE5;
  transition: background 0.35s ease-in-out;
}
.product-grid-item img {
  width: auto;
  height: 80%; /* 🔧 Fixed height: adjust as needed */
  object-fit: cover; /* ensures image fills container neatly */
  object-position: center;
  margin-bottom: 0.5rem;
  border-radius: 6px;
}

.product-grid-item-title {
  font-family: serif;
  font-size: 0.9rem;
  color: #111;
  text-transform: capitalize;
}

.slide-trigger {
  position: absolute;
  height:80vh;
  bottom: 0%; 
  right: 1rem;
  z-index: 10;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  opacity:0.5;
  transition: background-color 1s ease-in-out;
}

.slide-trigger:hover{
  background-color: black;
  transition: background-color 1s ease-in-out;
  color:white;
  opacity:0.5;
  svg{
    fill:white;
    transition: fill 1s ease-in-out;
  }
}
/* .dior-carousel-wrapper.slide-products .vertical-text {
  writing-mode: horizontal-tb;
  transform: rotate(0deg);
  transition: transform 1s ease;
}
.dior-carousel-wrapper.slide-products .dior-carousel-middle{
  width: 20vw;
  margin-left: 2rem;
}
.dior-carousel-wrapper.slide-products .dior-carousel-left{
  width:50vw;
} */
.slide-trigger svg {
  width: 36px;
  height: 36px;
  fill: black;
  transition: transform 0.3s ease-in-out;
}

.dior-carousel-wrapper.slide-products ~ .slide-trigger svg {
  transform: rotate(180deg);
}

/* @media screen and (max-width: 749px) {
  .carousel-outer-wrapper {
    width: 100%;
  }

  .dior-carousel-wrapper {
    flex-direction: column;
    width: 100vw;
    height: auto;
    transform: none !important;
  }

  .dior-carousel-left,
  .dior-carousel-right {
    width: 100vw;
    height: auto;
  }

  .product-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
} */
@media screen and (max-width: 749px) {
  .carousel-outer-wrapper {
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    height: 80vh;
    scroll-behavior: smooth;
  }

  .dior-carousel-wrapper {
    display: flex;
    flex-direction: row;
    width: calc(60vw + (50vw * 15) + (1rem * 30));
    height: 100%;
    overflow: hidden;
    transform: none !important;
  }

  .dior-carousel-left {
    width: 60vw;
    flex-shrink: 0;
    height: auto;
    background-size: cover;
    background-position: center;
  }

  .dior-carousel-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex-shrink: 0;
    width: auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.85); /* fallback */
    background-image: url('/cdn/shop/files/antonio-araujo-NTgJBVdHQC8-unsplash.jpg?v=1751798776');
 
  }

  .product-carousel-container,
  .product-carousel-track,
  .product-slide {
    display: flex;
    flex-direction: row;
    width: auto;
    height: 100%;
    justify-content: center;
    align-items: center;
  }

  .product-grid-item {
    height: 70%;
    scroll-snap-align: start;
    background: white;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .product-grid-item img {
    max-height: 80%;
    width: auto;
    object-fit: contain;
    object-position: center;
    margin-bottom: 0.5rem;
    border-radius: 6px;
  }

  .slide-trigger {
    display: none;
  }
  .product-grid-item-title{
    margin-top:2rem;
    width:80%;
  }
}
.carousel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.collection-carousel-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif;
  box-sizing: border-box;
  overflow: hidden;
}

.collection-carousel-left {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  box-sizing: border-box;
  position: relative; /* Needed for absolute positioning of the button */
}

.collection-carousel-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.full-width-left-button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background-color: #000000; /* White background */
  color: #ffffff; /* Black text */
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  text-decoration: none;
  z-index: 2;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.full-width-left-button:hover {
  background-color: #ffffff; /* Black background */
  color: #000000; /* White text */
}

.collection-carousel-right {
  width: 100%;
  height: 100%;
  background-color: #F8F5F2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  justify-items: stretch;
  align-items: stretch;
  font-family: 'Cinzel', serif;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  border-radius: 0;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  transition: all 0.6s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel-item:hover {
  background-color: #eee5dc;
}

.carousel-item a {
  text-decoration: none;
  color: inherit;
}

.carousel-item img {
  width: 100%;
  height: auto;
  max-height: 60%;
  object-fit: contain;
  border-radius: 0;
}

.carousel-item h4 {
  margin-top: 2rem;
  font-size: 1rem;
  text-decoration: none;
  color: #111;
  font-weight: normal;
}

.carousel-item p {
  font-size: 0.9rem;
  color: #777;
  text-decoration: none;
}

.view-all-button {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 2rem 2rem;
  background-color: #f5f0e8;
  color: #000;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 0;
  z-index: 11;
  transition: background-color 0.3s ease;
  transform: translate(-50%, -50%);
}

.view-all-button:hover {
  background-color: #e6dbce;
}

@media screen and (max-width: 749px) {
  .collection-carousel-wrapper {
    /* Keep the grid layout instead of switching to block */
    display: grid;
    /* Adjust column widths: left takes ~40%, right takes ~60% */
    grid-template-columns: 2fr 3fr;
    height: auto; /* Allow height to adjust based on content */
  }

  .collection-carousel-left,
  .collection-carousel-right {
    width: 100%; /* Ensure full width within their grid columns */
  }

  .collection-carousel-left img {
    height: auto; /* Maintain aspect ratio */
  }

  .collection-carousel-right {
    /* Keep the 2x2 grid for products */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 0; /* Maintain original gap */
    padding: 0; /* Maintain original padding */
  }

  .carousel-item {
    width: 100% !important;
    max-width: 100%;
    flex: 0 0 auto;
  }

  .full-width-left-button {
    font-size: 0.9rem;
    padding: 1rem;
  }
}

.button-created {
  position: absolute;
  top: 40%;
  left: 45%;
  width: 2rem;
  height: 2rem;
}
.lineup-scroll-wrapper {
  width: 100%;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;

  /* Background image settings */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    url('/cdn/shop/files/toa-heftiba-TWOnvtstmeU-unsplash.jpg?v=1750508199');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Optional depth control */
  background-blend-mode: multiply;

  /* Keeps everything readable & elegant */
  filter: brightness(0.9) contrast(1.05);
}


.lineup-slide {
  position: relative;
  transform: translateY(60px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  text-align: center;
  will-change: opacity, transform;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full screen height */
  max-height: 100vh;
  padding: 2rem;
  padding-bottom: 0;
  box-sizing: border-box;
}

.lineup-slide.reveal {
  opacity: 1;
  transform: translateY(0);
}

.lineup-slide img {
  max-width: 100%;
  max-height: 80%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  transition: transform 2s ease;
}

.lineup-slide:hover img {
  transform: scale(1.05);
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');

.lineup-heading-wrapper {
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 15rem;
 
}

.lineup-heading-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 5rem; /* adjusts from mobile to desktop */
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

  
@media screen and (max-width: 750px) {
  .lineup-scroll-wrapper {
    background-position: center top;
    gap: 3rem; /* reduce spacing between slides */
  }

  .lineup-slide {
    padding: 0.5rem 1rem;
    height: auto;
    min-height: auto;
    margin-bottom: 0; /* eliminate default spacing */
  }

  .lineup-slide img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
  }
  .lineup-heading-text{
    font-size:2.5rem;
    letter-spacing: 0.1em;
  }
  .lineup-heading-wrapper{
    margin-top:0;
  }
}