#fw-section-hmac-0bd30074-2456-4301-9fff-81f0d108add6 {

.hmac__iframe {
  width: 100vw;
  height: 110vh;       /* stretches to full screen height */
  min-height: 112vh;   /* ensures it never shrinks */
  overflow: hidden !important;
  position: relative;
  left: 52%;
  right: 48%;
  margin-left: -51vw;
  margin-right: -52vw;
  padding-bottom: 1.1vh;

  overflow: hidden !important;  /* hide scrollbars */
}

.hmac__iframe iframe,
.hmac__iframe embed,
.hmac__iframe video {
  width: 100%;          /* fill the container completely */
  height: 100%;         /* fill the container completely */
  border: 0;
  display: block;
  object-fit: fill;     /* scale/stretch to fit container (distortion allowed) */
}

/* Hide on screens 620px or smaller */
@media (max-width: 620px) {
  .hmac__iframe {
    display: none !important;
  }
}

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

}
#fw-section-image-b550c8a9-f647-48a0-91f0-ef9116124abd {

/* ---------------------- */
/* DEFAULT: HIDE BY DEFAULT */
/* ---------------------- */
.image-section__image-container {
  display: none !important; /* hide on screens above 620px */
  position: relative;
  z-index: 0;
  overflow: hidden !important;
  border-radius: 0 !important;
}

.image-section__image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: inherit;
  border-radius: 0 !important;
}

/* ---------------------- */
/* MOBILE SHOW (≤620px)   */
/* ---------------------- */
@media (max-width: 620px) {
  .image-section__image-container {
    display: block !important;  /* show only on mobile ≤620px */
    margin-top: 10vh;
    padding-bottom: 0vh;
    left: 0;                    /* reset horizontal offset */
    border-radius: 0 !important;
  }

  /* Optionally disable hover effects on mobile */
  .image-section__image-container:hover {
    transform: none;
    filter: brightness(1);
    opacity: 0.9;
  }
}

}
#fw-section-image-09877bab-d942-4fc4-86cf-7b846871ef06 {

.hmac__iframe {
  position: relative;
  z-index: 0;      /* prevent scrollbars */
  border-radius: 0 !important;
  padding-bottom: 5vh;
}


/* ---------------------- */
/* MOBILE ADJUSTMENTS     */
/* ---------------------- */
@media (max-width: 1080px) {
  .hmac__iframe {
    padding-bottom: 10vh;            /* maintain bottom bleed on mobile */
  }

}

}
#fw-section-image-9c2e9cc1-1286-40b0-bfb6-1c6677804c99 {

.image-section__image-container {
  position: relative;
  z-index: 1;               /* bring it above previous containers */
  top: -115vh;
  padding-left:3.0vw;/* horizotal offset */
  margin-bottom: -110vh;
  overflow: hidden !important;/* reduce gap below */

  /* Slight transparency */
  opacity: 0.9;

  /* Smooth transitions for hover effects */
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
}

.image-section__image-container img {
  display: block;
  height: auto;
  transition: inherit;      /* inherit container transitions */
}

/* Hover effect: move slightly, brighten, and maintain transparency */
.image-section__image-container:hover {
  transform: translate(0px, -5px); /* move right 10px, up 5px */
  filter: brightness(1.2); 
  /* brighten image by 20% */
  opacity: 1;                        /* slightly more opaque on hover */
}

/* ---------------------- */
/* MOBILE ADJUSTMENTS     */
/* ---------------------- */
@media (max-width: 1080px) {
  .image-section__image-container {
  top: -37vh;                    /* clamp to top of screen */
  left: 0;
  padding-left: 0;/* horizontal offset */
  margin-bottom: -30vh;    /* move down slightly if needed */
  }

  /* Disable hover effects on mobile */
  .image-section__image-container:hover {
    transform: none;
    filter: brightness(1);
    opacity: 0.9;
  }
}
}
#fw-section-featured-collection-737f65d6-e2ce-4519-b73a-51d764f47033 {

.collection__inner {
  position: relative; /* ensures it sits above the previous container */
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  backdrop-filter: blur(1vw);
  -webkit-backdrop-filter: blur(1vw);
  border-radius: 1vw;
  box-shadow: 0.4vw 0.4vw 2vw rgba(0, 0, 0, 0.4);
  overflow: hidden;

  /* Pull container upward slightly to overlap the one above */
  margin-top:0;  

  /* Padding in viewport units */
  padding: 5vh 0vw 20vh 2vw;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2vw;

  /* Smooth transitions for hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Hover effect: lift slightly */
.collection__inner:hover {
  transform: translateY(-10px);
  box-shadow: 0.5vw 0.5vw 3vw rgba(0, 0, 0, 0.6);
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
}

/* Children scaling with viewport */
.collection__inner > * {
  transform: scale(1.2); /* scale proportional to viewport width */
  transform-origin: top center;
  width: 70%;
  max-width: 70%;
  left: 3%;
  transition: transform 0.3s ease;
}

/* Heading styling */
/* Responsive scaling for collection section headers */
.collection__inner .section-header__heading,
.section-header__heading.h2,
h2.section-header__heading {
  font-weight: 700 !important;
  font-size: clamp(1rem, 3.5vw, 2.8rem) !important;
  color: #ffffff !important;
  text-transform: uppercase;
  text-shadow:
    0 0 0.2vw #9100ff,
    0 0 0.5vw #9100ff,
    0 0 1vw #9100ff;
  text-align: left;
  transition: none;
  width: 80%;
  max-width: 80%;
  line-height: 1.0;
}

.section-header {
  container-type: inline-size;
}

/* Mobile adjustments */
@media (max-width: 1080px) {
  .collection__inner {
    transform: none;
    padding: 5vh 3vw 5vh 3vw;
    gap: 2vw;
    margin-top: 1vh; /* push down on smaller screens */
  }

  .collection__inner:hover {
    transform: none;
    box-shadow: 0.4vw 0.4vw 2vw rgba(0, 0, 0, 0.4);
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  }

  .collection__inner .section-header__heading {
    font-size: 6.0cqw !important; /* slightly smaller on mobile */
    text-shadow:
      0 0 0.1vw #9100ff,
      0 0 0.3vw #9100ff,
      0 0 0.5vw #9100ff;
    width: 100%;
    max-width: 100%;
  }

  .collection__inner .section-header__cta {
    display: none !important;
  }
}

}
#fw-section-image-195d8d4e-5d08-4871-838a-69f2f55c7a84 {


.image-section__image {
  position: relative;
  margin-top: -80%;
  margin-bottom: -100%;
  width: 15vw;
  left: 39vw; /* move image upward to overlap the container above */
  z-index: 2;
  transition: transform 0.5s ease, filter 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Hover effect: slight floating illusion */
.image-section__image:hover {
  transform: translateY(-5px) scale(1.02) rotateX(2deg) rotateY(-2deg);
  filter: brightness(1.05);
}

/* Hide on mobile devices */
@media (max-width: 1400px) {
  .image-section__image {
    display: none;
  }
}

}
#fw-section-hero-video-5e19918f-076a-4400-9e40-066faa28f98f {


.hero__container {
  position: relative;
  z-index: 3; /* bring it above previous containers */
  top: -100px;
  margin-top: -5vh;
  overflow: hidden !important;
  /* Smooth transitions for hover effects */
  transition: transform 0.5s ease, filter 0.5s ease, opacity 0.5s ease;
}

/* Hide hero section on mobile */
@media (max-width: 1080px) {
  .hero__container {
    display: none !important;
  }
}

}
#fw-section-featured-product-d40d4f5e-36a6-4f42-a399-f95b309a01d7 {

.featured-product__inner {
  position: relative;
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  width: 70%;
  max-width: 70%;
  left: 15%;
  overflow: visible;
  margin-top: -4vh;
}

.featured-product__inner::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 110%;
  min-height: 110%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: -1;   /* make it sit behind text */
  border-radius: 20px; /* optional, makes corners soft */
  /* ✨ Frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 10px rgba(0,0,0,0.7); /* stronger */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Move / shift on hover */
.featured-product__inner:hover::before {
  transform: translate(10px, -10px); /* moves right 20px, up 10px */
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.6); /* optional stronger shadow */
}
/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
  .wrapper:hover,
  .header__link:hover,
  .header__icon:hover {
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
  }
}

}
#fw-section-featured-product-f4ec5513-7040-4143-92b5-ee61a76381c3 {

.featured-product__inner {
  position: relative;
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  width: 70%;
  max-width: 70%;
  left: 15%;
  overflow: visible;
  margin-top: -4vh;
}

.featured-product__inner::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 110%;
  min-height: 110%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: -1;   /* make it sit behind text */
  border-radius: 20px; /* optional, makes corners soft */
  /* ✨ Frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 10px rgba(0,0,0,0.7); /* stronger */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Move / shift on hover */
.featured-product__inner:hover::before {
  transform: translate(10px, -10px); /* moves right 20px, up 10px */
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.6); /* optional stronger shadow */
}
/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
  .wrapper:hover,
  .header__link:hover,
  .header__icon:hover {
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
  }
}

}
#fw-section-featured-product-a2467e5a-0026-4aa0-a3a6-fb76234d05c0 {

.featured-product__inner {
  position: relative;
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  width: 70%;
  max-width: 70%;
  left: 15%;
  overflow: visible;
  margin-top: -4vh;
}

.featured-product__inner::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 110%;
  min-height: 110%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: -1;   /* make it sit behind text */
  border-radius: 20px; /* optional, makes corners soft */
  /* ✨ Frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 10px rgba(0,0,0,0.7); /* stronger */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Move / shift on hover */
.featured-product__inner:hover::before {
  transform: translate(10px, -10px); /* moves right 20px, up 10px */
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.6); /* optional stronger shadow */
}
/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
  .wrapper:hover,
  .header__link:hover,
  .header__icon:hover {
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
  }
}

}
#fw-section-featured-product-a3f251ff-3940-402d-a90d-f5eaa9ff3db9 {

.featured-product__inner {
  position: relative;
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  width: 70%;
  max-width: 70%;
  left: 15%;
  overflow: visible;
  margin-top: -4vh;
}

.featured-product__inner::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 110%;
  min-height: 110%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: -1;   /* make it sit behind text */
  border-radius: 20px; /* optional, makes corners soft */
  /* ✨ Frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 10px rgba(0,0,0,0.7); /* stronger */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Move / shift on hover */
.featured-product__inner:hover::before {
  transform: translate(10px, -10px); /* moves right 20px, up 10px */
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.6); /* optional stronger shadow */
}
/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
  .wrapper:hover,
  .header__link:hover,
  .header__icon:hover {
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
  }
}

}
#fw-section-featured-product-e54175a2-85fa-4cb2-8f79-f0d2a117ab9b {

.featured-product__inner {
  position: relative;
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  width: 70%;
  max-width: 70%;
  left: 15%;
  overflow: visible;
  margin-top: -4vh;
}

.featured-product__inner::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 110%;
  min-height: 110%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: -1;   /* make it sit behind text */
  border-radius: 20px; /* optional, makes corners soft */
  /* ✨ Frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 10px rgba(0,0,0,0.7); /* stronger */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Move / shift on hover */
.featured-product__inner:hover::before {
  transform: translate(10px, -10px); /* moves right 20px, up 10px */
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.6); /* optional stronger shadow */
}
/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
  .wrapper:hover,
  .header__link:hover,
  .header__icon:hover {
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
  }
}

}
#fw-section-featured-product-f13b2217-3620-4451-a8f6-08909e9c7348 {

.featured-product__inner {
  position: relative;
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  width: 70%;
  max-width: 70%;
  left: 15%;
  overflow: visible;
  margin-top: -4vh;
}

.featured-product__inner::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 110%;
  min-height: 110%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  z-index: -1;   /* make it sit behind text */
  border-radius: 20px; /* optional, makes corners soft */
  /* ✨ Frosted-glass effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 10px rgba(0,0,0,0.7); /* stronger */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Move / shift on hover */
.featured-product__inner:hover::before {
  transform: translate(10px, -10px); /* moves right 20px, up 10px */
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.6); /* optional stronger shadow */
}
/* Disable hover effects on touch devices */
@media (hover: none) and (pointer: coarse) {
  .wrapper:hover,
  .header__link:hover,
  .header__icon:hover {
    transform: none !important;
    background: none !important;
    box-shadow: none !important;
  }
}

}
#fw-section-hmac-98cfc947-35bc-442e-bfa3-97522adee1c9 {

  .hmac {
  width: 70%;
  max-width: 70%;
  left: 15%; 
    margin: 0 auto;
    margin-bottom:-300px;   
    display: block; 
  }
}
#fw-section-image-87097154-6b58-4c6d-95ea-e6e1c540f257 {

.image-section__image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  overflow: hidden !important;
}
}
#fw-section-image-f70efd77-5763-4e7d-bd78-b1671b04471a {

.image-section__image-container {
  position: relative;
  z-index: 0;               /* bring it above previous containers */
  overflow: hidden !important;
  border-radius: 0 !important; /* unround corners */
}

.image-section__image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: inherit;      /* inherit container transitions */
  border-radius: 0 !important; /* unround corners */
}

/* ---------------------- */
/* MOBILE ADJUSTMENTS     */
/* ---------------------- */
@media (max-width: 1080px) {
  .image-section__image-container {
    margin-top: 10vh;
    padding-bottom: 6vh; /* move down 10% of viewport height */
    left: 0;            /* reset horizontal offset on mobile if desired */
    border-radius: 0 !important; /* ensure square corners on mobile */
  }

  /* Optionally disable hover effects on mobile */
  .image-section__image-container:hover {
    transform: none;
    filter: brightness(1);
    opacity: 0.9;
  }
}

}

#fw-section-header {

.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vh;          
  height: 10%;         
  background: rgba(145, 0, 255, 0.8); /* semi-transparent purple */
  backdrop-filter: blur(10px);        
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;

  /* Rotate 90° counterclockwise and reposition */
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;

  display: flex;
  flex-direction: column; 

  /* Drop shadow */
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);

  /* Smooth transitions */
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.header--left {
  column-gap: 8rem;
}

/* Hover effect: lift and brighter color */
.wrapper:hover {
  transform: rotate(-90deg) translateX(-100vh) translateY(-5px); 
  background: rgba(140, 0, 255, 1.0); /* brighter purple on hover */
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.7);
}

/* Rotate header links and icons */
.header__link,
.header__icon {
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform 0.3s ease; 
}

/* Move grid contents slightly upward */
.header__grid {
  transform: translateY(-15px);
  transition: transform 0.3s ease;
}

.header__grid .header__dropdown--content {
  transform: rotate(90deg);
  transform-origin: center;
  width: 5vh;
  left: -6em;
  top: -5.2rem; /* make it longer */
  transition: transform 0.3s ease, top 0.3s ease, left 0.3s ease;
}

/* Optional hover scale for links/icons */
.header__link:hover,
.header__icon:hover {
  transform: rotate(90deg) scale(1.1); 
}

/* ---------------------- */
/* MOBILE FIX             */
/* ---------------------- */
@media (max-width: 1080px) {
  .wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3em; /* smaller height for mobile */
    transform: none;         /* remove rotation */
    transform-origin: unset;
    flex-direction: row;     /* horizontal layout */
    justify-content: space-around;
  }

  .header--left {
    column-gap: 1rem;
  }

  /* Unrotate all elements for mobile */
  .header__link,
  .header__icon {
    transform: none !important;
  }

  .header__grid {
    transform: none !important;
  }

  .header__grid .header__dropdown--content {
    transform: none !important;
    width: auto;
    left: 0;
    top: 100%;
  }

  .wrapper:hover {
    transform: none; /* keep stable on hover */
  }
}

}
#fw-section-product-product-default {

.product {
  position: relative;
  background: rgba(0, 0, 0, 0.55); /* frosted black tint */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  padding: 2rem;
  margin: 1.5rem auto;
  max-width: 90%;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.3s ease;

  /* Move left on desktop */
  transform: translateX(50px);

  /* Enable container query units */
  container-type: inline-size;
}

/* Hover: smooth lift + tilt (desktop only) */
.product:hover {
  transform: translateX(50px) translateY(-8px) rotateX(3deg) rotateY(-3deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.7);
}

/* Buttons inside product */
.product .button.button--primary.button--expand {
  /* Limit font size growth on desktop */
  font-size: clamp(1rem, 2cqw, 1.5rem);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
}

/* Mobile / tablet adjustments */
@media (max-width: 1080px) {
  .product {
    transform: translateY(100px);
    margin-bottom: 100px;
    padding-bottom: 10vh;
    transition: none;
  }

  .product:hover {
    transform: translateY(100px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.55);
  }

  /* Override button text and shrink it */
  .product .button.button--primary.button--expand {
    position: relative;
    color: transparent; /* hide original label */
    font-size: 1rem;
    padding: 0.3rem 1rem !important;
    border-radius: 20px;
    line-height: 1.1;
  }

  .product .button.button--primary.button--expand::after {
    content: "ADD TO CART";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
  }
}

}

#fw-section-image-5cd1cf0c-d3f3-412c-ab51-6b4a7a91c7f5 {

.image-section__image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
}
#fw-section-image-d5767fc9-afa8-4342-a559-9990d4e45e7e {


.image-section__image {
  position: relative;
  margin-top: -1600px;
  margin-bottom: -800px;
  left: 40vw; /* move image upward to overlap the container above */
  z-index: 2;
  max-width: 70%;
  transition: transform 0.5s ease, filter 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Slight floating illusion */
.image-section__image:hover {
  transform: translateY(-5px) scale(1.02) rotateX(2deg) rotateY(-2deg);
  filter: brightness(1.05);
}

/* Hide on mobile devices */
@media (max-width: 1024px) {
  .image-section__image {
    display: none;
  }
}
}
#fw-section-image-bc4d6af6-2c08-4c2b-900b-6f6776a5e6be {


.image-section__image {
  position: relative;
  margin-top: -1050px;
  margin-bottom: -800px;
  left: -830px; /* move image upward to overlap the container above */
  z-index: 2;
  transition: transform 0.5s ease, filter 0.5s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Slight floating illusion */
.image-section__image:hover {
  transform: translateY(-5px) scale(1.02) rotateX(2deg) rotateY(-2deg);
  filter: brightness(1.05);
}

/* Hide on mobile devices */
@media (max-width: 1024px) {
  .image-section__image {
    display: none;
  }
}
}