.pk-wrap, .pk-wrap *, .pk-wrap *::before, .pk-wrap *::after,
.pk-mobile-nav, .pk-mobile-nav * { box-sizing: border-box; margin: 0; padding: 0; }

.pk-wrap {
  position: sticky;
  top: 14px;
  z-index: 99999;
  width: 100%;
  padding: 0 20px;
  pointer-events: none;
}
.pk-bar {
  pointer-events: all;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 10px 9px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 9999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: background 0.3s, border-color 0.3s;
}
.pk-bar:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 0, 0, 0.1);
}

.pk-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c1917;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 1px;
}
.pk-logo .pk-accent {
  color: #d97706;
  font-style: italic;
  font-weight: 700;
}
.pk-logo::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d97706;
  margin-left: 6px;
  opacity: .7;
}

.pk-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.pk-nav > a,
.pk-nav .pk-dd-trigger {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #57534e;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 9999px;
  line-height: 1;
  transition: all 0.2s;
  cursor: pointer;
}
.pk-nav > a:hover,
.pk-nav .pk-dd-trigger:hover { color: #1c1917; background: rgba(0, 0, 0, 0.05); }
.pk-nav > a.active { color: #d97706; font-weight: 600; background: #fef3c7; }

/* ── Keşfet Dropdown ── */
.pk-dropdown {
  position: relative;
}
.pk-dd-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  user-select: none;
}
.pk-dd-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}
.pk-dropdown:hover .pk-dd-trigger svg,
.pk-dropdown.open .pk-dd-trigger svg {
  transform: rotate(180deg);
}
.pk-dd-trigger:hover,
.pk-dropdown:hover .pk-dd-trigger,
.pk-dropdown.open .pk-dd-trigger {
  color: #1c1917;
  background: rgba(0, 0, 0, 0.05);
}

.pk-dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 200px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 100000;
}
.pk-dd-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}
.pk-dropdown:hover .pk-dd-menu,
.pk-dropdown.open .pk-dd-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.pk-dd-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #44403c;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.15s;
  white-space: nowrap;
}
.pk-dd-menu a:hover {
  background: #fef3c7;
  color: #d97706;
}
.pk-dd-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  flex-shrink: 0;
}

.pk-actions { display: flex; align-items: center; gap: 6px; }
.pk-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fafaf9;
  border: 1px solid #e7e5e4;
  color: #57534e;
  cursor: pointer;
  transition: all 0.2s;
}

/* ── Mobile Nav ── */
.pk-mobile-nav {
  position: fixed;
  top: 78px;
  left: 20px;
  right: 20px;
  z-index: 99998;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid #e7e5e4;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all .22s ease;
}
.pk-mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pk-mobile-nav a {
  display: block;
  padding: 15px 18px;
  border-bottom: 1px solid #f5f5f4;
  color: #1c1917;
  text-decoration: none;
  font: 500 15px/1.2 Inter, sans-serif;
  transition: all 0.2s;
}
.pk-mobile-nav a:hover {
  background: #fef3c7;
  color: #d97706;
}
.pk-mobile-nav a:last-child { border-bottom: 0; }

.pk-mobile-nav .pk-mob-section {
  padding: 11px 18px 8px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d97706;
  border-bottom: none;
}
.pk-mobile-nav .pk-mob-sub {
  padding-left: 30px;
  font-size: 14px;
  color: #78716c;
}
.pk-mobile-nav .pk-mob-sub:hover { color: #d97706; }

@media (max-width: 980px) {
  .pk-nav { display: none; }
  .pk-burger { display: inline-flex; }
}
@media (max-width: 760px) {
  .pk-wrap { top: 8px; padding: 0 12px; }
  .pk-mobile-nav { left: 12px; right: 12px; top: 68px; }
}

body {
      background: radial-gradient(circle at 50% 0%, #ffffff 0%, #fcfbfa 35%, #f4ede4 100%) fixed !important;
    }

    #pk-root {
      --pk-primary: #d97706;
      --pk-bg: #f9fafb;
      --pk-card-bg: #ffffff;
      --pk-text: #1f2937;
      --pk-text-light: #6b7280;
      --pk-border: #f3f4f6;

      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--pk-text);
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      line-height: 1.5;
      box-sizing: border-box;
      overflow-x: hidden;

      /* Premium Soft Ambient Background */
      background: radial-gradient(circle at 50% 0%, #ffffff 0%, #fcfbfa 35%, #f4ede4 100%) fixed;
      position: relative;
    }

    /* Ambient Glow Effects for Premium Feel */
    #pk-root::before {
      content: '';
      position: fixed;
      top: -20%;
      right: -10%;
      width: 60%;
      height: 60%;
      background: radial-gradient(circle, rgba(217, 160, 91, 0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    #pk-root::after {
      content: '';
      position: fixed;
      bottom: -15%;
      left: -10%;
      width: 50%;
      height: 50%;
      background: radial-gradient(circle, rgba(217, 119, 6, 0.03) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    #pk-root * {
      box-sizing: border-box;
      position: relative;
      /* Ensure content sits above background pseudos */
      z-index: 1;
    }

    #pk-root a {
      text-decoration: none;
      color: inherit;
    }

    /* Layout */
    #pk-root .pk-layout {
      display: flex;
      gap: 30px;
      align-items: flex-start;
    }

    #pk-root .pk-sidebar {
      width: 280px;
      flex-shrink: 0;
      background: #ffffff;
      border-radius: 20px;
      padding: 24px 20px;
      border: 1px solid #f5f5f4;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      position: sticky;
      top: 20px;
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(217, 119, 6, 0.3) transparent;
    }

    #pk-root .pk-sidebar::-webkit-scrollbar {
      width: 4px;
    }

    #pk-root .pk-sidebar::-webkit-scrollbar-thumb {
      background-color: #e7e5e4;
      border-radius: 20px;
    }

    #pk-root .pk-main {
      flex: 1;
    }

    /* Widget */
    #pk-root .pk-widget {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border-light, #f5f5f4);
    }

    #pk-root .pk-widget:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    #pk-root .pk-widget-title {
      font-size: 0.62rem;
      font-weight: 700;
      color: var(--text-primary, #1c1917);
      margin: 0 0 14px;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    #pk-root .pk-widget-title::before {
      content: '';
      display: inline-block;
      width: 3px;
      height: 14px;
      background: linear-gradient(to bottom, #f59e0b, #d97706);
      border-radius: 2px;
      flex-shrink: 0;
    }

    /* Chart */
    #pk-root .pk-chart-container {
      position: relative;
      height: 200px;
      width: 100%;
    }

    /* Filters */
    #pk-root .pk-tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    #pk-root .pk-tag {
      font-size: 0.72rem;
      padding: 5px 11px;
      background: #fafaf9;
      border: 1px solid #e7e5e4;
      border-radius: 9999px;
      color: #57534e;
      cursor: pointer;
      transition: all 0.15s;
      font-weight: 500;
    }

    #pk-root .pk-tag:hover {
      background: #fef3c7;
      border-color: #fcd34d;
      color: #d97706;
    }

    #pk-root .pk-tag.active {
      background: #d97706;
      color: white;
      border-color: #d97706;
      box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
    }

    #pk-root input[type="text"] {
      width: 100%;
      padding: 9px 12px 9px 34px;
      background: #fafaf9;
      border: 1px solid #e7e5e4;
      border-radius: 10px;
      font-size: 0.8rem;
      color: #1c1917;
      outline: none;
      transition: 0.2s;
      font-family: 'Inter', sans-serif;
    }

    #pk-root input[type="text"]::placeholder {
      color: #78716c;
    }

    #pk-root input[type="text"]:focus {
      border-color: #d97706;
      box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
      background: #ffffff;
    }

    #pk-root .pk-search-wrapper {
      position: relative;
      flex: 1;
      max-width: 320px;
      margin: 0 20px;
    }

    #pk-root .pk-search-wrapper input {
      padding-left: 36px;
      height: 38px;
      background: #fafaf9;
      border-color: #e7e5e4;
      color: #1c1917;
    }

    #pk-root .pk-search-icon {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.9rem;
      color: #78716c;
      pointer-events: none;
    }

    @media (max-width: 600px) {
      #pk-root .pk-search-wrapper {
        max-width: 100%;
        margin: 12px 0;
        order: 3;
      }

      #pk-root .pk-toolbar {
        flex-wrap: wrap;
      }
    }

    /* Range */
    #pk-root .pk-range {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 3px;
      background: linear-gradient(to right, #d97706 0%, #d97706 var(--val, 0%), #e7e5e4 var(--val, 0%), #e7e5e4 100%);
      border-radius: 99px;
      margin: 10px 0 4px;
      outline: none;
      cursor: pointer;
    }

    #pk-root .pk-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #d97706;
      border: 2px solid #ffffff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
    }

    #pk-root .pk-range-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.67rem;
      color: #78716c;
      margin-top: 2px;
    }

    /* Toolbar */
    #pk-root .pk-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      background: #ffffff;
      padding: 16px 24px;
      border-radius: 12px;
      border: 1px solid #f5f5f4;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    /* Skip Link */
    .pk-skip-link {
      position: absolute;
      top: -40px;
      left: 10px;
      background: #d97706;
      color: white !important;
      padding: 8px 16px;
      border-radius: 6px;
      z-index: 9999;
      transition: top 0.3s;
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
    }

    .pk-skip-link:focus {
      top: 10px;
    }

    #pk-root .pk-toolbar-title {
      font-size: 1.1rem;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #1c1917;
    }

    #pk-root .pk-sort-select {
      padding: 6px 12px;
      border: 1px solid #e7e5e4;
      border-radius: 6px;
      font-size: 0.85rem;
      outline: none;
      background: #fafaf9;
      color: #44403c;
      cursor: pointer;
    }

    #pk-root .pk-sort-select option {
      background: #ffffff;
      color: #1c1917;
    }

    /* ═══ DARK PARFÜM KARTLARI (/marka/ stili) ═══ */

    #pk-root .pk-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    #pk-root .perfume-card,
    #pk-root .pk-card {
      position: relative;
      height: 220px;
      border-radius: 16px;
      overflow: hidden;
      text-decoration: none;
      display: flex;
      align-items: flex-end;
      background: #fff9f0;
      border: 1px solid #e7e5e4;
      box-shadow: 0 2px 10px rgba(69, 26, 3, 0.03);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    #pk-root .perfume-card:hover,
    #pk-root .pk-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(69, 26, 3, 0.08);
      border-color: #d6d3d1;
    }

    #pk-root .perfume-card::before,
    #pk-root .pk-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 20%;
      right: 20%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(217, 119, 6, 0.9), transparent);
      opacity: 0;
      transition: opacity .4s, left .4s, right .4s;
      z-index: 10;
    }

    #pk-root .perfume-card:hover::before,
    #pk-root .pk-card:hover::before {
      opacity: 1;
      left: 10%;
      right: 10%;
    }

    #pk-root .pk-dark-img {
      position: absolute;
      top: 0;
      right: 0;
      width: 44%;
      height: 100%;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
      transition: transform 0.4s ease;
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.14));
      transform: scale(0.88);
      padding: 8px;
    }

    #pk-root .perfume-card:hover .pk-dark-img,
    #pk-root .pk-card:hover .pk-dark-img {
      transform: scale(0.98);
      right: 0;
    }

    #pk-root .pk-dark-glass {
      display: none;
    }

    #pk-root .pk-dark-fade {
      display: none;
    }

    #pk-root .pk-dark-content {
      position: relative;
      z-index: 5;
      padding: 20px 24px 16px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      max-width: 62%;
    }

    #pk-root .pk-dark-family {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: 0.68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 3px 9px;
      border-radius: 100px;
      width: fit-content;
      margin-bottom: 2px;
    }

    #pk-root .pk-dark-brand {
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #78716c;
      letter-spacing: 0.05em;
    }

    #pk-root .pk-dark-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #1c1917;
      line-height: 1.25;
      margin-bottom: 2px;
      transition: color .3s;
    }

    #pk-root .perfume-card:hover .pk-dark-name,
    #pk-root .pk-card:hover .pk-dark-name {
      color: #111827;
    }

    #pk-root .pk-dark-rating {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 2px;
    }

    #pk-root .pk-dark-stars {
      color: #f59e0b;
      font-size: 0.75rem;
      letter-spacing: -1px;
    }

    #pk-root .pk-dark-score {
      font-size: 0.75rem;
      color: #92400e;
      font-weight: 700;
    }

    #pk-root .pk-dark-bars {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: 4px;
    }

    #pk-root .pk-dark-bar-row {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
    }

    #pk-root .pk-dark-bar-label {
      width: 46px;
      flex-shrink: 0;
      font-weight: 600;
      color: #78716c;
    }

    #pk-root .pk-dark-bar-track {
      flex: 1;
      height: 5px;
      background: #f5f5f4;
      border-radius: 3px;
      overflow: hidden;
      min-width: 40px;
    }

    #pk-root .pk-dark-bar-fill {
      height: 100%;
      border-radius: 3px;
      transition: width 0.5s ease;
    }

    #pk-root .pk-dark-bar-fill.longevity {
      background: linear-gradient(90deg, #fbbf24, #d97706);
    }

    #pk-root .pk-dark-bar-fill.sillage {
      background: linear-gradient(90deg, #7dd3fc, #0ea5e9);
    }

    #pk-root .pk-dark-bar-val {
      width: 24px;
      flex-shrink: 0;
      font-weight: 700;
      color: #78716c;
      font-size: 0.72rem;
      text-align: right;
    }

    #pk-root .pk-dark-tags {
      display: flex;
      gap: 3px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    #pk-root .pk-dark-tag {
      font-size: 0.56rem;
      color: rgba(120, 113, 108, 0.7);
      font-weight: 600;
    }

    #pk-root .pk-dark-tag::before {
      content: '#';
    }

    /* AZZARO CARD THEME OVERRIDE */
    #pk-root .perfume-card,
    #pk-root .pk-card {
      background: #ffffff !important;
      border-radius: 16px !important;
      border: 1px solid var(--border-lighter, #f5f5f4) !important;
      overflow: hidden !important;
      text-decoration: none !important;
      color: inherit !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
      height: 100% !important;
      position: relative !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    }

    #pk-root .perfume-card:hover,
    #pk-root .pk-card:hover {
      transform: translateY(-6px) !important;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
      border-color: #e5e7eb !important;
    }

    #pk-root .perfume-card::before,
    #pk-root .pk-card::before {
      display: none !important;
    }

    #pk-root .pk-dark-img {
      position: relative !important;
      top: auto !important;
      right: auto !important;
      width: 100% !important;
      height: 220px !important;
      background-size: contain !important;
      background-repeat: no-repeat !important;
      background-position: center !important;
      background-color: #ffffff !important;
      border-bottom: 1px solid var(--border-lighter, #f5f5f4) !important;
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.10)) !important;
      transform: none !important;
      transition: transform 0.3s ease !important;
    }

    #pk-root .perfume-card:hover .pk-dark-img,
    #pk-root .pk-card:hover .pk-dark-img {
      transform: scale(1.05) !important;
      right: auto !important;
    }

    #pk-root .pk-dark-glass,
    #pk-root .pk-dark-fade {
      display: none !important;
    }

    #pk-root .perfume-card>a,
    #pk-root .pk-card>a {
      position: relative !important;
      z-index: 2 !important;
      display: flex !important;
      flex-direction: column !important;
      justify-content: flex-start !important;
      width: 100% !important;
      height: auto !important;
      text-decoration: none !important;
      color: inherit !important;
      flex: 1 1 auto !important;
    }

    /* CARD FOOTER RATING */
    #pk-root .pk-dark-content {
      max-width: 100% !important;
      padding: 20px 24px 0 !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 6px !important;
      flex: 1 1 auto !important;
      position: relative !important;
    }

    #pk-root .pk-dark-footer {
      display: flex !important;
      align-items: center;
      gap: 12px;
      padding: 12px 24px !important;
      margin-top: auto;
      border-top: 1px solid #f5f5f4;
      background: rgba(250, 250, 249, 0.5);
    }

    #pk-root .pk-dark-meta {
      display: flex !important;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 4px;
    }

    #pk-root .pk-dark-gender {
      font-size: 0.72rem !important;
      color: #78716c !important;
      border: 1px solid #f5f5f4 !important;
      padding: 3px 8px !important;
      border-radius: 100px !important;
      display: inline-block !important;
    }

    #pk-root .pk-dark-notes {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 6px !important;
      margin-top: 8px !important;
      margin-bottom: 12px !important;
    }

    #pk-root .pk-dark-note {
      padding: 3px 10px !important;
      background: #fafaf9 !important;
      font-size: 0.72rem !important;
      border-radius: 6px !important;
      border: 1px solid #f5f5f4 !important;
      color: #57534e !important;
    }

    #pk-root .pk-dark-note.more {
      background: transparent !important;
      border: none !important;
      color: #78716c !important;
      font-style: italic !important;
      padding-left: 0 !important;
    }

    #pk-root .pk-dark-brand {
      font-size: 0.72rem !important;
      font-weight: 800 !important;
      text-transform: uppercase !important;
      color: #78716c !important;
      letter-spacing: 0.05em !important;
    }

    #pk-root .pk-dark-name {
      font-family: 'Playfair Display', serif !important;
      font-size: 1.15rem !important;
      font-weight: 700 !important;
      color: #1c1917 !important;
      line-height: 1.25 !important;
      margin-bottom: 8px !important;
    }

    #pk-root .perfume-card:hover .pk-dark-name,
    #pk-root .pk-card:hover .pk-dark-name {
      color: #1c1917 !important;
    }

    #pk-root .pk-dark-rating {
      display: flex !important;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    #pk-root .pk-dark-stars {
      color: #f59e0b !important;
      font-size: 1rem !important;
      letter-spacing: -1px;
    }

    #pk-root .pk-dark-score {
      font-size: 0.85rem !important;
      color: #92400e !important;
      font-weight: 800 !important;
    }

    #pk-root .pk-dark-bars {
      display: flex !important;
      flex-direction: column !important;
      gap: 4px !important;
      flex: 1 !important;
      min-width: 0 !important;
      margin-top: 0 !important;
    }

    #pk-root .pk-dark-bar-track {
      background: #f5f5f4 !important;
    }

    #pk-root .pk-dark-bar-label {
      color: #78716c !important;
    }

    #pk-root .pk-dark-bar-val {
      color: #78716c !important;
    }

    /* Compare checkbox */
    #pk-root .pk-card-select {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 20;
      width: 22px;
      height: 22px;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.07);
      border: 1.5px solid rgba(217, 119, 6, 0.4);
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: transparent;
      transition: background .2s, border-color .2s, color .2s;
      cursor: pointer;
    }

    #pk-root.pk-compare-mode .pk-card-select {
      display: flex;
    }

    #pk-root .pk-card-select:hover {
      border-color: rgba(217, 119, 6, 0.6);
    }

    #pk-root .perfume-card.pk-selected .pk-card-select,
    #pk-root .pk-card.pk-selected .pk-card-select {
      background: #d97706;
      border-color: #d97706;
      color: white;
    }

    #pk-root.pk-compare-mode .perfume-card,
    #pk-root.pk-compare-mode .pk-card {
      cursor: pointer;
    }

    #pk-root .perfume-card.pk-selected,
    #pk-root .pk-card.pk-selected {
      border-color: rgba(217, 119, 6, 0.7) !important;
      box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.35), 0 8px 24px rgba(0, 0, 0, 0.3) !important;
    }

    /* SSR card stili (sayfa ilk yüklendiğinde görünenler) */
    #pk-root .pk-card .pk-card-image,
    #pk-root .pk-card .pk-card-body,
    #pk-root .pk-card .pk-card-footer {
      display: none;
    }

    /* ===== MOBILE SIDEBAR FIX ===== */
    #pk-mobile-filter-toggle {
      display: none;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #6b7280;
      cursor: pointer;
      transition: all 0.2s;
      font-family: inherit;
    }

    #pk-mobile-filter-toggle:hover,
    #pk-mobile-filter-toggle:active {
      border-color: #d97706;
      color: #d97706;
      background: #fffbef;
    }

    #pk-mobile-filter-toggle .filter-count {
      background: #d97706;
      color: white;
      padding: 2px 7px;
      border-radius: 10px;
      font-size: 0.7rem;
      font-weight: 700;
      margin-left: 4px;
      min-width: 18px;
      text-align: center;
    }

    /* Mobile sidebar overlay backdrop */
    #pk-sidebar-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
      opacity: 0;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    #pk-sidebar-overlay.visible {
      opacity: 1;
    }

    /* Mobile sidebar panel (bottom sheet) */
    #pk-sidebar-panel {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 10001;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 20px 20px 0 0;
      max-height: 90vh;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
      flex-direction: column;
    }

    #pk-sidebar-panel.visible {
      transform: translateY(0);
    }

    /* Handle bar at top of sheet */
    #pk-sidebar-panel-handle {
      width: 40px;
      height: 4px;
      background: #e7e5e4;
      border-radius: 2px;
      margin: 12px auto 0;
      flex-shrink: 0;
    }

    #pk-sidebar-panel-header {
      flex-shrink: 0;
      background: transparent;
      padding: 12px 20px 12px;
      border-bottom: 1px solid #f5f5f4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 2;
    }

    #pk-sidebar-panel-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #1c1917 !important;
      -webkit-text-fill-color: #1c1917 !important;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pk-panel-header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    #pk-sidebar-panel-reset {
      padding: 6px 12px;
      background: rgba(220, 38, 38, 0.1);
      color: #ef4444;
      border: 1px solid rgba(239, 68, 68, 0.2);
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.2s;
    }

    #pk-sidebar-panel-reset:active {
      background: rgba(220, 38, 38, 0.2);
    }

    #pk-sidebar-panel-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #e7e5e4;
      background: #fafaf9;
      font-size: 1.1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      color: #57534e;
    }

    #pk-sidebar-panel-close:active {
      background: #fef3c7;
      border-color: #fcd34d;
      color: #d97706;
    }

    /* Scrollable content area */
    #pk-sidebar-panel-content {
      flex: 1;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      padding: 16px 20px 24px;
    }

    /* Mobile-optimized widget styles inside panel */
    #pk-sidebar-panel-content .pk-widget {
      margin-bottom: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid #f5f5f4;
    }

    #pk-sidebar-panel-content .pk-widget:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    /* Larger touch targets for tags on mobile */
    #pk-sidebar-panel-content .pk-tag {
      padding: 8px 14px;
      font-size: 0.82rem;
      min-height: 36px;
      display: inline-flex;
      align-items: center;
    }

    /* Better range slider on mobile */
    #pk-sidebar-panel-content .pk-range {
      height: 6px;
      -webkit-appearance: none;
      appearance: none;
      background: linear-gradient(to right, #d97706 0%, #d97706 var(--val, 0%), #e7e5e4 var(--val, 0%), #e7e5e4 100%);
      border-radius: 3px;
      outline: none;
    }

    #pk-sidebar-panel-content .pk-range::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #d97706;
      cursor: pointer;
      border: 3px solid #ffffff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    #pk-sidebar-panel-content .pk-range::-moz-range-thumb {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #d97706;
      cursor: pointer;
      border: 3px solid #ffffff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    /* Better note items on mobile */
    #pk-root .pk-note-item {
      padding: 8px 10px;
      font-size: 0.85rem;
      min-height: 20px;
      color: #57534e;
    }

    #pk-sidebar-panel-content .pk-btn-xs {
      width: 28px;
      height: 28px;
      font-size: 0.8rem;
    }

    /* Better brand rows on mobile */
    #pk-sidebar-panel-content .pk-brand-row {
      padding: 10px 12px;
      font-size: 0.85rem;
      min-height: 40px;
      align-items: center;
    }

    #pk-sidebar-panel-content .pk-brand-list {
      max-height: 200px;
    }

    /* Apply button footer */
    #pk-sidebar-panel-footer {
      flex-shrink: 0;
      padding: 12px 20px;
      padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
      background: transparent;
      border-top: 1px solid #f5f5f4;
      z-index: 2;
    }

    #pk-sidebar-apply-btn {
      display: block;
      width: 100%;
      padding: 14px 16px;
      background: linear-gradient(135deg, #d97706, #b45309);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', system-ui, sans-serif;
      letter-spacing: 0.02em;
      transition: all 0.2s;
    }

    #pk-sidebar-apply-btn:active {
      transform: scale(0.98);
      filter: brightness(0.95);
    }

    @media (max-width: 900px) {

      /* Hide original sidebar on mobile */
      #pk-root .pk-sidebar {
        display: none !important;
      }

      /* Show filter toggle in toolbar */
      #pk-mobile-filter-toggle {
        display: inline-flex;
      }

      /* Show overlay */
      #pk-sidebar-overlay {
        display: block;
        pointer-events: none;
      }

      #pk-sidebar-overlay.visible {
        pointer-events: auto;
      }

      /* Show panel */
      #pk-sidebar-panel {
        display: flex;
      }

      /* Ensure cards use full width */
      #pk-root .pk-main {
        width: 100%;
      }

      /* Re-order layout: main comes first on mobile */
      #pk-root .pk-layout {
        flex-direction: column;
      }
    }

    @media (min-width: 901px) {

      /* Desktop: hide all mobile-only elements */
      #pk-mobile-filter-toggle,
      #pk-sidebar-overlay,
      #pk-sidebar-panel {
        display: none !important;
      }
    }

    /* ===== Panel-scoped widget styles (mirror #pk-root styles for moved content) ===== */

    #pk-sidebar-panel-content .pk-widget-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: #1c1917 !important;
      -webkit-text-fill-color: #1c1917 !important;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    #pk-sidebar-panel-content .pk-tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    #pk-sidebar-panel-content .pk-tag {
      padding: 8px 14px;
      font-size: 0.82rem;
      color: #57534e !important;
      -webkit-text-fill-color: #57534e !important;
      background-color: #fafaf9 !important;
      border: 1px solid #e7e5e4 !important;
      cursor: pointer;
      transition: all 0.2s;
      min-height: 36px;
      display: inline-flex;
      align-items: center;
    }

    #pk-sidebar-panel-content .pk-tag:active {
      border-color: #d97706 !important;
      color: #d97706 !important;
      -webkit-text-fill-color: #d97706 !important;
    }

    #pk-sidebar-panel-content .pk-tag.active {
      background-color: #d97706 !important;
      color: white !important;
      -webkit-text-fill-color: white !important;
      border-color: #d97706 !important;
    }

    #pk-sidebar-panel-content .pk-tabs {
      display: flex;
      border-bottom: 1px solid #e5e7eb;
      margin-bottom: 12px;
      gap: 16px;
    }

    #pk-sidebar-panel-content .pk-tab {
      padding-bottom: 8px;
      font-size: 0.8rem;
      color: #6b7280;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: all 0.2s;
      font-weight: 500;
    }

    #pk-sidebar-panel-content .pk-tab.active {
      color: #d97706;
      border-bottom-color: #d97706;
      font-weight: 700;
    }

    #pk-sidebar-panel-content .pk-note-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      color: #4b5563;
      cursor: pointer;
      background: #f9fafb;
      margin-bottom: 4px;
      transition: 0.2s;
      min-height: 40px;
    }

    #pk-sidebar-panel-content .pk-note-item:active {
      background: #f3f4f6;
    }

    #pk-sidebar-panel-content .pk-note-actions {
      display: flex;
      gap: 6px;
      opacity: 1;
    }

    #pk-sidebar-panel-content .pk-btn-xs {
      width: 28px;
      height: 28px;
      border-radius: 4px;
      border: 1px solid #d1d5db;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      background: white;
      cursor: pointer;
    }

    #pk-sidebar-panel-content .pk-btn-xs.inc:active {
      border-color: #10b981;
      color: #10b981;
      background: #ecfdf5;
    }

    #pk-sidebar-panel-content .pk-btn-xs.exc:active {
      border-color: #ef4444;
      color: #ef4444;
      background: #fef2f2;
    }

    #pk-sidebar-panel-content .pk-active-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      margin: 2px;
      border: 1px solid transparent;
    }

    #pk-sidebar-panel-content .pk-active-tag.include {
      background: #dcfce7;
      color: #166534;
      border-color: #bbf7d0;
    }

    #pk-sidebar-panel-content .pk-active-tag.exclude {
      background: #fee2e2;
      color: #991b1b;
      border-color: #fecaca;
    }

    #pk-sidebar-panel-content .pk-active-tag span {
      cursor: pointer;
      font-weight: 700;
      opacity: 0.6;
    }

    #pk-sidebar-panel-content .pk-active-tag span:active {
      opacity: 1;
    }

    #pk-sidebar-panel-content .pk-brand-list {
      max-height: 200px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    #pk-sidebar-panel-content .pk-brand-row {
      padding: 10px 12px;
      border-radius: 6px;
      font-size: 0.85rem;
      color: #1c1917;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      min-height: 40px;
      align-items: center;
      transition: 0.2s;
    }

    #pk-sidebar-panel-content .pk-brand-row:active,
    #pk-sidebar-panel-content .pk-brand-row.active {
      background: #fef3c7 !important;
      color: #d97706 !important;
    }

    #pk-sidebar-panel-content .pk-range-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: #1c1917;
    }

    #pk-sidebar-panel-content input[type="text"] {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      font-size: 0.9rem;
      outline: none;
      transition: 0.2s;
    }

    #pk-sidebar-panel-content input[type="text"]:focus {
      border-color: #d97706;
      box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    }

    #pk-sidebar-panel-content .pk-chart-container {
      position: relative;
      height: 200px;
      width: 100%;
    }

    /* ===== END MOBILE SIDEBAR FIX ===== */

    /* Hero Section - Compact & Horizontal on Desktop */
    #pk-root .pk-hero {
      background: linear-gradient(135deg, #fffdf7 0%, #fdf5e6 100%);
      border-radius: 20px;
      padding: 32px 40px;
      /* Reduced padding */
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
      color: #1c1917;
      box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.05);
      border: 1px solid #f5f5f4;
      /* Subtle border */
    }

    /* Shape adjustments for smaller height */
    #pk-root .pk-hero::before,
    #pk-root .pk-hero::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, transparent 70%);
      filter: blur(50px);
      border-radius: 50%;
      pointer-events: none;
    }

    #pk-root .pk-hero::before {
      top: -150px;
      right: -150px;
    }

    #pk-root .pk-hero::after {
      bottom: -150px;
      right: -50px;
    }

    #pk-root .pk-hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      text-align: left;
    }

    #pk-root .pk-hero-text {
      flex: 1;
      max-width: 600px;
    }

    #pk-root .pk-hero-img {
      height: 200px;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
      transition: all 0.3s ease;
    }

    @media (max-width: 900px) {
      #pk-root .pk-hero .pk-hero-img {
        height: 110px !important;
        margin-bottom: 2px;
        display: block;
        margin-left: auto;
        margin-right: auto;
      }
    }

    #pk-root .pk-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      /* Reduced from 3rem */
      font-weight: 700;
      margin: 0 0 12px;
      letter-spacing: 0.02em;
      background: linear-gradient(180deg, #fffbeb 0%, #fcd34d 40%, #d97706 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      line-height: 1.1;
      text-transform: uppercase;
    }

    #pk-root .pk-hero-sub {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 0;
      /* No bottom margin needed in flex layout */
      font-weight: 400;
      line-height: 1.5;
      letter-spacing: 0.02em;
    }

    #pk-root .pk-hero-stats {
      display: flex;
      gap: 16px;
      /* Tighter gap */
      flex-shrink: 0;
    }

    #pk-root .pk-hero-stat {
      background: rgba(20, 15, 10, 0.6);
      /* Darker panel background */
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border: 1px solid rgba(180, 83, 9, 0.3);
      /* Brown/Gold border */
      border-radius: 12px;
      /* Slightly smaller radius */
      padding: 16px 36px;
      /* Reduced padding */
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      min-width: 140px;
      /* Reduced width */
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    }

    #pk-root .pk-hero-stat-icon {
      font-size: 1.2rem;
      margin-bottom: 6px;
      /* Tighter spacing */
      color: #fbbf24;
      filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    }

    #pk-root .pk-hero-stat-icon svg {
      width: 20px;
      /* Smaller icon */
      height: 20px;
      fill: currentColor;
    }

    #pk-root .pk-hero-stat-val {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      /* Reduced size */
      font-weight: 700;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 2px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    #pk-root .pk-hero-stat-label {
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.5);
      font-weight: 600;
    }

    /* Decorative shine effect on hover */
    #pk-root .pk-hero-stat::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
      transition: 0.5s;
    }

    #pk-root .pk-hero-stat:hover::after {
      left: 100%;
    }

    @media (max-width: 900px) {
      #pk-root .pk-hero {
        padding: 12px 10px;
        text-align: center;
      }

      #pk-root .pk-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 6px;
      }

      #pk-root .pk-hero-text {
        max-width: 100%;
        margin-bottom: 2px;
      }

      #pk-root .pk-hero h1 {
        font-size: 1.4rem;
        margin-bottom: 4px;
        line-height: 1.1;
      }

      #pk-root .pk-hero-sub {
        margin-bottom: 4px;
        font-size: 0.75rem;
        line-height: 1.3;
        padding: 0 10px;
      }

      #pk-root .pk-hero-stats {
        width: 100%;
        justify-content: center;
        gap: 6px;
        flex-wrap: nowrap;
        margin-top: 4px;
      }

      #pk-root .pk-hero-stat {
        flex: 1;
        min-width: auto;
        padding: 8px 2px;
        border-radius: 8px;
        border-width: 0.5px;
      }

      #pk-root .pk-hero-stat-val {
        font-size: 1rem;
      }

      #pk-root .pk-hero-stat-label {
        font-size: 0.62rem;
        letter-spacing: 0;
      }

      #pk-root .pk-hero-stat-icon svg {
        width: 16px;
        height: 16px;
      }

      #pk-root .pk-hero-stat-icon {
        margin-bottom: 2px;
      }
    }

    /* Responsive Adjustments */
    @media (max-width: 900px) {
      #pk-root .pk-layout {
        flex-direction: column;
      }

      #pk-root .pk-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 24px;
        max-height: none;
        overflow: visible;
      }

      #pk-root .pk-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      }
    }

    @media (max-width: 640px) {
      #pk-root .pk-hero {
        padding: 32px 20px;
      }

      #pk-root .pk-hero h1 {
        font-size: 1.8rem;
      }

      #pk-root .pk-hero-stats {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
      }

      #pk-root .pk-toolbar {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
        padding: 12px 16px;
      }

      #pk-root .pk-toolbar-title {
        font-size: 0.95rem;
      }

      /* Wrap the buttons/sort row on mobile */
      #pk-root .pk-toolbar>div:last-child {
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
      }

      #pk-root .pk-sort-select {
        flex: 1;
        min-width: 0;
        max-width: 100%;
      }

      #pk-root .pk-search-wrapper {
        max-width: 100%;
        margin: 0;
        order: 3;
      }


    }

    @keyframes pk-slideUp {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    /* New: Tabs */
    #pk-root .pk-tabs {
      display: flex;
      gap: 6px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    #pk-root .pk-tab {
      padding: 5px 14px;
      font-size: 0.7rem;
      color: #78716c;
      background: #fafaf9;
      cursor: pointer;
      border: 1px solid #f5f5f4;
      border-radius: 9999px;
      transition: all 0.15s;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    #pk-root .pk-tab:hover {
      background: rgba(217, 119, 6, 0.1);
      border-color: rgba(217, 119, 6, 0.3);
      color: #d97706;
    }

    #pk-root .pk-tab.active {
      background: #d97706;
      border-color: #d97706;
      color: #fff;
      box-shadow: 0 3px 10px rgba(217, 119, 6, 0.35);
    }

    /* New: Note Tags */
    #pk-root .pk-note-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 7px 10px;
      border-radius: 8px;
      font-size: 0.78rem;
      color: #ffffff;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      margin-bottom: 4px;
      transition: 0.15s;
    }

    #pk-root .pk-note-item:hover {
      background: rgba(217, 119, 6, 0.08);
      border-color: rgba(217, 119, 6, 0.2);
      color: #f59e0b;
    }

    #pk-root .pk-note-actions {
      display: flex;
      gap: 4px;
      opacity: 0.3;
      transition: 0.2s;
    }

    #pk-root .pk-note-item:hover .pk-note-actions {
      opacity: 1;
    }

    #pk-root .pk-btn-xs {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      border: 1px solid #d1d5db;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      background: white;
    }

    #pk-root .pk-btn-xs.inc:hover {
      border-color: #10b981;
      color: #10b981;
    }

    #pk-root .pk-btn-xs.exc:hover {
      border-color: #ef4444;
      color: #ef4444;
    }

    #pk-root .pk-active-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      margin: 2px;
      border: 1px solid transparent;
    }

    #pk-root .pk-active-tag.include {
      background: #dcfce7;
      color: #166534;
      border-color: #bbf7d0;
    }

    #pk-root .pk-active-tag.exclude {
      background: #fee2e2;
      color: #991b1b;
      border-color: #fecaca;
    }

    #pk-root .pk-active-tag span {
      cursor: pointer;
      font-weight: 700;
      opacity: 0.6;
    }

    #pk-root .pk-active-tag span:hover {
      opacity: 1;
    }

    /* New: Brand List */
    #pk-root .pk-brand-list {
      max-height: 250px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    #pk-root .pk-brand-row {
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 0.8rem;
      color: #44403c;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
    }

    #pk-root .pk-brand-row:hover {
      background: rgba(217, 119, 6, 0.08);
    }

    #pk-root .pk-brand-row.active {
      background: rgba(217, 119, 6, 0.15);
      color: #92400e;
      font-weight: 600;
    }

    /* Compare: Card Selection */
    #pk-root .pk-card.pk-selected,
    #pk-root .perfume-card.pk-selected {
      border: 2px solid var(--pk-primary) !important;
      box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15) !important;
    }

    #pk-root .pk-card-select {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 5;
      width: 22px;
      height: 22px;
      border-radius: 6px;
      border: 2px solid #d1d5db;
      background: white;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      color: transparent;
      transition: all 0.2s;
    }

    #pk-root.pk-compare-mode .pk-card-select {
      display: flex;
    }

    #pk-root .pk-card-select:hover {
      border-color: var(--pk-primary);
    }

    #pk-root .pk-card.pk-selected .pk-card-select,
    #pk-root .perfume-card.pk-selected .pk-card-select {
      background: var(--pk-primary);
      border-color: var(--pk-primary);
      color: white;
    }

    /* Compare: Floating Bar */
    #pk-root .pk-compare-bar {
      display: none;
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: white;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 10px 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
      z-index: 9998;
      align-items: center;
      gap: 12px;
      animation: pk-slideUp 0.3s ease;
    }

    #pk-root .pk-compare-bar.visible {
      display: flex;
    }

    @keyframes pk-slideUp {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
      }
    }

    #pk-root .pk-compare-count {
      background: var(--pk-primary);
      color: white;
      padding: 4px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    #pk-root .pk-compare-btn {
      background: var(--pk-primary);
      color: white;
      border: none;
      border-radius: 10px;
      padding: 10px 20px;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: 0.2s;
    }

    #pk-root .pk-compare-btn:hover {
      background: #b45309;
    }

    #pk-root .pk-compare-btn:disabled {
      background: #d1d5db;
      cursor: not-allowed;
    }

    #pk-root .pk-compare-clear {
      background: none;
      border: none;
      font-size: 1.1rem;
      cursor: pointer;
      color: #6b7280;
      padding: 4px;
    }

    #pk-root .pk-compare-clear:hover {
      color: #ef4444;
    }

    /* Compare: Modal */
    #pk-root .pk-modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 9999;
      align-items: flex-start;
      justify-content: center;
      padding: 40px 20px;
      overflow-y: auto;
    }

    #pk-root .pk-modal-overlay.visible {
      display: flex;
    }

    #pk-root .pk-modal {
      background: white;
      border-radius: 20px;
      max-width: 720px;
      width: 100%;
      padding: 32px;
      position: relative;
      animation: pk-fadeIn 0.3s ease;
    }

    @keyframes pk-fadeIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    #pk-root .pk-modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      font-size: 1.3rem;
      cursor: pointer;
      color: #6b7280;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    #pk-root .pk-modal-close:hover {
      background: #f3f4f6;
    }

    #pk-root .pk-modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Compare: Header Row */
    #pk-root .pk-cmp-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 28px;
      text-align: center;
    }

    #pk-root .pk-cmp-brand {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--pk-text-light);
      letter-spacing: 0.08em;
    }

    #pk-root .pk-cmp-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      margin: 6px 0 10px;
    }

    #pk-root .pk-cmp-family {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* Compare: Performance Section */
    #pk-root .pk-cmp-section-title {
      text-align: center;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--pk-primary);
      font-weight: 700;
      margin-bottom: 18px;
    }

    #pk-root .pk-cmp-perf {
      background: #fafafa;
      border-radius: 14px;
      padding: 20px;
      margin-bottom: 24px;
    }

    #pk-root .pk-cmp-bar-row {
      margin-bottom: 16px;
    }

    #pk-root .pk-cmp-bar-row:last-child {
      margin-bottom: 0;
    }

    #pk-root .pk-cmp-bar-label {
      text-align: center;
      font-size: 0.75rem;
      font-weight: 600;
      color: #374151;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    #pk-root .pk-cmp-bar-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    #pk-root .pk-cmp-bar-val {
      font-size: 0.8rem;
      font-weight: 700;
      color: #374151;
      min-width: 24px;
      text-align: center;
    }

    #pk-root .pk-cmp-bar-track {
      flex: 1;
      height: 8px;
      background: #e5e7eb;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }

    #pk-root .pk-cmp-bar-fill {
      height: 100%;
      border-radius: 4px;
      transition: width 0.6s ease;
    }

    #pk-root .pk-cmp-bar-fill.left {
      background: var(--pk-primary);
      float: right;
    }

    #pk-root .pk-cmp-bar-fill.right {
      background: var(--pk-primary);
    }

    /* Compare: Tags Grid */
    #pk-root .pk-cmp-tags {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 12px;
      margin-bottom: 24px;
      align-items: start;
    }

    #pk-root .pk-cmp-tags-col {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
    }

    #pk-root .pk-cmp-tags-col:first-child {
      justify-content: flex-end;
    }

    #pk-root .pk-cmp-tags-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      color: #6b7280;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding-top: 4px;
    }

    #pk-root .pk-cmp-tags-icon svg,
    #pk-root .pk-cmp-tags-icon span.icon {
      font-size: 1.2rem;
      margin-bottom: 2px;
    }

    #pk-root .pk-cmp-pill {
      padding: 4px 10px;
      background: #f3f4f6;
      border-radius: 6px;
      font-size: 0.7rem;
      color: #4b5563;
    }

    /* Compare: Notes Pyramid */
    #pk-root .pk-cmp-notes {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 12px;
      align-items: start;
    }

    #pk-root .pk-cmp-notes-title {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--pk-primary);
      margin-bottom: 4px;
    }

    #pk-root .pk-cmp-notes-col {
      font-size: 0.78rem;
      color: #374151;
      line-height: 1.6;
    }

    #pk-root .pk-cmp-notes-col:first-child {
      text-align: right;
    }

    #pk-root .pk-cmp-notes-label {
      font-size: 0.65rem;
      color: #6b7280;
      text-transform: uppercase;
    }

    #pk-root .pk-cmp-notes-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
      color: #6b7280;
      font-size: 0.65rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding-top: 20px;
    }

    @media (max-width: 600px) {
      #pk-root .pk-modal {
        padding: 20px;
      }

      #pk-root .pk-cmp-header {
        gap: 12px;
      }

      #pk-root .pk-cmp-name {
        font-size: 1rem;
      }

      #pk-root .pk-cmp-tags,
      #pk-root .pk-cmp-notes {
        gap: 8px;
      }
    }

    /* Mobile Styles Overrides (Moved to end for specificity) */
    @media (max-width: 640px) {
      #pk-root .pk-modal {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      #pk-root .pk-modal-overlay {
        padding: 0;
        align-items: flex-end;
      }

      #pk-root .pk-modal-title {
        position: sticky;
        top: 0;
        background: white;
        padding: 20px 16px 12px;
        margin: 0 0 0 0;
        z-index: 2;
        border-bottom: 1px solid #f3f4f6;
        font-size: 1.1rem;
      }

      #pk-root .pk-modal-close {
        top: 16px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
        z-index: 3;
      }

      #pk-root #pk-compare-content {
        padding: 12px;
      }

      /* Header: keep side-by-side, just smaller */
      #pk-root .pk-cmp-header {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      #pk-root .pk-cmp-name {
        font-size: 0.85rem;
      }

      #pk-root .pk-cmp-brand {
        font-size: 0.68rem;
      }

      #pk-root .pk-cmp-family {
        font-size: 0.68rem;
        padding: 3px 8px;
      }

      /* Performance: keep side-by-side layout */
      #pk-root .pk-cmp-perf {
        padding: 10px;
      }

      #pk-root .pk-cmp-bar-label {
        font-size: 0.68rem;
        min-width: 60px;
      }

      #pk-root .pk-cmp-bar-val {
        font-size: 0.72rem;
        min-width: 18px;
        font-weight: 700;
      }

      /* Tags & Notes: KEEP the 3-column layout like desktop */
      #pk-root .pk-cmp-tags,
      #pk-root .pk-cmp-notes {
        grid-template-columns: 1fr auto 1fr;
        gap: 6px;
        font-size: 0.75rem;
      }

      #pk-root .pk-cmp-pill {
        font-size: 0.72rem;
        padding: 3px 8px;
      }

      #pk-root .pk-cmp-tags-icon,
      #pk-root .pk-cmp-notes-icon {
        font-size: 0.62rem;
        padding-top: 10px;
      }

      #pk-root .pk-cmp-notes-title {
        font-size: 0.68rem;
      }

      #pk-root .pk-cmp-notes-col {
        font-size: 0.78rem;
      }

      /* Compare bar: full width on mobile */
      #pk-root .pk-compare-bar {
        width: calc(100% - 32px);
        left: 16px;
        transform: none;
        bottom: 16px;
        border-radius: 14px;
        padding: 10px 16px;
        gap: 10px;
      }

      #pk-root .pk-compare-bar.visible {
        display: flex;
        animation: none;
      }

      #pk-root .pk-compare-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        border-radius: 10px;
        flex: 1;
      }

      #pk-root .pk-compare-count {
        font-size: 0.7rem;
        padding: 4px 8px;
        white-space: nowrap;
      }

      /* Card select: bigger touch target on mobile */
      #pk-root .pk-card-select {
        width: 32px;
        height: 32px;
        font-size: 16px;
        border-radius: 8px;
        border-width: 2px;
      }

      #pk-root.pk-compare-mode .perfume-card {
        cursor: pointer;
      }
    }

    /* ── COMPACT HERO (new design) ── */
    #pk-hero-banner {
      position: relative;
      background: #fafaf9;
      overflow: hidden;
      margin-bottom: 28px;
      border-radius: 20px;
      border: 1px solid #f5f5f4;
      min-height: 400px;
    }

    #pk-hero-banner::before,
    #pk-hero-banner::after {
      content: '';
      position: absolute;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(217, 119, 6, 0.18) 0%, transparent 65%);
      filter: blur(50px);
      z-index: 1;
      pointer-events: none;
      border-radius: 50%;
    }

    #pk-hero-banner::before {
      top: -150px;
      right: -100px;
    }

    #pk-hero-banner::after {
      bottom: -150px;
      right: -100px;
    }

    #pk-hero-banner .hero-img-bg {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      pointer-events: none;
      z-index: 0;
    }

    #pk-hero-banner .hero-img-bg img {
      height: 90%;
      width: auto;
      object-fit: contain;
      margin-right: 5%;
      margin-top: 20px;
      flex-shrink: 0;
      display: block;
    }

    /* Perfume spray mist effect */


    #pk-hero-banner .hero-overlay-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 40%, rgba(255, 255, 255, 0.3) 60%, transparent 75%);
      z-index: 1;
    }

    #pk-hero-banner .hero-layout {
      position: relative;
      z-index: 2;
      padding: 48px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    #pk-hero-banner .hero-inner-content {
      max-width: 650px;
    }

    #pk-hero-banner .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(217, 119, 6, 0.85);
      margin-bottom: 12px;
    }

    #pk-hero-banner .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 22px;
      height: 1px;
      background: rgba(217, 119, 6, 0.6);
    }

    #pk-hero-banner .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 700;
      color: #1c1917;
      line-height: 1.1;
      letter-spacing: -0.025em;
      margin-bottom: 12px;
    }

    #pk-hero-banner .hero-title em {
      font-style: italic;
      font-weight: 500;
      color: #d97706;
    }

    #pk-hero-banner .hero-sub {
      font-size: 0.95rem;
      color: #78716c;
      max-width: 460px;
      line-height: 1.6;
      font-weight: 400;
      margin-bottom: 22px;
    }

    #pk-hero-banner .hero-stats-row {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 22px;
    }

    #pk-hero-banner .hero-stat strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: #1c1917;
      line-height: 1;
    }

    #pk-hero-banner .hero-stat span {
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #78716c;
      font-weight: 700;
      margin-top: 2px;
      display: block;
    }

    #pk-hero-banner .hero-stat+.hero-stat {
      border-left: 1px solid #e7e5e4;
      padding-left: 24px;
    }

    #pk-hero-banner .hero-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    #pk-hero-banner .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 22px;
      border-radius: 9999px;
      background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.02em;
      transition: opacity .2s, transform .15s;
    }

    #pk-hero-banner .btn-hero-primary:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    #pk-hero-banner .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 22px;
      border-radius: 9999px;
      background: #ffffff;
      border: 1px solid #e7e5e4;
      color: #57534e;
      font-size: 0.8rem;
      font-weight: 600;
      text-decoration: none;
      transition: background .2s, color .2s;
    }

    #pk-hero-banner .btn-hero-secondary:hover {
      background: #fafaf9;
      color: #1c1917;
    }

    /* ── DISCOVER PILLS ── */
    @keyframes sprayBurst {
      0% {
        opacity: 0;
        transform: scaleX(0.5) scaleY(0.7) translateX(30px);
        filter: blur(6px);
      }

      40% {
        opacity: 1;
        filter: blur(0);
      }

      100% {
        opacity: 1;
        transform: scaleX(1) scaleY(1) translateX(0);
        filter: blur(0);
      }
    }

    @keyframes glowPulse {

      0%,
      100% {
        opacity: 0.55;
      }

      50% {
        opacity: 1;
      }
    }

    @keyframes particleDrift {
      0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
      }

      30% {
        opacity: 1;
      }

      100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(1);
      }
    }

    #pk-discover-band {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      position: relative;
      margin-top: 20px;
      flex-shrink: 0;
    }

    #pk-discover-band::before,
    #pk-discover-band::after {
      display: none;
    }

    #pk-discover-band svg {
      display: none !important;
    }

    #pk-discover-band .discover-pill-lnk {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border-radius: 9999px;
      background: rgba(217, 119, 6, 0.08);
      border: 1px solid rgba(217, 119, 6, 0.2);
      color: #92400e !important;
      font-size: 0.82rem;
      font-weight: 600;
      text-decoration: none;
      transition: all .2s;
      font-family: 'Inter', sans-serif;
      position: relative;
      z-index: 2;
    }

    .discover-pill-lnk:hover {
      background: rgba(217, 119, 6, 0.15);
      border-color: rgba(217, 119, 6, 0.4);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
    }

    @media(max-width:768px) {
      #pk-hero-banner .hero-layout {
        padding: 32px 20px 28px;
      }

      #pk-discover-band {
        justify-content: flex-start;
        gap: 8px;
      }

      #pk-discover-band .discover-pill-lnk {
        padding: 6px 12px;
        font-size: 0.75rem;
      }

      #pk-hero-banner .hero-title {
        font-size: 1.8rem;
      }

      #pk-hero-banner .hero-stat+.hero-stat {
        border-left: none;
        padding-left: 0;
      }
    }

@keyframes spin {
                0% {
                  transform: rotate(0deg);
                }

                100% {
                  transform: rotate(360deg);
                }
              }

#pk-seo-content h2.pk-seo-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.85rem;
            font-weight: 700;
            color: #1c1917;
            margin: 0 0 16px;
            line-height: 1.3;
          }

          #pk-seo-content h3.pk-seo-subheading {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #292524;
            margin: 32px 0 12px;
            line-height: 1.35;
          }

          #pk-seo-content p.pk-seo-text {
            font-size: 0.95rem;
            color: #57534e;
            line-height: 1.75;
            margin: 0 0 16px;
          }

          #pk-seo-content .pk-seo-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #f59e0b, #d97706);
            border-radius: 3px;
            margin: 0 0 24px;
          }

          #pk-seo-content ul.pk-seo-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
          }

          #pk-seo-content ul.pk-seo-list li {
            position: relative;
            padding: 8px 0 8px 24px;
            font-size: 0.93rem;
            color: #57534e;
            line-height: 1.7;
          }

          #pk-seo-content ul.pk-seo-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 16px;
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            border-radius: 50%;
          }

          #pk-seo-content .pk-seo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin: 20px 0 28px;
          }

          #pk-seo-content .pk-seo-card {
            background: #ffffff;
            border: 1px solid #f5f5f4;
            border-radius: 14px;
            padding: 22px 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            transition: transform 0.2s, box-shadow 0.2s;
          }

          #pk-seo-content .pk-seo-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
          }

          #pk-seo-content .pk-seo-card-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
            display: block;
          }

          #pk-seo-content .pk-seo-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: #1c1917;
            margin: 0 0 8px;
          }

          #pk-seo-content .pk-seo-card p {
            font-size: 0.87rem;
            color: #78716c;
            line-height: 1.65;
            margin: 0;
          }

          #pk-seo-content .pk-seo-table-wrap {
            overflow-x: auto;
            margin: 24px 0 28px;
            border-radius: 12px;
            border: 1px solid #f5f5f4;
            background: #ffffff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
          }

          #pk-seo-content table.pk-seo-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.88rem;
          }

          #pk-seo-content .pk-seo-table thead {
            background: #fafaf9;
          }

          #pk-seo-content .pk-seo-table th {
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: #78716c;
            border-bottom: 2px solid #f5f5f4;
            white-space: nowrap;
          }

          #pk-seo-content .pk-seo-table td {
            padding: 13px 18px;
            color: #57534e;
            border-bottom: 1px solid #f5f5f4;
            line-height: 1.5;
          }

          #pk-seo-content .pk-seo-table tbody tr:last-child td {
            border-bottom: none;
          }

          #pk-seo-content .pk-seo-table tbody tr:hover {
            background: #fefce8;
          }

          #pk-seo-content .pk-seo-table td:first-child {
            font-weight: 700;
            color: #292524;
            white-space: nowrap;
          }

          #pk-seo-content .pk-seo-table td:first-child a {
            color: #292524;
            text-decoration: none;
            transition: color 0.2s;
          }

          #pk-seo-content .pk-seo-table td:first-child a:hover {
            color: #d97706;
          }

          #pk-seo-content .pk-seo-card h4 a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
          }

          #pk-seo-content .pk-seo-card:hover h4 a {
            color: #d97706;
          }

          #pk-seo-content .pk-seo-brand-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0 24px;
          }

          #pk-seo-content .pk-seo-brand-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: #ffffff;
            border: 1px solid #e7e5e4;
            border-radius: 100px;
            font-size: 0.88rem;
            font-weight: 600;
            color: #292524;
            text-decoration: none;
            transition: all 0.2s;
          }

          #pk-seo-content .pk-seo-brand-pill:hover {
            border-color: #d97706;
            background: #fffbeb;
            color: #d97706;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.1);
          }

          #pk-seo-content .pk-seo-brand-pill .pk-bp-icon {
            font-size: 1rem;
          }

.pk-unified-footer {
  border-top: 1px solid rgba(30, 24, 16, 0.08);
  background: #fffcf7;
  padding: 36px 52px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.pk-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.pk-footer-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: #8a6830;
  font-style: italic;
  text-decoration: none;
}
.pk-footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pk-footer-links a {
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a7e72;
  text-decoration: none;
}
.pk-footer-links a:hover,
.pk-footer-links a.active {
  color: #8a6830;
}
.pk-footer-copy {
  font-size: .68rem;
  color: #a89a8c;
  text-align: right;
  margin: 0;
}

@media (max-width: 760px) {
  .pk-unified-footer { padding: 28px 20px; }
  .pk-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .pk-footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .pk-footer-copy { display: none; }
}
/* Quick View Button on Cards */
/* Compare Onboarding Tooltip */
.pk-onboard-tip {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #1c1917;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  width: 260px;
  z-index: 10000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: pk-tipIn 0.4s cubic-bezier(0.22,1,0.36,1);
}
@keyframes pk-tipIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.pk-onboard-arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -6px;
  width: 12px;
  height: 12px;
  background: #1c1917;
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}
.pk-onboard-tip button {
  display: block;
  margin: 8px auto 0;
  padding: 6px 20px;
  background: #d97706;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.pk-onboard-tip button:hover {
  background: #b45309;
}
