﻿/* Luxe Slider v1.2 ? COMPLETE (luxury) */

/* Base */
.yuka-luxe{
  margin: 16px 0 26px;
  position: relative;
  scroll-margin-top: 90px;
}

/* optional title */
.yuka-luxe-title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

/* Topbar */
.yuka-luxe-topbar{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 10px;
  justify-content: center; /* chips center */
}

/* Badge (PC: left, SP: overlap on image) */
.yuka-luxe-badge{
  position: relative;
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 0;
  background: #b08a44;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  box-shadow: none;
  margin-right: auto; /* PC left */
}
.yuka-luxe-badge::after{
  content:"";
  position:absolute;
  left: 10px;
  bottom: -6px;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #b08a44;
}

/* Chips */
.yuka-luxe-chips{
  display:flex;
  flex-wrap:wrap;
  gap: 6px;
  justify-content: center;
  max-width: 520px; /* makes 2 lines easier */
}
.yuka-luxe-chip{
  border: 1px solid rgba(0,0,0,.18);
  background: #fff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(0,0,0,.76);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.yuka-luxe-chip.is-active{
  background:#00b900;
  border-color:#00b900;
  color:#fff;
}
.yuka-luxe-chip.is-clear{
  border-style:dashed;
  opacity:.75;
}

/* Frame (square) */
.yuka-luxe-frame{
  background: #0f0f10;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 0;
  padding: 10px;
  box-shadow: none;
}

/* Slider */
.yuka-luxe-slider{
  position:relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}
.yuka-luxe-track{ overflow:hidden; }
.yuka-luxe-strip{
  display:flex;
  gap: 14px;
  scroll-behavior:smooth;
  overflow-x:auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}
.yuka-luxe-strip::-webkit-scrollbar{ display:none; }

/* Slide sizing: SP 1.5, PC 2.5 */
.yuka-luxe-slide{
  position:relative;
  flex: 0 0 66vw;
  border-radius: 0;
  overflow:hidden;
  background:#000;
  text-decoration:none;
  border: 2px solid rgba(255,255,255,.08);
}
@media (min-width: 1024px){
  .yuka-luxe-slide{ flex-basis: 360px; }
}

/* Image size */
.yuka-luxe-slide img{
  width:100%;
  height: 240px;
  object-fit: cover;
  display:block;
  opacity:.96;
  border-radius: 0;
}
@media (max-width: 480px){
  .yuka-luxe-slide img{ height: 200px; }
}

/* Overlay */
.yuka-luxe-overlay{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 10px 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.82) 100%);
  color:#fff;
}
.yuka-luxe-rating{
  display:flex;
  gap: 8px;
  align-items:baseline;
  font-weight: 900;
  font-size: 14px;
}
.yuka-luxe-rating .stars{ letter-spacing: .06em; opacity: .98; }
.yuka-luxe-rating .score{ font-size: 16px; }
.yuka-luxe-rating.is-empty{ font-size: 12px; font-weight: 800; opacity: .9; }

.yuka-luxe-name{
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Nav (square + ≪ ≫) */
.yuka-luxe-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  cursor:pointer;
  display:grid;
  place-items:center;
  color: transparent; /* hide text */
  box-shadow: none;
}
.yuka-luxe-nav.prev{ left: 0; }
.yuka-luxe-nav.next{ right: 0; }
.yuka-luxe-nav:hover{ opacity:.92; }
.yuka-luxe-nav.prev::after{
  content: "≪";
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.yuka-luxe-nav.next::after{
  content: "≫";
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

/* Mobile: badge overlaps frame, chips prefer 2 rows */
@media (max-width: 600px){
  .yuka-luxe-chips{ max-width: 360px; }
  .yuka-luxe-badge{
    position: absolute;
    z-index: 20;
    left: 10px;
    top: 56px;
    max-width: calc(100% - 20px);
    margin-right: 0;
  }
}