    :root {
      --gold: #C9A84C; --gold-lt: #E8C97A; --gold-dk: #8B6914;
      --crimson: #8B1A1A; --dark: #1C1008; --mid: #3A2410;
      --cream: #FAF6EE; --ivory: #F5EDD8; --white: #fff;
      --shadow: 0 4px 24px rgba(28,16,8,.13); --radius: 10px;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Sarabun', sans-serif; background: var(--cream); color: var(--dark); }

    header { background: var(--dark); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(201,168,76,.25); }
    .header-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 16px; padding: 0 20px; height: 60px; }
    .logo { font-family: 'Cinzel', serif; color: var(--gold); text-decoration: none; font-size: 1.1rem; font-weight: 600; }
    .logo span { color: rgba(255,255,255,.6); font-weight: 400; }
    .breadcrumb { font-size: .82rem; color: rgba(255,255,255,.4); }
    .breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
    .breadcrumb a:hover { color: var(--gold); }

    .listing-hero { height: 320px; background: var(--dark); position: relative; overflow: hidden; }
    .listing-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
    .listing-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,16,8,.85) 0%, transparent 60%); }
    .hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; z-index: 1; max-width: 1100px; margin: 0 auto; }
    .listing-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; color: var(--white); line-height: 1.1; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
    .listing-city { color: rgba(255,255,255,.65); font-size: .9rem; margin-top: 6px; }

    /* ── CAT-BADGE — etiqueta de categoría en el hero ── */
    .cat-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Cinzel', serif;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 3px;
      margin-bottom: 10px;
      border: 1px solid rgba(0,0,0,.12);
      box-shadow: 0 2px 8px rgba(0,0,0,.25);
    }

    .page-container { max-width: 1100px; margin: 0 auto; padding: 28px 20px; display: grid; grid-template-columns: 1fr 300px; gap: 28px; }
    @media (max-width: 768px) { .page-container { grid-template-columns: 1fr; } .sidebar { order: -1; } }

    .section { margin-bottom: 28px; }
    .section-title { font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(201,168,76,.2); }
    .description { font-size: .95rem; line-height: 1.75; color: #444; }

    .photos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; margin-top: 12px; }
    .photos-grid img { width: 100%; height: 100px; object-fit: cover; border-radius: 4px; border: 1px solid rgba(201,168,76,.2); cursor: pointer; transition: opacity .2s; }
    .photos-grid img:hover { opacity: .85; }

    .schedule { font-size: .9rem; line-height: 1.8; color: #555; white-space: pre-line; }

    .rating-card { background: var(--ivory); border-radius: var(--radius); padding: 18px; border: 1px solid rgba(201,168,76,.2); margin-bottom: 20px; }
    .rating-total { text-align: center; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(201,168,76,.15); }
    .rating-total .num { font-family: 'Cinzel', serif; font-size: 3rem; font-weight: 700; color: var(--gold-dk); line-height: 1; }
    .rating-total .max { font-size: .85rem; color: #aaa; }
    .rating-total .votes { font-size: .78rem; color: #aaa; margin-top: 4px; }
    .rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .rating-label { min-width: 75px; font-size: .82rem; color: var(--mid); }
    .rating-bar-wrap { flex: 1; height: 5px; background: rgba(0,0,0,.08); border-radius: 3px; overflow: hidden; }
    .rating-bar { height: 100%; background: linear-gradient(90deg, var(--gold-lt), var(--crimson)); border-radius: 3px; transition: width .6s; }
    .rating-num { font-family: 'Cinzel', serif; font-size: .82rem; color: var(--gold-dk); min-width: 24px; text-align: right; }

    .vote-form { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(201,168,76,.15); }
    .vote-title { font-family: 'Cinzel', serif; font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 12px; }
    .score-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
    .score-lbl { min-width: 75px; font-size: .82rem; }
    .score-btns { display: flex; gap: 3px; flex-wrap: wrap; }
    @media (max-width: 480px) { .score-row { flex-direction: column; align-items: flex-start; gap: 4px; } .score-lbl { min-width: unset; font-weight: 600; } }
    .score-btn { width: 26px; height: 26px; border-radius: 3px; border: 1px solid rgba(201,168,76,.3); background: var(--white); font-size: .72rem; font-weight: 700; cursor: pointer; transition: all .15s; color: var(--mid); }
    .score-btn:hover { background: var(--ivory); border-color: var(--gold); }
    .score-btn.sel { background: var(--dark); border-color: var(--dark); color: var(--gold); }
    .btn-votar { width: 100%; margin-top: 10px; padding: 9px; background: linear-gradient(135deg, var(--crimson), #5C1010); color: white; border: none; border-radius: 3px; font-family: 'Cinzel', serif; font-size: .75rem; letter-spacing: 1px; cursor: pointer; transition: filter .2s; }
    .btn-votar:hover { filter: brightness(1.15); }

    .info-card { background: var(--white); border-radius: var(--radius); border: 1px solid rgba(201,168,76,.15); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 16px; }
    .info-card-title { background: var(--dark); color: var(--gold); font-family: 'Cinzel', serif; font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; padding: 10px 16px; }
    .info-list { padding: 12px 16px; }
    .info-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.04); font-size: .88rem; }
    .info-item:last-child { border-bottom: none; }
    .info-item a { color: var(--gold-dk); text-decoration: none; }
    .info-item a:hover { text-decoration: underline; }
    .info-icon { flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; opacity: .55; }
    .info-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    #detail-map { height: 220px; border-radius: 6px; overflow: hidden; margin: 12px 16px 16px; border: 1px solid rgba(201,168,76,.15); }

    .delivery-links { display: flex; flex-direction: column; gap: 8px; padding: 12px 16px; }
    .delivery-btn { display: flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 4px; text-decoration: none; font-size: .85rem; font-weight: 500; transition: filter .15s; border: 1px solid rgba(0,0,0,.08); }
    .delivery-btn:hover { filter: brightness(.95); }
    .btn-je { background: #f97316; color: white; }
    .btn-glovo { background: #ffd000; color: #333; }
    .btn-ubereats { background: #06c167; color: white; }
    .btn-tripadvisor { background: #34e0a1; color: #333; }

    .comment { padding: 12px 0; border-bottom: 1px solid var(--ivory); }
    .comment-meta { display: flex; justify-content: space-between; margin-bottom: 5px; }
    .comment-author { font-weight: 600; font-size: .85rem; }
    .comment-date { font-size: .75rem; color: #bbb; }
    .comment-text { font-size: .88rem; line-height: 1.6; color: #555; }
    .comment-form { margin-top: 16px; }
    .comment-form input, .comment-form textarea { width: 100%; border: 1px solid rgba(201,168,76,.25); border-radius: 3px; padding: 9px 12px; font-family: 'Sarabun', sans-serif; font-size: .9rem; background: var(--cream); color: var(--dark); outline: none; margin-bottom: 8px; }
    .comment-form textarea { resize: vertical; min-height: 80px; }
    .btn-comentar { padding: 9px 20px; background: var(--dark); color: var(--gold); border: 1px solid rgba(201,168,76,.3); border-radius: 3px; font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: 1px; cursor: pointer; transition: filter .2s; }
    .btn-comentar:hover { filter: brightness(1.2); }

    .back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-dk); text-decoration: none; font-size: .85rem; margin-bottom: 20px; }
    .back-link:hover { color: var(--crimson); }
