.pl-header {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 12px 18px 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #edf0ea;
    position: relative; 
  }
  .pl-header-back {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f3f6ef;
    color: #182219;
  }
  .pl-header h1 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #152017;
  }

  .pl-layout {
    display: flex;
    height: calc(100vh - 44px);
    overflow: hidden;
  }
  .pl-sidebar {
    width: 100px;
    flex-shrink: 0;
    background: #f9faf7;
    border-right: 1px solid #edf0ea;
    padding-top: 8px;
    overflow-y: auto;
    scrollbar-width: none;
  }
  .pl-sidebar::-webkit-scrollbar { display: none; }
  .pl-sidebar-title {
    padding: 8px 12px 12px;
    font-size: 20px;
    font-weight: 700;
    color: #2a6931;
    text-transform: uppercase;
    text-align: center;
  }
  .pl-cat-tab {
    display: block;
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    font-size: 14px;
    color: #666;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
    border-radius: 6px;
  }
  .pl-cat-tab.on {
    color: #2a6931;
    font-weight: 800;
    background: #edf6ee;
  }
  .pl-cat-tab:hover {
    color: #2a6931;
  }

  .pl-main {
    flex: 1;
    overflow-y: auto;
    background: #fff;
    scrollbar-width: none;
  }
  .pl-main::-webkit-scrollbar { display: none; }

  .pl-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 15px;
  }
  .pl-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #f5f5f5;
    position:relative;
  }
  .pl-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }
  .pl-card:active {
    transform: translateY(0) scale(0.98);
  }
  .pl-card-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9faf7;
  }
  .pl-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }
  .pl-card:hover .pl-card-thumb img {
    transform: scale(1.05);
  }
  .pl-card-tag {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 10px;
    color: #2a6931;
    background: #edf6ee;
    position: absolute;
    top: 3px;
    left: 3px;
  }
  .pl-card-name {
    margin: 6px 10px 6px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .pl-card-price {
    margin: 0 8px 8px;
    font-size: 14px;
    color: #2a6931;
  }

  body { background: #fff; }
