#carousel {
  width: 100%;
  max-width: 900px;
  margin: 24px auto;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  user-select: none;
}

#track {
  display: flex;
  gap: 18px;
  transition: transform .36s cubic-bezier(.2, .9, .2, 1);
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}

.zucard {
  background: #fff;
  border-radius: 16px;
  min-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.zudisabled {
  opacity: 0.5;
}

.zucard-img {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.zucard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zutag-wrap {
  position: relative;
}

.zutag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #cfcfee;
  padding: 10px;
  font-size: 12px;
  border-radius: 6px;
}

.zudark {
  background: #000;
  color: #fff;
}

.zucard-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.zucard-title {
  font-weight: 700;
  font-size: 18px;
}

.zucard-sub {
  font-size: 13px;
  color: #666;
}

.zucard-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zuprice {
  font-size: 20px;
  font-weight: 800;
}

.zubtn-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #6A00FF;
  color: #fff;
  font-size: 20px;
  
}

.zudisabled-btn {
  background: #ccc;
  cursor: not-allowed;
}
.h3{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 42px;
  font-weight: 600; /* everything bold by default */
  color: #111;
  letter-spacing: -0.5px;
  position: relative;
width: fit-content;
  /* 50% underline */
  background-image: linear-gradient(90deg,#FFFFFF, #2C0A87);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 90% 5px;
  padding-bottom: 5px;
}

/* fake “first word not bold” */

.carx0-carousel {
  width: 100%;
  max-width: 1100px;
  height: auto;
  background: black;
  overflow: hidden;
  
  position: relative;
  
}

.carx0-slides {
  display: flex;
  height: auto;
  transition: transform .6s ease;
}

.carx0-slide {
  min-width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit:cover;
}

.carx0-slide img {
  width:100%;
  height: auto;
  object-fit: cover;
}

.carx0-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carx0-dot {
  width: 20px;
  height: 6px;
  background: rgba(238, 224, 255, 1);
  border-radius: 10px;
  overflow: hidden;
  
}

.carx0-dot-fill {
  height: 100%;
  width: 0%;
  background: #7E52FF;
}