#fw-section-hero-0 {

.hero{
  /* border: 1px solid red; */
  margin-top: 4em;
  /* background-color: rgb(124, 91, 255); */
}

/* h2{

  line-height: 1;
} */
/* .collage__background{
  display: none;
} */

/* .collage__content{
  display: grid;
  grid-template-columns: 2fr 1fr;
} */

/* .collage__image{
  transform: none;
  position: static;
  top: 0px;
} */

/* 🎯 Keep Title Bold but Balance Spacing */
.hero__heading {
  font-weight: 700 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
  max-width: 520px !important;
  line-height: 1.15 !important;
  margin-left: -80px !important; /* Align text left properly */
  margin-top: -10px !important;
}

/* 🟣 Adjust Dark Purple Box for Better Framing */
.hero__background {
  width: 32% !important;
  height: 90% !important;
  position: absolute !important;
  top: 4% !important;
}

/* 🔵 Align Text Block Vertically */
.hero__content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100% !important;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

/* 🟣 Fix Button Size for Desktop */
.hero__button .button {
  background-color: #7C5BFF !important;
  /* background-color: #1a1818; */
  border-radius: 10px !important;
  padding: 16px 42px !important;
  font-size: 22px !important;
  font-weight: bold !important;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.3s ease-in-out !important;
  display: inline-block !important;
  text-align: center !important;
  width: 240px !important;
}

/* 🟢 Enhance Button Hover Effect */
.hero__button .button:hover {
  background-color: #6B63FF !important;
  transform: scale(1.08) !important;
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.3) !important;
}

/* 🔵 Move Button with Text */
.hero__button {
  margin-left: -80px !important; /* Align with text */
  margin-top: 20px !important;
}

/* 📱 Mobile-Specific Fixes */
@media (max-width: 768px) {
  .hero__heading {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 85% !important;
  }

  /* ✅ Override -80px margin for mobile */
  .hero__button {
    margin-left: 0px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 15px !important;
  }

  .hero__button .button {
    width: 95vw !important;
    max-width: 480px !important;
    height: auto !important;
    padding: 18px 0 !important;
    font-size: 22px !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
  }

  /* ✅ Reduce Extra Space Below */
  .hero__content {
    padding-bottom: 0px !important;
  }
}

}
#fw-section-featured-collection-2fc95f60-728a-4df4-8498-bdfa0180d56a {



.collection__product.grid__column{
  /* border: 2px solid red; */
  padding: 0em;
}



.tile{

}

.tile img{

}





/* 🎯 Ensure Collection Title Displays */

.featured-collection-title {
  content: "Featured Collection"; /* Adjust if needed */
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: block !important;
}

/* 🟢 Force Horizontal Scrolling (Prevent Reverting to Grid) */
.collection__grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 2rem;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 40px 10px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

/* 🔥 Expand Product Cards */
.collection__product {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection__product:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* 📌 Fully Expand Product Images to Card Edges */
.tile__image {
  width: 100%;
  height: 100%;
  display: block;
}

.tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover !important; /* Forces full expansion */
  display: block;
  transition: transform 0.3s ease;
}

.collection__product:hover .tile__image img {
  transform: scale(1.05);
}

/* 🟡 Fix Price & Swatches Expansion */
.tile__bottom {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.collection__product:hover .tile__bottom {
  max-height: 100px;
  opacity: 1;
}

/* ❌ Force Remove ALL Unwanted Lines */
.tile__bottom hr,
.collection__product hr,
.tile__bottom::before,
.tile__bottom::after,
.collection__product::before,
.collection__product::after {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* 🔄 Fix Scroll Arrows */
.scroll-container {
  position: relative;
}

.scroll-left,
.scroll-right {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: background 0.3s ease;
  border-radius: 50%;
}

.scroll-left {
  left: -20px;
}

.scroll-right {
  right: -20px;
}

.scroll-left:hover,
.scroll-right:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* --- Optimized/Added CSS --- */

/* Product Card Responsiveness */
@media (max-width: 768px) {
  .collection__product {
    flex: 0 0 45%;
  }
}

@media (max-width: 576px) {
  .collection__product {
    flex: 0 0 70%;
  }
}

/* Title and Price Alignment */
.tile__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tile__prices {
  order: 1;
}

.tile__heading {
  order: 0;
}

/* Color Swatch Improvements */
.tile__option-values {
  display: flex;
  gap: 8px;
}

.color-swatch__label {
  padding: 4px;
}

.tile__more-swatches {
  padding: 4px 8px;
  font-size: 0.8em;
}

/* Scroll Arrows (Potentially Improved) */
.featured-collection {
  position: relative;
}

.scroll-container {
  display: flex;
  align-items: center;
}

.collection__grid {
  order: 1;
}

.scroll-left {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.scroll-right {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
}
#fw-section-featured-product-9fabc175-0b5b-43db-9e27-dc603446358d {

/* Improve Button Styling */
.image-banner .button, 
.featured-collection .button, 
.featured-product .button {
  background-color: #7C5BFF !important;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.image-banner .button:hover, 
.featured-collection .button:hover, 
.featured-product .button:hover {
  background-color: #6B63FF !important;
  transform: scale(1.05);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
}
/* Make Featured Collection & Product Sections More Even */
.featured-collection .product-card, 
.featured-product .product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 15px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.featured-collection .product-card:hover, 
.featured-product .product-card:hover {
  transform: scale(1.03);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

}
#fw-section-collections-list-9df6829f-cb6f-43ae-b6b6-48ec07bcafa0 {

/* 🔥 COLLECTION CARD STYLING */
.collections-list__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px; /* Softer, rounded edges */
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collections-list__item:hover {
  transform: translateY(-5px); /* Lift effect */
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.15);
}

/* 🖼️ IMAGE ADJUSTMENTS */
.collections-list__item-image-wrapper {
  border-radius: 15px; /* Consistent roundness */
}

.collections-list__item:hover .collections-list__item-image-wrapper img {
  transform: scale(1.05); /* Slight zoom */
}

/* 🎭 SOFT OVERLAY ON HOVER */
.collections-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15); /* Lighter overlay */
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

/* ----------------------------------------
   2) TITLE CODE THAT WORKS ON iPHONE
   (Relative + Flex + margin: auto)
----------------------------------------- */
.collections-list__item-title {
  position: relative !important; /* Fix for Safari iPhone */
  bottom: 12px; /* We'll override this below with percentages */
  color: white !important;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center !important;
  background: rgba(0, 0, 0, 0.4); /* Soft background */
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.3s ease, padding 0.3s ease;
  max-width: 85% !important; /* Prevents shrinking */
  width: auto !important; /* Avoids width issues in Safari */
  white-space: normal !important; /* Allow line breaks */
  word-wrap: break-word !important;

  /* Force Full Centering */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto !important; /* Centers horizontally */
}
/* iPhone Safari-specific fix */
@supports (-webkit-touch-callout: none) {
  .collections-list__item-title {
    left: auto !important; /* Override left positioning if any */
    transform: none !important; /* Remove transform bug */
  }
}

/* ----------------------------------------
   3) NEW: PERCENTAGE-BASED TITLE OFFSETS
   Tweak these as needed to raise/lower text
----------------------------------------- */

/* On small screens (iPhone) */
@media screen and (max-width: 639px) {
  .collections-list__item-title {
    bottom: 30% !important; 
    /* Raise or lower if needed (try 10%, 15%, etc.) */
  }
}

/* On mid-sized screens/tablets */
@media screen and (min-width: 640px) and (max-width: 1023px) {
  .collections-list__item-title {
    bottom: 30% !important; 
    /* Adjust if needed */
  }
}

/* On desktop screens */
@media screen and (min-width: 1024px) {
  .collections-list__item-title {
    bottom: 12% !important; 
    /* Or 10%, 20%, etc., depending on your taste */
  }
}

}


#fw-section-custom-html-efb1bf6d-901b-47f0-9115-cea677ea7e0c {

/* --- Custom Collection CSS --- */
 /* Reset */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 }
 /* ---------------------------------------------------- */
 /* 1. General Layout and Title */
 /* ---------------------------------------------------- */
 .featured-collection-section {
  position: relative;
  background-color: #bab8ff;
  padding: 20px;
 }
 .collection-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1a1818;
 }
 /* ---------------------------------------------------- */
 /* 2. Scroll Buttons */
 /* ---------------------------------------------------- */
 .scroll-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
 }
 .scroll-button {
  background-color: #7c5bff;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  border-radius: 50%;
  line-height: 1;
 }
 .scroll-button:hover {
  background-color: #5a42c4;
 }
 .scroll-left {
  margin-right: 10px;
 }
 .scroll-right {
  margin-left: 10px;
 }
 /* ---------------------------------------------------- */
 /* 3. Product Grid */
 /* ---------------------------------------------------- */
 .collection-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 15px;
  padding: 10px;
 }
 /* ---------------------------------------------------- */
 /* 4. Product Cards */
 /* ---------------------------------------------------- */
 .product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
 }
 /* ---------------------------------------------------- */
 /* 5. Card Content */
 /* ---------------------------------------------------- */
 .product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
 }
 /* ---------------------------------------------------- */
 /* 6. Image */
 /* ---------------------------------------------------- */
 .product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
 }
 .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
 }
 .product-card:hover .product-image img {
  transform: scale(1.05);
 }
 /* ---------------------------------------------------- */
 /* 7. Text */
 /* ---------------------------------------------------- */
 .product-title {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px;
  word-wrap: break-word;
  color: #1a1818;
 }
 .product-price {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  color: #1a1818;
 }
 /* ---------------------------------------------------- */
 /* 8. Hide Default Elements (If Necessary) */
 /* ---------------------------------------------------- */
 .tile__description,
 .tile__prices,
 .tile__options {
  display: none !important;
 }
}


#fw-section-header {



/* Floating Cart Button */
.floating-cart {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: #7C5BFF;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: bold;
  text-align: center;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
  border: 5px solid red;
}

.floating-cart:hover {
  background-color: #6B63FF;
}



.header{
  /* border: 1px solid red; */
  padding: 1em 3em;
  box-shadow: 0rem 0.3rem 0.5rem rgba(0,0,0,0.1);
}

.header li{
  /* margin: 0em 1em; */
}

nav{
  /* border: 1px solid red; */
}

nav ul{
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-weight: 500;
}

nav ul li{
  
}

nav li a{
  font-size: 1.1rem;
}



.header li a{
  text-transform: capitalize;
  transition: all 300ms linear;
}

.header a:hover{
  color: #7c5bff;
}

.header li a:active{
  transform: scale(0.8);
}
}