/*www.bytewebster.com*/
/*www.bytewebster.com*/
/*www.bytewebster.com*/
.carousel-showcase {
  margin-top: 9rem;
}

#carousel {
  position: relative;
  height: 460px;
  overflow: hidden;
}
#carousel div {
  position: absolute;
  transition: transform 400ms, left 400ms, opacity 400ms, z-index 0s;
  opacity: 1;
}
#carousel div img,
#carousel div video {
  width: 220px;
  height: 390px;
  transition: width 400ms;
   -webkit-user-drag: none;
  box-shadow: none;
   border-radius: 10px;
}

#carousel div img {
  object-fit: cover;
}

#carousel div video {
  object-fit: cover;
  background: transparent;
}
#carousel div.hideLeft {
  left: 0%;
  opacity: 0;
  transform: translateY(0) translateX(-50%);
}
#carousel div.hideLeft img,
#carousel div.hideLeft video {
  width: 120px;
}
#carousel div.hideRight {
  left: 100%;
  opacity: 0;
  transform: translateY(0) translateX(-50%);
}
#carousel div.hideRight img,
#carousel div.hideRight video {
  width: 120px;
}
#carousel div.prev {
  z-index: 5;
  left: 30%;
  transform: translateY(10px) translateX(-50%);
}
#carousel img:hover,
#carousel video:hover {
  cursor: default;
}
#carousel div.prev img,
#carousel div.prev video {
  width: 180px;
}
#carousel div.prevLeftSecond {
  z-index: 4;
  left: 15%;
  transform: translateY(0) translateX(-50%);
  opacity: 0.7;
}
#carousel div.prevLeftSecond img,
#carousel div.prevLeftSecond video {
  width: 140px;
}
#carousel div.selected {
  z-index: 10;
  left: 50%;
  transform: translateY(0px) translateX(-50%);
}
#carousel div.next {
  z-index: 5;
  left: 70%;
  transform: translateY(10px) translateX(-50%);
}
#carousel div.next img,
#carousel div.next video {
  width: 180px;
}
#carousel div.nextRightSecond {
  z-index: 4;
  left: 85%;
  transform: translateY(0) translateX(-50%);
  opacity: 0.7;
}
#carousel div.nextRightSecond img,
#carousel div.nextRightSecond video {
  width: 140px;
}

/*previous or next buttons css*/

.buttons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.carousel-arrow {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #161616;
  font-size: 1.55rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  box-shadow: 0 8px 22px rgba(12, 18, 28, 0.14);
}

.carousel-arrow:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 18, 28, 0.2);
}

.carousel-arrow:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(12, 18, 28, 0.12);
}

.carousel-arrow:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}


/* ------------------------------------------------*/
/* CAROUSEL 2 */
/* ------------------------------------------------*/

.picker-carousel {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.picker-container {
  max-width: 1760px;
}

.picker-track {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.picker-track::-webkit-scrollbar {
  display: none;
}

.list--picker {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: max-content;
  padding: 10px 4px;
  margin: 0;

  list-style: none;
  scroll-snap-type: x proximity;
}

.item--thumb {
  flex-shrink: 0;
  width: 230px;
  height: 288px;
  scroll-snap-align: center;
}

.picker-button {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(20, 20, 20, 0.12);
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(15, 23, 32, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.picker-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 23, 32, 0.14);
}

.picker-button:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

.picker-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item--thumb.is-active .picker-button {
  border-color: rgba(11, 11, 11, 0.55);
  box-shadow: 0 12px 28px rgba(15, 23, 32, 0.2);
}

.picker-nav {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(20, 20, 20, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 5px 12px rgba(15, 23, 32, 0.12);
}

.picker-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 32, 0.18);
}

.picker-nav:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.picker-preview-wrap {
  width: min(100%, 1320px);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f7f9;
}

.picker-preview {
  width: 100%;
  max-height: 700px;
  display: block;
  object-fit: contain;
  background: #f6f7f9;
}

@media (max-width: 767px) {
  .picker-carousel {
    width: 100%;
    gap: 0.35rem;
  }

  .picker-nav {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .item--thumb {
    width: 120px;
    height: 152px;
  }

  .picker-preview {
    max-height: 420px;
  }
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  font-family: sans-serif;
  font-size: 64px;
  font-weight: bold;
}