*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 

 
  /* ── SLIDER WRAPPER ─────────────────────────────── */
  .hl-slider {
    position: relative;
    width: 100%;
    height: 44.444vh;
    min-height: 220px;
    max-height: 340px;
    overflow: hidden;
  }
 
  /* ── TRACK ──────────────────────────────────────── */
  .hl-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
  }
 
  /* ── INDIVIDUAL SLIDE ───────────────────────────── */
  .hl-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
 
  /* Background color layers per category */
  .hl-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease;
    filter: brightness(0.38) saturate(0.7);
  }
  .hl-slide.active::before { transform: scale(1); }
 
  .s-yemek::before   { background: url('https://denizatiparilotel.com/uploads/galeriler/large/denizat_parl_otel_1_d_1.jpg') center/cover, linear-gradient(135deg,#2a1200,#6b3000); }
  .s-tatli::before   { background: url('https://denizatiparilotel.com/uploads/galeriler/large/ssssd_2.jpg') center/cover, linear-gradient(135deg,#1a0a1f,#4a1a3a); }
  .s-icecek::before  { background: url('https://denizatiparilotel.com/uploads/galeriler/large/denizat_parl_otel_1_d_1.jpg') center/cover, linear-gradient(135deg,#00111f,#003050); }
  .s-nargile::before { background: url('https://denizatiparilotel.com/uploads/galeriler/large/ssssd_2.jpg') center/cover, linear-gradient(135deg,#0a1500,#1e3a00); }
 
  /* Vignette overlay */
  .hl-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(0,0,0,0.55) 0%, transparent 45%, transparent 55%, rgba(0,0,0,0.45) 100%),
      linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.65) 100%);
  }
 
  /* Gold accent line per slide */
  .hl-slide-inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 7%;
  }
 
  .hl-slide-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
 
  .hl-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #c9a96e;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s 0.2s ease, transform 0.6s 0.2s ease;
  }
 
  .hl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 300;
    color: #f5ede0;
    line-height: 1.1;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.65s 0.35s ease, transform 0.65s 0.35s ease;
  }
 
  .hl-line {
    width: 0;
    height: 1px;
    background: linear-gradient(to right, #c9a96e, transparent);
    transition: width 0.7s 0.5s ease;
  }
 
  .hl-desc {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s 0.6s ease, transform 0.6s 0.6s ease;
  }
 
  /* Active slide animates in */
  .hl-slide.active .hl-eyebrow { opacity: 1; transform: translateY(0); }
  .hl-slide.active .hl-title   { opacity: 1; transform: translateY(0); }
  .hl-slide.active .hl-line    { width: 60px; }
  .hl-slide.active .hl-desc    { opacity: 1; transform: translateY(0); }
 
  /* ── NAVIGATION ARROWS ──────────────────────────── */
  .hl-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border: 0.5px solid rgba(201,169,110,0.35);
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    color: #c9a96e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s;
    backdrop-filter: blur(4px);
  }
  .hl-arrow:hover { background: rgba(201,169,110,0.18); border-color: rgba(201,169,110,0.7); }
  .hl-prev { left: 16px; }
  .hl-next { right: 16px; }
  .hl-arrow svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
 
  /* ── DOTS ───────────────────────────────────────── */
  .hl-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
  }
 
  .hl-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, width 0.3s;
  }
  .hl-dot.active {
    background: #c9a96e;
    width: 20px;
    border-radius: 2px;
  }
 
  /* ── PROGRESS BAR ───────────────────────────────── */
  .hl-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(to right, #c9a96e, #e8d5a3);
    width: 0%;
    z-index: 10;
    transition: width linear;
  }
 
  /* ── SLIDE NUMBER ───────────────────────────────── */
  .hl-counter {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .hl-counter-cur {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: rgba(201,169,110,0.9);
    line-height: 1;
  }
  .hl-counter-sep {
    width: 1px;
    height: 18px;
    background: rgba(201,169,110,0.3);
    margin: 0 auto;
  }
  .hl-counter-tot {
    font-size: 10px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
  }
 
  /* ── LOGO WATERMARK ─────────────────────────────── */
  .hl-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.04;
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px;
    font-weight: 300;
    color: #fff;
    pointer-events: none;
    white-space: nowrap;
  }
 
  /* ── MOBILE ─────────────────────────────────────── */
  @media (max-width: 600px) {
    .hl-counter { display: none; }
    .hl-title   { font-size: 32px; }
    .hl-arrow   { width: 30px; height: 30px; }
    .hl-prev    { left: 10px; }
    .hl-next    { right: 10px; }
  }
 
  @media (prefers-reduced-motion: reduce) {
    .hl-track   { transition: none; }
    .hl-slide::before { transition: none; }
  }