/* PIVO & KOBAJE — phone_menu.css
   CORE2 PREMIUM — Dark Bavarian Pivnica Theme.
   Palette: deep graphite-brown, warm gold, amber, burgundy accents.
   All layout dimensions preserved; only visual theme changed. */

:root {
  --pk-bg:             #100c08;
  --pk-bg-deep:        #080604;
  --pk-surface:        #1b1510;
  --pk-surface-soft:   #241b13;
  --pk-surface-hover:  #2d2116;

  --pk-gold:           #d4a33b;
  --pk-gold-light:     #efc765;
  --pk-gold-dark:      #8d6420;

  --pk-amber:          #c98222;
  --pk-burgundy:       #7a211b;
  --pk-burgundy-soft:  #321411;

  --pk-text:           #f7edda;
  --pk-text-soft:      #cdbd9f;
  --pk-text-muted:     #95866e;

  --pk-border:         rgba(212,163,59,.42);
  --pk-border-soft:    rgba(212,163,59,.22);
  --pk-shadow:         rgba(0,0,0,.55);

  /* legacy aliases so un-touched rules still resolve */
  --pm-bg-1:           var(--pk-bg);
  --pm-bg-2:           #0d0905;
  --pm-bg-3:           #090603;
  --pm-text:           var(--pk-text);
  --pm-fg:             var(--pk-text);
  --pm-muted:          var(--pk-text-muted);
  --pm-muted-dark:     var(--pk-text-soft);
  --pm-accent:         var(--pk-gold);
  --pm-accent-2:       var(--pk-gold);
  --pm-gold-soft:      var(--pk-gold-light);
  --pm-border:         var(--pk-border);
  --pm-card-bg:        var(--pk-surface);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.pm-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--pk-text);
  background:
    radial-gradient(circle at 50% 0%,   rgba(160,100,25,.10), transparent 40%),
    radial-gradient(circle at 85% 60%,  rgba(120,33,27,.07),  transparent 35%),
    linear-gradient(180deg, #171008 0%, #0c0805 100%);
  min-height: 100vh;
}

/* ====================================================
   TOPBAR
   ==================================================== */
.pm-topbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 12px 9px;
  background: rgba(16,12,8,.96);
  border-bottom: 1px solid var(--pk-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.pm-topbar-nav {
  display: flex;
  gap: 6px;
  align-self: flex-start;
  margin-bottom: 1px;
}
.pm-topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--pk-surface-soft);
  border: 1px solid var(--pk-border);
  color: var(--pk-gold);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.pm-topbar-brand {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--pk-text);
  line-height: 1.1;
  font-family: Georgia, "Times New Roman", serif;
}
.pm-topbar-subtitle {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--pk-text-muted);
  margin-bottom: 1px;
  text-transform: uppercase;
}
.pm-topbar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

/* Language switch */
.pm-lang-switch {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}
.pm-lang-switch button {
  min-width: 34px;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--pk-surface-soft);
  border: 1px solid var(--pk-border);
  color: var(--pk-text-soft);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.pm-lang-switch button.active {
  background: var(--pk-gold);
  color: var(--pk-bg-deep);
  border-color: var(--pk-gold);
}

/* ====================================================
   MAIN CONTENT AREA
   ==================================================== */
.pm-main {
  padding: 12px 0 32px;
}

.pm-section-title,
.pm-subgroup-title {
  margin: 12px 14px 8px;
  font-size: 15px;
  font-weight: 900;
  color: var(--pk-text);
  font-family: Georgia, "Times New Roman", serif;
}
.pm-subgroup-title {
  font-size: 12px;
  color: var(--pk-text-soft);
  font-family: system-ui, sans-serif;
}

/* ====================================================
   CATEGORY STRIP (horizontal swipe pills)
   ==================================================== */
.pm-cat-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 12px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}
.pm-cat-strip::-webkit-scrollbar { display: none; }

.pm-cat-pill {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--pk-surface-soft);
  border: 1px solid var(--pk-border);
  box-shadow: 0 2px 8px var(--pk-shadow);
  text-decoration: none;
  scroll-snap-align: start;
  white-space: nowrap;
  transition: background 140ms, border-color 140ms;
}
.pm-cat-pill:active {
  background: var(--pk-burgundy-soft);
  border-color: var(--pk-amber);
}

.pm-cat-emoji-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.pm-cat-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--pk-text-soft);
  line-height: 1.2;
  white-space: nowrap;
}

/* ====================================================
   HUB GROUP TITLE
   ==================================================== */
.pm-hub-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 12px 7px;
  font-size: 11px;
  font-weight: 800;
  color: var(--pk-gold);
  letter-spacing: .10em;
  text-transform: uppercase;
}
.pm-hub-group-title::before,
.pm-hub-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pk-border));
}
.pm-hub-group-title::before {
  display: none;
}
.pm-hub-group-title::after {
  background: linear-gradient(to right, var(--pk-border), transparent);
}
.pm-hub-group-title:first-of-type {
  margin-top: 8px;
}
.pm-hub-group-emoji {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

/* ====================================================
   HUB GRID — 2-column category cards
   ==================================================== */
.pm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 10px 16px;
}
@media (orientation: landscape) {
  .pm-grid {
    gap: 8px;
    padding: 0 10px 14px;
  }
}

.pm-grid--hubs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 12px 10px;
}

/* Hub category card */
.pm-card--hub {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--pk-surface) !important;
  border: 1px solid var(--pk-border) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow:
    0 4px 16px var(--pk-shadow),
    inset 0 1px 0 rgba(212,163,59,.08) !important;
  padding: 20px 10px 16px !important;
  min-height: 100px !important;
  height: auto !important;
  cursor: pointer;
  transition: transform 120ms, box-shadow 120ms, border-color 120ms;
  -webkit-tap-highlight-color: transparent;
}
.pm-card--hub:active {
  transform: scale(0.97);
  border-color: var(--pk-gold-light) !important;
  box-shadow:
    0 2px 8px var(--pk-shadow),
    0 0 14px rgba(212,163,59,.18) !important;
}

.pm-card-hub-emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.pm-card-hub-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.pm-card-hub-title {
  color: var(--pk-text-soft);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 2.5em;
}

/* Legacy photo-card (item cards with photos — not used in mobile currently) */
.pm-card,
.pm-card--tall {
  display: flex !important;
  flex-direction: column !important;
  background: var(--pk-surface) !important;
  border: 1px solid var(--pk-border-soft) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 3px 10px var(--pk-shadow) !important;
  height: auto !important;
  aspect-ratio: none !important;
  min-height: 0 !important;
  max-height: none !important;
}
.pm-card-photo,
.pm-card--tall .pm-card-photo {
  flex: 0 0 auto !important;
  width: 100% !important;
  height: 155px !important;
  aspect-ratio: none !important;
  background: var(--pk-surface-soft) !important;
  overflow: hidden !important;
  border-radius: 20px 20px 0 0 !important;
  position: relative;
}
.pm-card-photo img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.pm-card-photo--empty {
  background: var(--pk-surface-hover) !important;
}
.pm-card-label,
.pm-card-label--tall {
  flex: 0 0 auto !important;
  height: auto !important;
  padding: 6px 5px 7px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
  background: var(--pk-surface) !important;
  border-top: 1px solid var(--pk-border-soft);
  border-radius: 0 0 20px 20px !important;
  text-align: center;
}
.pm-card-title {
  color: var(--pk-text);
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 800;
  white-space: normal;
}
.pm-card-price {
  color: var(--pk-gold);
  font-size: 12.5px;
  font-weight: 900;
  margin-top: 1px;
}

/* ====================================================
   COMPACT ITEM LIST (category view)
   ==================================================== */
.pm-item-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 10px 16px;
}

.pm-item-list-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pk-surface);
  border: 1px solid var(--pk-border-soft);
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--pk-shadow);
  min-height: 64px;
  padding: 12px 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: background 120ms, border-color 120ms;
}
.pm-item-list-row:active {
  background: var(--pk-surface-hover);
  border-color: var(--pk-gold);
}

.pm-item-list-info {
  flex: 1 1 auto;
  min-width: 0;
}
.pm-item-list-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pk-text);
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
}
.pm-item-list-sub {
  font-size: 12px;
  color: var(--pk-text-muted);
  margin-top: 2px;
  line-height: 1.3;
}
.pm-item-list-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.pm-item-list-price {
  font-size: 15px;
  font-weight: 900;
  color: var(--pk-gold);
  white-space: nowrap;
}
.pm-item-list-chevron {
  font-size: 15px;
  color: var(--pk-gold-dark);
  line-height: 1;
}

/* ====================================================
   SUB-NAV CHIPS
   ==================================================== */
.pm-chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 12px 12px;
  scrollbar-width: none;
}
.pm-chip-row::-webkit-scrollbar { display: none; }
.pm-chip {
  flex: 0 0 auto;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pk-surface-soft);
  border: 1px solid var(--pk-border);
  color: var(--pk-text-soft);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.pm-chip--active {
  background: var(--pk-gold);
  color: var(--pk-bg-deep);
  border-color: var(--pk-gold);
}

.pm-empty {
  margin: 20px 14px;
  color: var(--pk-text-muted);
  font-size: 13px;
  text-align: center;
}
.pm-back-row {
  padding: 6px 14px 20px;
  display: flex;
  justify-content: center;
}

/* ====================================================
   ITEM DETAIL VIEW
   ==================================================== */
.pm-item-view {
  margin: 0 12px 24px;
  background: var(--pk-surface);
  border: 1px solid var(--pk-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 24px var(--pk-shadow);
}
.pm-crumbs {
  padding: 10px 14px 0;
  font-size: 11px;
  color: var(--pk-text-muted);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pm-crumb-sep { margin: 0 4px; color: var(--pk-gold-dark); }

.pm-item-photo {
  display: none; /* removed from mobile */
}

.pm-item-body {
  padding: 16px;
  background: var(--pk-surface);
}
.pm-item-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  color: var(--pk-text);
  line-height: 1.15;
  font-family: Georgia, "Times New Roman", serif;
}
.pm-item-desc {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--pk-text-soft);
  line-height: 1.5;
}
.pm-item-row {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 13px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--pk-border-soft);
  color: var(--pk-text-soft);
}
.pm-item-row-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--pk-gold-dark);
}
.pm-item-price {
  margin: 12px 0;
  font-size: 28px;
  font-weight: 900;
  color: var(--pk-gold);
}
.pm-item-price-old {
  font-size: 15px;
  color: var(--pk-text-muted);
  text-decoration: line-through;
  font-weight: 600;
  margin-left: 6px;
}
.pm-item-cta {
  display: flex;
  gap: 10px;
}

/* ====================================================
   BUTTONS
   ==================================================== */
.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--pk-surface-soft);
  border: 1px solid var(--pk-border);
  color: var(--pk-text-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  flex: 1;
  transition: background 140ms, border-color 140ms;
}
.pm-btn:active {
  background: var(--pk-surface-hover);
  border-color: var(--pk-gold-light);
}
.pm-btn--primary {
  background: var(--pk-gold-dark);
  border-color: var(--pk-gold);
  color: var(--pk-text);
  box-shadow: 0 4px 14px rgba(141,100,32,.35);
}
.pm-btn--primary:active {
  background: var(--pk-gold);
  color: var(--pk-bg-deep);
}

/* ====================================================
   SHARE MENU (Podijeli meni)
   ==================================================== */
.pm-share-menu-wrap {
  padding: 0 14px 16px;
}
.pm-share-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  background: var(--pk-surface-soft);
  border: 1px solid var(--pk-border);
  border-radius: 28px;
  box-shadow: 0 4px 16px var(--pk-shadow);
  font-size: 15px;
  font-weight: 700;
  color: var(--pk-gold);
  cursor: pointer;
  touch-action: manipulation;
  transition: background 140ms, border-color 140ms;
}
.pm-share-menu-btn:active {
  background: var(--pk-surface-hover);
  border-color: var(--pk-gold-light);
}
.pm-share-menu-btn svg {
  flex-shrink: 0;
  stroke: var(--pk-gold);
}
.pm-hubs-share-toast {
  text-align: center;
  padding: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--pk-gold);
}

/* ====================================================
   PWA INSTALL BANNER
   ==================================================== */
.pm-install-wrap {
  padding: 0 14px 16px;
}
.pm-install-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  background: var(--pk-surface-soft);
  border: 1px solid var(--pk-border);
  border-radius: 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pk-gold);
  cursor: pointer;
  touch-action: manipulation;
  letter-spacing: 0.01em;
  transition: background 140ms;
}
.pm-install-btn:active {
  background: var(--pk-surface-hover);
}
.pm-install-btn__icon {
  font-size: 18px;
  line-height: 1;
}
.pm-install-hint {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: var(--pk-text-muted);
  padding: 4px 8px 0;
  line-height: 1.5;
}

/* ====================================================
   CONTACTS
   ==================================================== */
.pm-contacts {
  margin: 24px 0 20px;
  padding: 0 4px;
}
.pm-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pm-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 999px;
  background: var(--pk-surface-soft);
  border: 1px solid var(--pk-border);
  color: var(--pk-gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 140ms, border-color 140ms;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 2px 8px var(--pk-shadow);
}
.pm-contact-btn:active {
  background: var(--pk-surface-hover);
  border-color: var(--pk-gold-light);
}
.pm-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--pk-gold);
}
.pm-contact-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ====================================================
   MUSIC BUTTON
   ==================================================== */
.pm-music-btn {
  position: fixed;
  bottom: 14px;
  right: 14px;
  z-index: 10002;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16,12,8,.75);
  color: var(--pk-gold);
  border: 1px solid var(--pk-border);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0.70;
  transition: opacity 160ms, background 160ms, border-color 160ms;
  touch-action: manipulation;
  padding: 0;
  line-height: 1;
}
.pm-music-btn:hover,
.pm-music-btn[aria-pressed="true"] { opacity: 0.96; }
.pm-music-btn[aria-pressed="true"] {
  background: rgba(141,100,32,.30);
  border-color: var(--pk-gold-light);
}

/* ====================================================
   INTRO OVERLAY (unchanged visually — dark already)
   ==================================================== */
.pm-intro {
  position: fixed;
  inset: 0;
  z-index: 9998;
  overflow: hidden;
  background: #0d0d0d;
}
.pm-intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
#pm-intro-promo-video {
  object-fit: contain;
  object-position: center center;
  background: #000;
  transform: none;
}
.pm-intro-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.48) 70%, transparent 100%);
  pointer-events: none;
}
.pm-intro-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pm-intro-brand-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
  font-family: Georgia, "Times New Roman", serif;
}
.pm-intro-brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  text-shadow: 0 1px 6px rgba(0,0,0,.50);
}
.pm-intro-btn {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(8,10,14,.62);
  border: 1px solid var(--pk-border);
  color: var(--pk-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  transition: background 140ms, border-color 140ms, transform 140ms;
  touch-action: manipulation;
}
.pm-intro-btn:hover {
  background: rgba(212,163,59,.14);
  border-color: var(--pk-gold-light);
}
.pm-intro-btn:active {
  transform: translateY(-50%) scale(0.96);
}
.pm-intro--exit {
  animation: pm-intro-fade-out 350ms ease forwards;
}
@keyframes pm-intro-fade-out {
  to { opacity: 0; pointer-events: none; }
}

/* Anti-flash */
html.pm-intro-active { background: #0d0d0d; }
html.pm-intro-active body.pm-page { background: #0d0d0d !important; }
html.pm-intro-active body.pm-page > *:not(#pm-intro):not(script):not(style):not(#pm-music-btn):not(#pm-music) {
  visibility: hidden !important;
}

/* ====================================================
   HERO (legacy, not used in mobile currently)
   ==================================================== */
.pm-hero {
  position: relative;
  margin: 0 12px 14px;
  height: 155px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px var(--pk-shadow);
  background: var(--pk-surface-soft);
}
.pm-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: 20px;
  transition: opacity 700ms ease;
}
.pm-hero-slide--active { opacity: 1; }
.pm-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
.pm-hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 14px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.60) 0%, rgba(0,0,0,.18) 60%, transparent 100%);
  border-radius: 0 0 20px 20px;
}
.pm-hero-brand {
  font-size: 12px; font-weight: 900;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.pm-hero-caption {
  font-size: 17px; font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
  line-height: 1.15; margin-top: 2px;
}
.pm-hero-slide[data-tap] { cursor: pointer; }

/* ====================================================
   LEGACY CART STYLES (kept to avoid JS errors; elements
   removed from DOM so none of this is visible)
   ==================================================== */
.pm-cart-btn, .pm-cart-badge, .pm-cart-overlay,
.pm-cart-panel, .pm-cart-head, .pm-cart-list,
.pm-cart-foot, .pm-cart-row, .pm-detail-cart,
.pm-detail-qty, .pm-qty-btn, .pm-qty-num,
.pm-card-add, .pm-cart-del { display: none !important; }
