  /* ── Google Fonts ── */
  @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

  /* ── Design Tokens ── */
  :root {
    --saffron:       #E8891A;
    --saffron-light: #FFF3E0;
    --saffron-glow:  rgba(232,137,26,.18);
    --temple:        #3B1F0A;
    --temple-mid:    #6B3A1F;
    --cream:         #FDF6EC;
    --cream-deep:    #F5E8D0;
    --stone:         #8A7060;
    --stone-muted:   #C4B5A8;
    --gold:          #C9922A;
    --gold-shimmer:  linear-gradient(90deg,#C9922A,#F0C060,#C9922A);
    --red-tikka:     #C0392B;
    --white:         #FFFFFF;
    --radius-card:   16px;
    --shadow-card:   0 2px 16px rgba(59,31,10,.10);
    --shadow-hover:  0 8px 36px rgba(232,137,26,.22);
    --font-display:  'Cormorant Garamond', serif;
    --font-body:     'Jost', sans-serif;
    --transition:    .22s cubic-bezier(.4,0,.2,1);
  }

  /* ── Base ── */
  .pl-page { font-family: var(--font-body); background: var(--cream); min-height: 100vh; }

  /* ── Hero Banner ── */
  .pl-hero {
    background: linear-gradient(135deg, var(--temple) 0%, #5C2D0F 60%, #8B4513 100%);
    position: relative; overflow: hidden;
    padding: 56px 0 44px;
  }
  .pl-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,137,26,.18) 0%, transparent 70%),
      url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8891A' fill-opacity='0.05'%3E%3Cpath d='M40 0L50 30H80L57 48L67 78L40 60L13 78L23 48L0 30H30Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }
  .pl-hero-inner { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
  .pl-hero-eyebrow {
    font-family: var(--font-body); font-size: 10px; letter-spacing: .2em;
    text-transform: uppercase; color: var(--saffron); opacity: .9; margin-bottom: 8px;
  }
  .pl-hero-title {
    font-family: var(--font-display); font-size: clamp(28px,5vw,48px);
    font-weight: 600; color: var(--cream); line-height: 1.15; margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
  }
  .pl-hero-sub { font-size: 14px; color: var(--stone-muted); max-width: 480px; line-height: 1.6; }
  .pl-hero-search {
    margin-top: 24px; display: flex; gap: 0; max-width: 440px;
  }
  .pl-hero-search input {
    flex: 1; height: 44px; padding: 0 16px;
    background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(232,137,26,.4); border-right: none;
    border-radius: 8px 0 0 8px; color: #fff; font-family: var(--font-body); font-size: 14px;
    outline: none; transition: var(--transition);
  }
  .pl-hero-search input::placeholder { color: rgba(255,255,255,.45); }
  .pl-hero-search input:focus { background: rgba(255,255,255,.16); border-color: var(--saffron); }
  .pl-hero-search button {
    height: 44px; padding: 0 20px;
    background: var(--saffron); border: none; border-radius: 0 8px 8px 0;
    color: #fff; font-family: var(--font-body); font-size: 13px; font-weight: 600;
    cursor: pointer; transition: var(--transition); white-space: nowrap;
  }
  .pl-hero-search button:hover { background: #d4780f; }
  .pl-search-query { margin-top: 10px; font-size: 13px; color: var(--stone-muted); }
  .pl-search-query em { color: var(--saffron); font-style: normal; font-weight: 500; }

  /* ── Layout ── */
  .pl-body { max-width: 1280px; margin: 0 auto; padding: 36px 24px 80px; display: flex; gap: 32px; align-items: flex-start; }

  /* ── Sidebar ── */
  .pl-sidebar {
    width: 240px; flex-shrink: 0;
    background: var(--white); border-radius: var(--radius-card);
    border: 1px solid rgba(196,181,168,.3);
    box-shadow: var(--shadow-card); overflow: hidden;
    position: sticky; top: 24px;
  }
  .pl-sidebar-head {
    background: linear-gradient(135deg, var(--temple), var(--temple-mid));
    padding: 16px 20px; display: flex; align-items: center; gap: 10px;
  }
  .pl-sidebar-head-title { font-family: var(--font-body); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--cream); font-weight: 600; }
  .pl-sidebar-section { padding: 18px 20px; border-bottom: 1px solid rgba(196,181,168,.2); }
  .pl-sidebar-section:last-child { border-bottom: none; }
  .pl-sidebar-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
  .pl-sidebar-label svg { width: 12px; height: 12px; opacity: .6; }

  /* Filter chips */
  .pl-chip-list { display: flex; flex-direction: column; gap: 4px; }
  .pl-chip {
    display: flex; align-items: center; gap: 8px; padding: 7px 12px;
    border-radius: 8px; font-size: 13px; font-family: var(--font-body);
    color: var(--stone); text-decoration: none; transition: var(--transition);
    border: 1.5px solid transparent; cursor: pointer; background: transparent;
  }
  .pl-chip:hover { background: var(--saffron-light); color: var(--temple); border-color: rgba(232,137,26,.3); }
  .pl-chip.active { background: var(--saffron-light); color: var(--saffron); border-color: var(--saffron); font-weight: 600; }
  .pl-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
  .pl-chip-count {
    margin-left: auto; font-size: 11px; background: rgba(232,137,26,.15);
    color: var(--saffron); padding: 1px 7px; border-radius: 20px;
  }

  /* Mobile filter toggle */
  .pl-filter-toggle {
    display: none; width: 100%; align-items: center; justify-content: space-between;
    padding: 12px 16px; background: var(--white); border: 1.5px solid rgba(196,181,168,.4);
    border-radius: 10px; font-family: var(--font-body); font-size: 14px; font-weight: 500;
    color: var(--temple); cursor: pointer; margin-bottom: 20px;
  }
  .pl-filter-toggle svg { transition: transform .25s; }
  .pl-filter-toggle.open svg { transform: rotate(180deg); }
  .pl-sidebar-mobile { display: none; }

  /* ── Main Column ── */
  .pl-main { flex: 1; min-width: 0; }

  /* ── Sort/Result bar ── */
  .pl-sortbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px; gap: 12px; flex-wrap: wrap;
  }
  .pl-result-count { font-size: 14px; color: var(--stone); }
  .pl-result-count strong { color: var(--temple); font-weight: 600; }
  .pl-sort-wrap { display: flex; align-items: center; gap: 8px; }
  .pl-sort-label { font-size: 12px; color: var(--stone); }
  .pl-sort-select {
    height: 36px; padding: 0 28px 0 12px; border: 1.5px solid rgba(196,181,168,.4);
    border-radius: 8px; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none; font-family: var(--font-body); font-size: 13px; color: var(--temple);
    cursor: pointer; outline: none; transition: var(--transition);
  }
  .pl-sort-select:focus { border-color: var(--saffron); }

  /* Active filters pill strip */
  .pl-active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
  .pl-filter-pill {
    display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
    background: var(--saffron-light); border: 1px solid rgba(232,137,26,.4);
    border-radius: 20px; font-size: 12px; font-family: var(--font-body); color: var(--saffron);
  }
  .pl-filter-pill a { color: var(--saffron); text-decoration: none; font-size: 14px; line-height: 1; margin-left: 2px; }
  .pl-filter-pill a:hover { color: var(--red-tikka); }

  /* ── Grid ── */
  .pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
  }

  /* ── Card ── */
  .pl-card {
    background: var(--white); border-radius: var(--radius-card);
    box-shadow: var(--shadow-card); overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer; position: relative; display: flex; flex-direction: column;
    border: 1px solid rgba(196,181,168,.2);
    animation: cardIn .4s ease both;
  }
  .pl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

  @keyframes cardIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .pl-card-media { position: relative; overflow: hidden; height: 200px; flex-shrink: 0; }
  .pl-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
  .pl-card:hover .pl-card-img { transform: scale(1.05); }
  .pl-card-placeholder {
    width: 100%; height: 100%; background: linear-gradient(135deg, var(--cream-deep), #EED9B8);
    display: flex; align-items: center; justify-content: center; font-size: 56px;
  }

  /* Badges */
  .pl-badge-wrap { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 5px; }
  .pl-badge {
    display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px;
    border-radius: 6px; font-size: 11px; font-family: var(--font-body); font-weight: 600;
    letter-spacing: .04em;
  }
  .pl-badge-discount { background: var(--red-tikka); color: #fff; }
  .pl-badge-type-online { background: rgba(59,31,10,.82); color: var(--saffron); }
  .pl-badge-type-offline { background: rgba(59,31,10,.82); color: #A8D8A8; }
  .pl-badge-type-physical { background: rgba(59,31,10,.82); color: var(--stone-muted); }

  /* Quick view overlay */
  .pl-card-overlay {
    position: absolute; inset: 0; background: rgba(59,31,10,.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--transition); backdrop-filter: blur(2px);
  }
  .pl-card:hover .pl-card-overlay { opacity: 1; }
  .pl-card-overlay-btn {
    padding: 9px 20px; background: var(--white); border-radius: 8px;
    font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--temple);
    border: none; cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
  }
  .pl-card-overlay-btn:hover { background: var(--saffron); color: #fff; }

  /* Card body */
  .pl-card-body { padding: 18px 18px 14px; flex: 1; display: flex; flex-direction: column; }
  .pl-card-category { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--saffron); margin-bottom: 5px; font-weight: 600; }
  .pl-card-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--temple); line-height: 1.25; margin-bottom: 7px; }
  .pl-card-desc { font-size: 13px; color: var(--stone); line-height: 1.6; margin-bottom: 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

  /* Price + CTA row */
  .pl-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
  .pl-price-from { font-size: 11px; color: var(--stone); }
  .pl-price-main { font-size: 20px; font-weight: 600; color: var(--temple); line-height: 1; }
  .pl-price-main span { font-size: 13px; font-weight: 400; }
  .pl-price-original { font-size: 12px; color: var(--stone-muted); text-decoration: line-through; margin-top: 2px; }
  .pl-price-saving { font-size: 11px; color: #2E7D32; font-weight: 600; margin-top: 1px; }

  .pl-cta {
    flex-shrink: 0; padding: 9px 16px; border-radius: 9px;
    font-family: var(--font-body); font-size: 13px; font-weight: 600;
    text-decoration: none; transition: var(--transition); display: inline-flex; align-items: center; gap: 5px;
    cursor: pointer; border: none;
  }
  .pl-cta-book { background: var(--saffron); color: #fff; }
  .pl-cta-book:hover { background: #d4780f; box-shadow: 0 4px 16px rgba(232,137,26,.4); }
  .pl-cta-buy { background: var(--temple); color: var(--cream); }
  .pl-cta-buy:hover { background: var(--temple-mid); box-shadow: 0 4px 16px rgba(59,31,10,.3); }

  /* ── Empty state ── */
  .pl-empty {
    text-align: center; padding: 80px 24px;
    background: var(--white); border-radius: var(--radius-card);
    border: 1.5px dashed rgba(196,181,168,.5);
  }
  .pl-empty-icon { font-size: 56px; margin-bottom: 16px; }
  .pl-empty-title { font-family: var(--font-display); font-size: 26px; color: var(--temple); margin-bottom: 8px; }
  .pl-empty-text { font-size: 14px; color: var(--stone); margin-bottom: 24px; }
  .pl-empty-link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 22px; border: 1.5px solid var(--saffron); border-radius: 9px; color: var(--saffron); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
  .pl-empty-link:hover { background: var(--saffron); color: #fff; }

  /* ── MODAL ── */
  .pl-modal-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9000;
    display: flex; align-items: center; justify-content: center; padding: 20px;
    opacity: 0; pointer-events: none; transition: opacity .25s;
    backdrop-filter: blur(4px);
  }
  .pl-modal-backdrop.open { opacity: 1; pointer-events: all; }

  .pl-modal {
    background: var(--white); border-radius: 20px; overflow: hidden;
    max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
    transform: scale(.96) translateY(12px); transition: transform .25s cubic-bezier(.34,1.56,.64,1);
    position: relative;
  }
  .pl-modal-backdrop.open .pl-modal { transform: scale(1) translateY(0); }

  .pl-modal-close {
    position: absolute; top: 14px; right: 14px; z-index: 10;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(0,0,0,.15); backdrop-filter: blur(8px);
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; transition: var(--transition);
  }
  .pl-modal-close:hover { background: var(--red-tikka); }

  .pl-modal-body { display: flex; flex-direction: column; }
  .pl-modal-hero { position: relative; height: 280px; overflow: hidden; flex-shrink: 0; }
  .pl-modal-hero img { width: 100%; height: 100%; object-fit: cover; }
  .pl-modal-hero-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--cream-deep), #EED9B8);
    display: flex; align-items: center; justify-content: center; font-size: 72px;
  }
  .pl-modal-hero-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(transparent, rgba(59,31,10,.7)); }
  .pl-modal-hero-badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 6px; flex-wrap: wrap; }

  .pl-modal-content { padding: 24px 28px 32px; }
  .pl-modal-category { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--saffron); font-weight: 600; margin-bottom: 6px; }
  .pl-modal-title { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--temple); line-height: 1.2; margin-bottom: 12px; }
  .pl-modal-desc { font-size: 14px; color: var(--stone); line-height: 1.7; margin-bottom: 20px; }

  .pl-modal-price-row { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
  .pl-modal-price-main { font-size: 30px; font-weight: 700; color: var(--temple); line-height: 1; }
  .pl-modal-price-original { font-size: 16px; color: var(--stone-muted); text-decoration: line-through; margin-bottom: 2px; }
  .pl-modal-price-from { font-size: 12px; color: var(--stone); margin-bottom: 6px; }
  .pl-modal-price-tag { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; background: #E8F5E9; color: #2E7D32; border-radius: 20px; font-size: 12px; font-weight: 600; }

  .pl-modal-cta { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; }
  .pl-modal-btn-primary {
    flex: 1; min-width: 140px; padding: 14px 24px; border-radius: 12px;
    font-family: var(--font-body); font-size: 15px; font-weight: 600;
    text-align: center; text-decoration: none; transition: var(--transition);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; border: none;
  }
  .pl-modal-btn-book { background: var(--saffron); color: #fff; }
  .pl-modal-btn-book:hover { background: #d4780f; box-shadow: 0 6px 20px rgba(232,137,26,.45); }
  .pl-modal-btn-buy { background: var(--temple); color: var(--cream); }
  .pl-modal-btn-buy:hover { background: var(--temple-mid); }
  .pl-modal-btn-outline {
    padding: 13px 20px; border-radius: 12px; font-family: var(--font-body); font-size: 14px;
    font-weight: 500; text-decoration: none; color: var(--temple);
    border: 1.5px solid rgba(196,181,168,.6); background: transparent;
    transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  }
  .pl-modal-btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }

  .pl-modal-divider { height: 1px; background: rgba(196,181,168,.25); margin: 20px 0; }
  .pl-modal-meta { display: flex; gap: 18px; flex-wrap: wrap; }
  .pl-modal-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--stone); }
  .pl-modal-meta-item svg { width: 15px; height: 15px; color: var(--saffron); flex-shrink: 0; }

  /* Divider/scroll scrollbar */
  .pl-modal::-webkit-scrollbar { width: 5px; }
  .pl-modal::-webkit-scrollbar-track { background: var(--cream); }
  .pl-modal::-webkit-scrollbar-thumb { background: var(--stone-muted); border-radius: 4px; }

  /* ── Gold divider ornament ── */
  .pl-ornament { text-align: center; color: var(--saffron); font-size: 18px; letter-spacing: 8px; opacity: .5; margin: 4px 0 16px; }

  /* ── Stagger animations for grid ── */
  .pl-card:nth-child(1)  { animation-delay: .04s }
  .pl-card:nth-child(2)  { animation-delay: .08s }
  .pl-card:nth-child(3)  { animation-delay: .12s }
  .pl-card:nth-child(4)  { animation-delay: .16s }
  .pl-card:nth-child(5)  { animation-delay: .20s }
  .pl-card:nth-child(6)  { animation-delay: .24s }
  .pl-card:nth-child(7)  { animation-delay: .28s }
  .pl-card:nth-child(8)  { animation-delay: .32s }
  .pl-card:nth-child(9)  { animation-delay: .36s }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .pl-body { flex-direction: column; padding: 20px 16px 60px; gap: 0; }
    .pl-sidebar { width: 100%; position: static; border-radius: 12px; display: none; }
    .pl-sidebar.mobile-open { display: block; margin-bottom: 20px; }
    .pl-filter-toggle { display: flex; }
    .pl-hero { padding: 36px 0 30px; }
    .pl-modal-body { flex-direction: column; }
    .pl-modal-hero { height: 220px; }
    .pl-modal-content { padding: 18px 20px 24px; }
    .pl-modal-title { font-size: 26px; }
  }
  @media (max-width: 600px) {
    .pl-grid { grid-template-columns: 1fr; gap: 16px; }
    .pl-hero-search { max-width: 100%; }
    .pl-modal { border-radius: 16px 16px 0 0; max-height: 95vh; margin-top: auto; }
    .pl-modal-backdrop { align-items: flex-end; padding: 0; }
    .pl-modal-price-main { font-size: 26px; }
  }
  @media (min-width: 601px) and (max-width: 900px) {
    .pl-grid { grid-template-columns: repeat(2, 1fr); }
  }