/* =========================================================
   Pickikt Store — Complete Premium UI  v4.4
   All classes in one file, zero conflicts, zero duplicates
   ========================================================= */

/* ─── Design tokens ─────────────────────────────────────── */
:root {
  --s-ink:       #0f172a;     /* slate-900 */
  --s-accent:    #2563eb;     /* blue-600  — matches frontend */
  --s-accent2:   #1d4ed8;     /* blue-700  — hover           */
  --s-accent3:   #3b82f6;     /* blue-500  — lighter         */
  --s-ok:        #059669;
  --s-err:       #dc2626;
  --s-border:    #e2e8f0;     /* slate-200 */
  --s-bg:        #f8fafc;     /* slate-50  */
  --s-white:     #ffffff;
  --s-muted:     #64748b;     /* slate-500 */
  --s-r:         12px;
  --s-r-lg:      16px;
  --s-shadow:    0 1px 3px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.05);
  --s-shadow-md: 0 4px 8px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.05);
  --s-shadow-lg: 0 12px 24px rgba(15,23,42,.10), 0 4px 6px rgba(15,23,42,.05);
}

/* ─── Shared buttons ──────────────────────────────────────── */
.s-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; border: none; border-radius: var(--s-r);
  padding: 12px 22px; font-size: 14px; font-weight: 700;
  cursor: pointer; text-decoration: none; box-sizing: border-box;
  transition: all .18s; white-space: nowrap; line-height: 1.2;
}
.s-btn-primary   { background:var(--s-accent); color:#fff; }
.s-btn-primary:hover  { background: var(--s-accent2); color: #fff; }
.s-btn-outline   { background: var(--s-white); color: var(--s-ink); border: 1.5px solid var(--s-border); }
.s-btn-outline:hover  { border-color: var(--s-ink); background: var(--s-bg); }
.s-btn-danger    { background: #fef2f2; color: var(--s-err); border: 1.5px solid #fecaca; }
.s-btn-danger:hover   { background: #fee2e2; }
.s-btn-sm        { padding: 8px 14px; font-size: 12.5px; border-radius: 8px; }
.s-btn-lg        { padding: 14px 24px; font-size: 15px; border-radius: var(--s-r-lg); }
.s-btn-xl        { padding: 17px 28px; font-size: 16px; border-radius: var(--s-r-lg); }
.s-btn-full      { width: 100%; }
.s-btn:disabled  { opacity: .5; cursor: not-allowed; }

/* ─── Cards ──────────────────────────────────────────────── */
.s-card {
  background: var(--s-white); border-radius: var(--s-r-lg);
  border: 1px solid var(--s-border); padding: 22px;
  box-shadow: var(--s-shadow);
}

/* ─── Inputs ─────────────────────────────────────────────── */
.s-input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--s-border);
  border-radius: var(--s-r); font-size: 14px; color: var(--s-ink);
  background: var(--s-white); box-sizing: border-box;
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.s-input:focus { border-color: var(--s-accent); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.s-input.error { border-color: var(--s-err); }
select.s-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

/* ─── Shop page ──────────────────────────────────────────── */
.ph-store-shop { padding: 20px 16px 24px; }
.ph-store-search-wrap { position: relative; margin-bottom: 20px; max-width: 540px; }
.ph-store-search-form {
  display: flex; align-items: center; background: var(--s-white);
  border: 1.5px solid var(--s-border); border-radius: var(--s-r-lg);
  overflow: hidden; box-shadow: var(--s-shadow);
}
.ph-store-search-form input[type=search] {
  flex: 1; border: none; background: transparent;
  padding: 13px 16px; font-size: 14px; outline: none; color: var(--s-ink);
}
.ph-store-search-form button {
  background: var(--s-accent); border: none; color: #fff;
  width: 48px; height: 48px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; flex: 0 0 48px;
}
.ph-store-search-form button:hover { background: var(--s-accent2); }
.ph-store-search-results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--s-white); border: 1.5px solid var(--s-border);
  border-radius: var(--s-r-lg); box-shadow: var(--s-shadow-lg);
  z-index: 200; max-height: 360px; overflow-y: auto; display: none;
}
.ph-store-search-results.open { display: block; }
.ph-store-search-result-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  text-decoration: none; color: var(--s-ink); border-bottom: 1px solid var(--s-border);
}
.ph-store-search-result-item:last-child { border-bottom: none; }
.ph-store-search-result-item:hover { background: var(--s-bg); }
.ph-store-search-result-img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; background: var(--s-bg); flex: 0 0 44px; }
.ph-store-search-result-info strong { display: block; font-size: 13.5px; font-weight: 700; }
.ph-store-search-result-info span { color: var(--s-accent); font-weight: 700; font-size: 13px; }
.ph-store-search-result-info del { color: var(--s-muted); font-size: 11px; margin-left: 4px; }
.ph-store-search-no-results { padding: 18px; text-align: center; color: var(--s-muted); font-size: 13.5px; }

/* Category pills */
.ph-store-cats { display: flex; gap: 8px; overflow-x: auto; margin-bottom: 20px; padding-bottom: 4px; scrollbar-width: none; }
.ph-store-cats::-webkit-scrollbar { display: none; }
.ph-store-cat-pill {
  border: 1.5px solid var(--s-border); background: var(--s-white);
  padding: 8px 18px; border-radius: 24px; font-size: 13px;
  font-weight: 600; color: var(--s-ink); text-decoration: none;
  white-space: nowrap; transition: all .15s; flex: 0 0 auto;
}
.ph-store-cat-pill:hover { border-color: var(--s-accent); color: var(--s-accent); }
.ph-store-cat-pill.active { background: var(--s-accent); color: #fff; border-color: var(--s-accent); }

/* Product grid */
.ph-store-grid { display: grid; grid-template-columns: repeat(var(--ph-products-desktop, 4), 1fr); gap: 16px; }
.ph-store-product-card {
  background: var(--s-white); border-radius: 16px;
  border: 1px solid var(--s-border); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: box-shadow .22s, transform .22s;
}
.ph-store-product-card:hover { box-shadow: 0 8px 28px rgba(79,70,229,.13); transform: translateY(-3px); }
.ph-store-product-link { text-decoration: none; color: var(--s-ink); }
/* Image */
.ph-store-product-img { position: relative; aspect-ratio: 1/1; background: var(--s-bg); overflow: hidden; }
.ph-store-product-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; box-sizing: border-box; transition: transform .3s; }
.ph-store-product-card:hover .ph-store-product-img img { transform: scale(1.05); }
/* Body */
.ph-store-product-body { display: flex; flex-direction: column; flex: 1; padding: 10px 12px 0; }
/* Title */
.ph-store-product-card h4 { font-size: 13.5px; margin: 0 0 6px; font-weight: 700; line-height: 1.45; color: var(--s-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
/* Price row */
.ph-store-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin: 0 0 6px; font-weight: 900; font-size: 17px; color: var(--s-ink); }
.ph-store-price del { color: #9ca3af; font-weight: 400; font-size: 12px; }
.ph-price-mrp { font-size: 12px; color: #9ca3af; font-weight: 400; white-space: nowrap; }
.ph-store-price-lg { font-size: 24px; margin: 0 0 6px; }
.ph-store-sale-badge {
  position: absolute; top: 10px; left: 10px; background: #ef4444;
  color: #fff; font-size: 10px; font-weight: 800; padding: 4px 10px;
  border-radius: 20px; z-index: 2;
}
.ph-store-compare-badge { background: var(--s-ok); }
.ph-store-digital-badge { left: auto; right: 10px; background: var(--s-ink); }
.ph-store-btn {
  display: block; width: calc(100% - 24px); margin: 0 12px 12px;
  text-align: center; background: var(--s-ink); color: #fff;
  border: none; border-radius: var(--s-r); padding: 11px;
  font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: background .15s;
}
.ph-store-btn:hover { background: var(--s-accent); color: #fff; }
.ph-store-btn:disabled { background: var(--s-border); color: var(--s-muted); cursor: not-allowed; }
.ph-store-btn-lg { width: 100%; padding: 14px; font-size: 15px; border-radius: var(--s-r-lg); margin: 0; }
.ph-store-btn-accent { background: var(--s-accent); }
.ph-store-btn-outline { background: transparent; color: var(--s-ink); border: 1.5px solid var(--s-border); }
.ph-store-btn-outline:hover { border-color: var(--s-ink); background: var(--s-bg); color: var(--s-ink); }
.ph-empty { text-align: center; padding: 40px 20px; color: var(--s-muted); font-size: 14px; }
.ph-store-short-desc { color: var(--s-muted); margin: 0 0 14px; line-height: 1.7; font-size: 14px; }
.ph-store-sku { font-size: 12px; color: #aaa; margin-bottom: 8px; }

/* Single product */
.ph-store-single { padding: 20px 16px 24px; }
.ph-store-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; color: var(--s-ink); text-decoration: none; font-weight: 600; font-size: 13px; border: 1px solid var(--s-border); padding: 8px 14px; border-radius: 8px; }
.ph-store-back:hover { background: var(--s-bg); }
.ph-store-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.ph-store-single-img { border-radius: var(--s-r-lg); overflow: hidden; aspect-ratio: 1/1; background: var(--s-bg); }
.ph-store-single-img img { width: 100%; height: 100%; object-fit: cover; }
.ph-store-gallery-strip { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; }
.ph-store-gallery-strip-thumb { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: .6; border: 2px solid transparent; transition: all .15s; flex: 0 0 auto; }
.ph-store-gallery-strip-thumb:hover { opacity: .85; }
.ph-store-gallery-strip-thumb.active { opacity: 1; border-color: var(--s-accent); }
.ph-store-single-info h1 { font-size: 22px; font-weight: 800; margin: 0 0 12px; }
.ph-store-qty-row { display: inline-flex; align-items: center; border: 2px solid var(--s-ink); border-radius: var(--s-r); margin-bottom: 14px; overflow: hidden; }
.ph-store-qty-btn { background: var(--s-white); border: none; width: 40px; height: 42px; font-size: 20px; cursor: pointer; font-weight: 700; color: var(--s-ink); transition: background .1s; }
.ph-store-qty-btn:hover { background: var(--s-bg); }
.ph-store-qty-input { width: 48px; height: 42px; border: none; border-left: 1.5px solid var(--s-border); border-right: 1.5px solid var(--s-border); text-align: center; font-size: 15px; font-weight: 700; color: var(--s-ink); }
.ph-store-description { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--s-border); color: #374151; line-height: 1.8; font-size: 14px; }

/* ─── Side Cart ───────────────────────────────────────────── */
.ph-side-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9998; opacity: 0; pointer-events: none; transition: opacity .3s; }
.ph-side-cart-overlay.open { opacity: 1; pointer-events: all; }
.ph-side-cart {
  position: fixed !important; top: 0 !important; right: -440px !important; width: 100%; max-width: 400px;
  height: 100%; background: var(--s-white); z-index: 9999;
  box-shadow: var(--s-shadow-lg); display: flex; flex-direction: column;
  transition: right .32s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  visibility: hidden;
}
.ph-side-cart.open { right: 0 !important; pointer-events: all; visibility: visible; }
.ph-side-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--s-border); flex: 0 0 auto;
}
.ph-side-cart-head h2 { margin: 0; font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.ph-side-cart-count {
  background: var(--s-accent); color: #fff; border-radius: 50%;
  width: 22px; height: 22px; font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.ph-side-cart-close { background: none; border: none; cursor: pointer; color: var(--s-ink); display: flex; align-items: center; justify-content: center; border-radius: 8px; padding: 4px; }
.ph-side-cart-close:hover { background: var(--s-bg); }
.ph-side-cart-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.ph-side-cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 14px; color: var(--s-muted); }
.ph-side-cart-empty p { font-size: 14px; font-weight: 600; }
.ph-side-cart-item { display: grid; grid-template-columns: 68px 1fr auto; gap: 10px; background: var(--s-bg); border-radius: var(--s-r); padding: 12px; }
.ph-side-cart-item-img { width: 68px; height: 68px; border-radius: 8px; object-fit: cover; background: var(--s-border); }
.ph-side-cart-item-no-img { display: block; width: 68px; height: 68px; border-radius: 8px; background: var(--s-border); }
.ph-side-cart-item-info p { font-size: 13px; font-weight: 700; margin: 0 0 6px; line-height: 1.4; }
.ph-side-cart-item-price { font-size: 13px; font-weight: 800; color: var(--s-accent); margin-bottom: 8px; display: block; }
.ph-side-cart-item-controls { display: flex; align-items: center; border: 1.5px solid var(--s-border); border-radius: 8px; overflow: hidden; width: fit-content; background: var(--s-white); }
.ph-side-cart-item-controls button { background: none; border: none; width: 30px; height: 28px; font-size: 16px; font-weight: 700; cursor: pointer; color: var(--s-ink); }
.ph-side-cart-item-controls button:hover { background: var(--s-bg); }
.ph-side-cart-item-controls span { padding: 0 8px; font-size: 13px; font-weight: 700; min-width: 24px; text-align: center; line-height: 28px; }
.ph-side-cart-item-remove { background: none; border: none; cursor: pointer; color: #ccc; font-size: 20px; padding: 0; transition: color .15s; align-self: start; }
.ph-side-cart-item-remove:hover { color: var(--s-err); }
.ph-side-cart-footer { flex: 0 0 auto; padding: 16px; border-top: 1px solid var(--s-border); }
.ph-side-cart-totals { margin-bottom: 14px; }
.ph-side-cart-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 5px 0; color: var(--s-muted); }
.ph-side-cart-row strong { color: var(--s-ink); font-weight: 700; }
.ph-side-cart-row.total { font-size: 16px; font-weight: 800; color: var(--s-ink); border-top: 1px solid var(--s-border); margin-top: 6px; padding-top: 10px; }
.ph-side-cart-actions { display: flex; flex-direction: column; gap: 8px; }

/* ─── Cart page ───────────────────────────────────────────── */
.pkkt-cart { padding: 20px 16px 100px; }
.pkkt-cart-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.pkkt-cart-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pkkt-cart-heading { font-size: 22px; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 10px; }
.pkkt-cart-badge { background: var(--s-accent); color: #fff; border-radius: 20px; padding: 2px 10px; font-size: 13px; font-weight: 700; }
.pkkt-link-subtle { font-size: 13px; color: var(--s-muted); text-decoration: none; font-weight: 600; }
.pkkt-link-subtle:hover { color: var(--s-ink); }
.pkkt-empty { text-align: center; padding: 80px 20px; }
.pkkt-empty h2 { font-size: 22px; font-weight: 800; margin: 16px 0 8px; }
.pkkt-empty p { color: var(--s-muted); margin: 0 0 24px; }
.pkkt-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; border: none; border-radius: var(--s-r); padding: 12px 20px;
  font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: all .15s; box-sizing: border-box; line-height: 1.2;
}
.pkkt-btn-primary { background: var(--s-accent); color: #fff; }
.pkkt-btn-primary:hover { background: var(--s-accent2); color: #fff; }
.pkkt-btn-outline { background: var(--s-white); color: var(--s-ink); border: 1.5px solid var(--s-border); }
.pkkt-btn-outline:hover { border-color: var(--s-ink); }
.pkkt-btn-full { width: 100%; }
.pkkt-btn-lg { padding: 14px 20px; font-size: 15px; border-radius: var(--s-r-lg); }
.pkkt-btn-xl { padding: 17px 24px; font-size: 16px; border-radius: var(--s-r-lg); }
.pkkt-btn:disabled { opacity: .5; cursor: not-allowed; }
.pkkt-free { color: var(--s-ok); font-weight: 800; }

/* Cart item rows */
.pkkt-cart-row { background: var(--s-white); border-radius: var(--s-r-lg); border: 1px solid var(--s-border); padding: 14px; display: flex; gap: 14px; margin-bottom: 10px; box-shadow: var(--s-shadow); }
.pkkt-cart-row-img { flex: 0 0 76px; }
.pkkt-cart-row-img img { width: 76px; height: 76px; border-radius: var(--s-r); object-fit: cover; display: block; }
.pkkt-no-img { display: block; width: 76px; height: 76px; border-radius: var(--s-r); background: var(--s-bg); }
.pkkt-cart-row-body { flex: 1; min-width: 0; }
.pkkt-cart-row-name { font-size: 14px; font-weight: 700; margin: 0 0 3px; color: var(--s-ink); line-height: 1.4; }
.pkkt-cart-row-unit { font-size: 12.5px; color: var(--s-muted); margin: 0 0 12px; }
.pkkt-cart-row-bottom { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pkkt-cart-row-total { font-size: 16px; font-weight: 800; color: var(--s-ink); margin-left: auto; }
.pkkt-qty { display: flex; align-items: center; border: 2px solid var(--s-ink); border-radius: 10px; overflow: hidden; }
.pkkt-qty-btn { background: var(--s-white); border: none; width: 34px; height: 34px; font-size: 18px; font-weight: 800; cursor: pointer; color: var(--s-ink); display: flex; align-items: center; justify-content: center; }
.pkkt-qty-btn:hover { background: var(--s-bg); }
.pkkt-qty-val { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; border-left: 1.5px solid var(--s-border); border-right: 1.5px solid var(--s-border); color: var(--s-ink); }
.pkkt-remove { background: none; border: none; color: #d1d5db; font-size: 22px; cursor: pointer; padding: 0 4px; transition: color .15s; }
.pkkt-remove:hover { color: var(--s-err); }

/* Cart summary */
.pkkt-summary-card { background: var(--s-white); border-radius: var(--s-r-lg); border: 1px solid var(--s-border); padding: 22px; position: sticky; top: 90px; box-shadow: var(--s-shadow); }
.pkkt-summary-heading { font-size: 16px; font-weight: 800; margin: 0 0 16px; }
.pkkt-summary-lines { border-top: 1px solid var(--s-border); }
.pkkt-summary-line { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f3f4f6; font-size: 13.5px; color: var(--s-muted); }
.pkkt-summary-line b { color: var(--s-ink); font-weight: 700; }
.pkkt-summary-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 0; font-size: 18px; font-weight: 800; color: var(--s-ink); }
.pkkt-tax-note { font-size: 11.5px; color: #9ca3af; margin: 8px 0 0; text-align: center; }
.pkkt-coupon-hint { font-size: 12px; color: #9ca3af; text-align: center; margin: 10px 0 14px; }
.pkkt-trust-row { display: flex; justify-content: space-around; padding-top: 14px; border-top: 1px solid var(--s-border); margin-top: 4px; }
.pkkt-trust-item { font-size: 11px; color: #9ca3af; text-align: center; }
.pkkt-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--s-white); border-top: 1px solid var(--s-border); padding: 12px 16px; z-index: 8000; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -4px 12px rgba(0,0,0,.08); }
.pkkt-sticky-total { display: flex; flex-direction: column; }
.pkkt-sticky-total span { font-size: 11px; color: var(--s-muted); }
.pkkt-sticky-total b { font-size: 18px; font-weight: 800; }

/* ─── Checkout page ───────────────────────────────────────── */
.pkkt-checkout { padding: 20px 16px 60px; }
.pkkt-checkout-title { font-size: 22px; font-weight: 800; margin: 0 0 24px; }
.pkkt-checkout-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.pkkt-checkout-form-wrap { display: flex; flex-direction: column; gap: 14px; }
.pkkt-form-card { background: var(--s-white); border-radius: var(--s-r-lg); border: 1px solid var(--s-border); padding: 22px; box-shadow: var(--s-shadow); }
.pkkt-form-card-title { font-size: 15px; font-weight: 800; margin: 0 0 18px; display: flex; align-items: center; gap: 10px; }
.pkkt-step-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--s-accent); color: #fff; font-size: 12px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 26px; }
.pkkt-fields { display: flex; flex-direction: column; gap: 14px; }
.pkkt-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pkkt-field { display: flex; flex-direction: column; gap: 5px; }
.pkkt-field label { font-size: 11.5px; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: .3px; }
.pkkt-input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--s-border); border-radius: var(--s-r); font-size: 14px; color: var(--s-ink); background: var(--s-white); box-sizing: border-box; outline: none; transition: border-color .15s, box-shadow .15s; }
.pkkt-input:focus { border-color: var(--s-accent); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.pkkt-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.pkkt-coupon-row { display: flex; gap: 10px; align-items: center; }
.pkkt-coupon-msg { font-size: 12.5px; margin: 6px 0 0; min-height: 16px; }
.pkkt-coupon-msg.success { color: var(--s-ok); }
.pkkt-coupon-msg.error { color: var(--s-err); }
.pkkt-payment-list { display: flex; flex-direction: column; gap: 10px; }
.pkkt-pay-opt { cursor: pointer; display: block; }
.pkkt-pay-opt input { display: none; }
.pkkt-pay-opt-body { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--s-border); border-radius: var(--s-r); padding: 14px 16px; transition: all .2s; }
.pkkt-pay-opt:hover .pkkt-pay-opt-body { border-color: #9ca3af; }
.pkkt-pay-opt input:checked ~ .pkkt-pay-opt-body { border-color: var(--s-accent); background: #eef2ff; box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.pkkt-pay-ico { font-size: 22px; flex: 0 0 28px; text-align: center; }
.pkkt-pay-opt-body > div { flex: 1; }
.pkkt-pay-opt-body strong { display: block; font-size: 14px; font-weight: 700; }
.pkkt-pay-opt-body span { font-size: 12px; color: var(--s-muted); }
.pkkt-pay-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #d1d5db; flex: 0 0 18px; position: relative; transition: all .2s; }
.pkkt-pay-opt input:checked ~ .pkkt-pay-opt-body .pkkt-pay-radio { border-color: var(--s-accent); background: var(--s-accent); }
.pkkt-pay-opt input:checked ~ .pkkt-pay-opt-body .pkkt-pay-radio::after { content: ''; position: absolute; inset: 3px; background: #fff; border-radius: 50%; }
.pkkt-checkout-msg { font-size: 13px; color: var(--s-err); min-height: 16px; margin-bottom: 8px; }
.pkkt-secure-note { text-align: center; font-size: 12px; color: #9ca3af; margin-top: 10px; }
.pkkt-checkout-summary { position: sticky; top: 90px; }
.pkkt-oi-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; max-height: 260px; overflow-y: auto; }
.pkkt-oi-row { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 10px; }
.pkkt-oi-img-wrap { position: relative; width: 48px; height: 48px; }
.pkkt-oi-img-wrap img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.pkkt-no-img-sm { display: block; width: 48px; height: 48px; border-radius: 8px; background: var(--s-bg); }
.pkkt-oi-qty { position: absolute; top: -5px; right: -5px; width: 17px; height: 17px; background: var(--s-ink); color: #fff; border-radius: 50%; font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.pkkt-oi-name { font-size: 12.5px; font-weight: 600; line-height: 1.4; }
.pkkt-oi-price { font-size: 13px; font-weight: 800; white-space: nowrap; }
.pkkt-checkout-subtotal, .pkkt-checkout-subtotal ~ b { font-weight: 700; }
.pkkt-confirmed { text-align: center; padding: 60px 20px; max-width: 460px; margin: 0 auto; }
.pkkt-confirmed-tick { font-size: 64px; display: block; margin-bottom: 16px; }
.pkkt-confirmed h1 { font-size: 26px; font-weight: 800; margin: 0 0 10px; }
.pkkt-confirmed p { font-size: 14px; color: var(--s-muted); margin: 0 0 20px; }
.pkkt-confirmed-num-box { background: var(--s-bg); border-radius: var(--s-r-lg); padding: 20px; margin: 20px 0; }
.pkkt-confirmed-num-box span { font-size: 11px; color: #9ca3af; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 6px; }
.pkkt-confirmed-num-box strong { font-size: 22px; font-weight: 800; }
.pkkt-confirmed-hint { font-size: 13px; }
.pkkt-confirmed-hint a { color: var(--s-accent); font-weight: 700; }
.pkkt-confirmed-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.pkkt-confirmed-btns .pkkt-btn { padding: 13px 24px; }

/* ─── Login / Auth ────────────────────────────────────────── */
.la-page { max-width: 440px; padding: 20px 16px 24px; }
.la-alert { border-radius: var(--s-r); padding: 12px 14px; font-size: 13.5px; margin-bottom: 16px; font-weight: 600; }
.la-alert-ok  { background: #d1fae5; color: #065f46; }
.la-alert-err { background: #fee2e2; color: #991b1b; }
.la-tabs { display: flex; background: var(--s-bg); border-radius: var(--s-r); padding: 4px; margin-bottom: 18px; }
.la-tab { flex: 1; background: transparent; border: none; padding: 11px; border-radius: 9px; font-size: 14px; font-weight: 700; color: var(--s-muted); cursor: pointer; transition: all .2s; }
.la-tab-on { background: var(--s-white); color: var(--s-ink); box-shadow: var(--s-shadow); }
.la-card { background: var(--s-white); border-radius: var(--s-r-lg); border: 1px solid var(--s-border); padding: 24px; box-shadow: var(--s-shadow); margin-bottom: 14px; }
.la-panel { display: block; }
.la-title { font-size: 18px; font-weight: 800; margin: 0 0 16px; }
.la-label { display: block; font-size: 11.5px; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: .3px; margin: 14px 0 5px; }
.la-label:first-child { margin-top: 0; }
.la-input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--s-border); border-radius: var(--s-r); font-size: 14px; color: var(--s-ink); background: var(--s-white); box-sizing: border-box; outline: none; transition: border-color .15s, box-shadow .15s; }
.la-input:focus { border-color: var(--s-accent); box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.la-otp-input { font-size: 26px; letter-spacing: 12px; text-align: center; font-weight: 800; }
.la-btn { display: inline-flex; align-items: center; justify-content: center; background: var(--s-ink); color: #fff; border: none; border-radius: var(--s-r); padding: 13px 22px; font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .15s; box-sizing: border-box; }
.la-btn:hover { background: var(--s-accent); }
.la-btn-full { width: 100%; }
.la-btn-inline { display: inline-flex; width: auto; }
.la-btn:disabled { opacity: .5; cursor: not-allowed; }
.la-btn-sm { display: inline-flex; align-items: center; justify-content: center; background: var(--s-bg); color: var(--s-ink); border: 1.5px solid var(--s-border); border-radius: 8px; padding: 7px 14px; font-size: 12.5px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .15s; }
.la-btn-sm:hover { border-color: var(--s-ink); background: var(--s-white); }
.la-msg { font-size: 13px; min-height: 16px; margin-top: 8px; }
.la-ok  { color: var(--s-ok); }
.la-err { color: var(--s-err); }
.la-hint { font-size: 13px; color: var(--s-muted); margin: 12px 0 0; text-align: center; }
.la-hint a { color: var(--s-accent); font-weight: 700; text-decoration: none; }
.la-links { display: flex; justify-content: space-between; margin-top: 14px; }
.la-links a { font-size: 13px; color: var(--s-accent); font-weight: 700; text-decoration: none; }
.la-tab-link { color: var(--s-accent); font-weight: 700; }

/* ─── My Account ──────────────────────────────────────────── */
.acc-page { padding: 20px 16px 24px; }
.acc-head { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--s-border); margin-bottom: 20px; flex-wrap: wrap; }
.acc-avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,var(--s-accent),var(--s-accent2)); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: 0 0 52px; }
.acc-name { font-size: 20px; font-weight: 800; margin: 0 0 2px; }
.acc-email { font-size: 13px; color: var(--s-muted); margin: 0; }
.acc-logout-btn { margin-left: auto; background: var(--s-white); color: var(--s-ink); border: 1.5px solid var(--s-border); border-radius: var(--s-r); padding: 9px 16px; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .15s; }
.acc-logout-btn:hover { border-color: var(--s-err); color: var(--s-err); }
.acc-verify-bar { background: #fffbeb; border: 1px solid #fcd34d; border-radius: var(--s-r); padding: 12px 16px; margin-bottom: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13.5px; font-weight: 600; flex-wrap: wrap; }
.acc-tabs { display: flex; gap: 0; overflow-x: auto; border-bottom: 2px solid var(--s-border); margin-bottom: 20px; scrollbar-width: none; }
.acc-tabs::-webkit-scrollbar { display: none; }
.acc-tab { background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; padding: 10px 16px; font-size: 14px; font-weight: 700; color: var(--s-muted); cursor: pointer; white-space: nowrap; transition: all .15s; }
.acc-tab-on { color: var(--s-ink); border-bottom-color: var(--s-accent); }
.acc-panel { display: none; }
.acc-panel-on { display: block; }
.acc-empty { text-align: center; padding: 40px 20px; color: var(--s-muted); font-size: 14px; }
.acc-empty a { color: var(--s-accent); font-weight: 700; }
.acc-order { background: var(--s-white); border-radius: var(--s-r-lg); border: 1px solid var(--s-border); margin-bottom: 10px; overflow: hidden; box-shadow: var(--s-shadow); }
.acc-order-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; cursor: pointer; gap: 12px; transition: background .15s; }
.acc-order-row:hover { background: var(--s-bg); }
.acc-order-num { display: block; font-size: 14px; font-weight: 800; margin-bottom: 3px; }
.acc-order-date { display: block; font-size: 12px; color: var(--s-muted); }
.acc-order-right { text-align: right; flex: 0 0 auto; }
.acc-order-total { display: block; font-size: 15px; font-weight: 800; margin-top: 4px; }
.acc-badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 700; }
.acc-badge-processing { background: #dbeafe; color: #1d4ed8; }
.acc-badge-completed, .acc-badge-delivered { background: #d1fae5; color: #065f46; }
.acc-badge-cancelled { background: #fee2e2; color: #991b1b; }
.acc-badge-pending { background: #fef9c3; color: #854d0e; }
.acc-order-detail { padding: 0 16px 14px; border-top: 1px solid var(--s-border); }
.acc-detail-line { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #f3f4f6; font-size: 13px; color: #4b5563; }
.acc-detail-line:last-child { border-bottom: none; }
.acc-detail-line b { color: var(--s-ink); font-weight: 700; }
.acc-detail-total { display: flex; justify-content: space-between; padding: 10px 0 0; font-size: 15px; font-weight: 800; border-top: 1.5px solid var(--s-border); margin-top: 4px; }
.acc-dl-row { background: var(--s-white); border-radius: var(--s-r); border: 1px solid var(--s-border); padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.acc-dl-row b { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.acc-dl-row span { display: block; font-size: 12px; color: var(--s-muted); }
.acc-dl-wait { font-size: 12px; color: #9ca3af; }
.acc-profile-card { background: var(--s-white); border-radius: var(--s-r-lg); border: 1px solid var(--s-border); padding: 20px; box-shadow: var(--s-shadow); }
.acc-prow { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #f3f4f6; font-size: 14px; }
.acc-prow:last-child { border-bottom: none; }
.acc-prow span { color: var(--s-muted); }
.acc-prow b { color: var(--s-ink); font-weight: 700; text-align: right; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .ph-store-grid { grid-template-columns: repeat(var(--ph-products-tablet, 3), 1fr); }
  .ph-store-single-grid { grid-template-columns: 1fr; }
  .pkkt-cart-wrap { grid-template-columns: 1fr; }
  .pkkt-summary-card { position: static; }
  .pkkt-checkout-layout { grid-template-columns: 1fr; }
  .pkkt-checkout-summary { position: static; order: -1; }
  .pkkt-sticky-bar { display: flex; }
  .ph-side-cart { max-width: 100%; }
}
@media (max-width: 600px) {
  .ph-store-grid { grid-template-columns: repeat(var(--ph-products-mobile, 2), 1fr); gap: 10px; }
  .pkkt-field-row { grid-template-columns: 1fr; }
  .pkkt-confirmed-btns { flex-direction: column; }
  .pkkt-cart-row-total { margin-left: 0; }
  .acc-head { gap: 10px; }
  .acc-logout-btn { width: 100%; margin-left: 0; }
  .la-page, .acc-page { padding: 14px 12px 24px; }
  .pkkt-cart, .pkkt-checkout { padding: 14px 12px 100px; }
}

/* ─── Account form extras ──────────────────────────────────── */
.acc-section-title { font-size: 16px; font-weight: 800; margin: 0 0 18px; color: var(--s-ink); }
.acc-form-row { margin-bottom: 14px; }
.acc-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.pkkt-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
@media (max-width: 600px) { .acc-form-row-2 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   Policy Pages & About Us  (php-*)
   ═══════════════════════════════════════════════════════════ */

/* ── Page wrapper ── */
.php-page { width: 100%; }

/* ── Hero ── */
.php-hero {
  padding: 52px 24px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.php-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(255,255,255,.8) 0%, transparent 70%);
  pointer-events: none;
}
.php-hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 24px;
  font-size: 13px; font-weight: 700; letter-spacing: .3px;
  margin-bottom: 18px;
}
.php-hero-title {
  font-size: 34px; font-weight: 900;
  color: #111827; margin: 0 0 12px;
  letter-spacing: -.6px; line-height: 1.15;
}
.php-hero-meta {
  font-size: 13px; color: #9ca3af; margin: 0;
}

/* ── Body ── */
.php-body {
  max-width: 840px; margin: 0 auto;
  padding: 36px 20px 80px;
}

/* ── Content ── */
.php-content {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 40px 44px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 24px rgba(0,0,0,.04);
  margin-bottom: 32px;
}
.php-content h2 {
  font-size: 17px; font-weight: 800; color: #111827;
  margin: 32px 0 10px;
  display: flex; align-items: center; gap: 8px;
}
.php-content h2:first-child { margin-top: 0; }
.php-content h2::before {
  content: ''; display: inline-block;
  width: 4px; height: 18px; border-radius: 2px;
  background: currentColor; opacity: .4; flex: 0 0 4px;
}
.php-content h3 { font-size: 15px; font-weight: 700; color: #374151; margin: 20px 0 8px; }
.php-content p  { margin: 0 0 14px; line-height: 1.82; color: #4b5563; font-size: 15px; }
.php-content p:last-child { margin-bottom: 0; }
.php-content ul, .php-content ol { margin: 0 0 16px; padding: 0; list-style: none; }
.php-content ul li, .php-content ol li {
  padding: 7px 0 7px 26px; position: relative;
  border-bottom: 1px solid #f3f4f6; font-size: 15px;
  line-height: 1.7; color: #374151;
}
.php-content ul li:last-child, .php-content ol li:last-child { border-bottom: none; }
.php-content ul li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  font-size: 13px; font-weight: 800; color: #4f46e5;
}
.php-content ol { counter-reset: ol-cnt; }
.php-content ol li::before {
  content: counter(ol-cnt); counter-increment: ol-cnt;
  position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #4f46e5; color: #fff;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.php-content a  { color: #4f46e5; font-weight: 600; }
.php-content a:hover { color: #7c3aed; }
.php-content strong { color: #111827; }

/* ── Related policies ── */
.php-related { margin-top: 8px; }
.php-related-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: #9ca3af; margin: 0 0 12px;
}
.php-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.php-related-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid;
  border-radius: 12px; padding: 13px 16px;
  text-decoration: none; color: #374151;
  font-size: 13.5px; font-weight: 600;
  transition: all .2s;
}
.php-related-card:hover { background: var(--php-card-color, #4f46e5); color: #fff; border-color: var(--php-card-color, #4f46e5); }
.php-related-card:hover .php-related-icon { filter: none; }
.php-related-icon { font-size: 20px; flex: 0 0 28px; text-align: center; }
.php-related-card span:nth-child(2) { flex: 1; }
.php-related-arrow { width: 14px; height: 14px; flex: 0 0 14px; opacity: .4; }
.php-related-card:hover .php-related-arrow { opacity: 1; stroke: #fff; }

/* ── About Us ── */
.php-about-hero {
  background: linear-gradient(135deg, #312e81, #4f46e5);
  border-radius: 18px; padding: 48px 44px; margin-bottom: 28px;
  text-align: center; color: #fff;
}
.php-about-headline {
  font-size: 26px; font-weight: 900; margin: 0 0 14px;
  color: #fff; letter-spacing: -.4px;
}
.php-about-sub {
  font-size: 15px; color: rgba(255,255,255,.8);
  line-height: 1.75; margin: 0 0 24px; max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.php-about-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3);
  color: #fff; padding: 12px 28px; border-radius: 12px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: all .2s;
}
.php-about-cta:hover { background: #fff; color: #4f46e5; border-color: #fff; }
.php-about-features {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-bottom: 24px;
}
.php-feat-card {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 14px; padding: 24px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.php-feat-card:hover { box-shadow: 0 6px 20px rgba(79,70,229,.12); transform: translateY(-2px); }
.php-feat-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.php-feat-card h3 { font-size: 15px; font-weight: 800; color: #111827; margin: 0 0 6px; }
.php-feat-card p { font-size: 13.5px; color: #6b7280; line-height: 1.6; margin: 0; }
.php-about-contact {
  text-align: center; padding: 20px;
  background: #f9fafb; border-radius: 12px;
  font-size: 14px; color: #6b7280;
}
.php-about-contact a { color: #4f46e5; font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .php-hero { padding: 36px 16px 30px; }
  .php-hero-title { font-size: 26px; }
  .php-body { padding: 20px 12px 60px; }
  .php-content { padding: 22px 18px; border-radius: 14px; }
  .php-related-grid { grid-template-columns: 1fr; }
  .php-about-hero { padding: 30px 20px; border-radius: 14px; }
  .php-about-headline { font-size: 21px; }
  .php-about-features { grid-template-columns: 1fr; }
}

/* ── Contact Us page ───────────────────────────────────────── */
.php-contact-grid { display: grid; grid-template-columns: 300px 1fr; gap: 24px; align-items: start; }
.php-contact-info  { display: flex; flex-direction: column; gap: 14px; }
.php-contact-card  {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  padding: 20px 18px; box-shadow: 0 1px 4px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
}
.php-contact-card:hover { box-shadow: 0 6px 18px rgba(217,119,6,.1); transform: translateY(-2px); }
.php-contact-card-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.php-contact-card h3 { font-size: 14px; font-weight: 800; color: #111827; margin: 0 0 6px; }
.php-contact-card p  { font-size: 13.5px; color: #4b5563; margin: 0 0 6px; line-height: 1.6; }
.php-contact-card a  { color: #d97706; font-weight: 700; text-decoration: none; }
.php-contact-note { font-size: 11.5px; color: #9ca3af; font-style: italic; }

/* Form */
.php-contact-form-wrap { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 32px; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.php-cform-title { font-size: 18px; font-weight: 800; color: #111827; margin: 0 0 22px; }
.php-cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.php-cfield { display: flex; flex-direction: column; gap: 5px; margin-bottom: 16px; }
.php-cfield-label { font-size: 11.5px; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: .3px; }
.php-cfield-input {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb;
  border-radius: 10px; font-size: 14px; color: #111827;
  background: #fff; box-sizing: border-box; outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.php-cfield-input:focus { border-color: #d97706; box-shadow: 0 0 0 3px rgba(217,119,6,.1); }
.php-cfield-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.php-cfield-textarea { resize: vertical; min-height: 120px; }
.php-cform-err { font-size: 13px; color: #dc2626; background: #fef2f2; border-radius: 8px; padding: 10px 14px; margin-bottom: 14px; }
.php-cform-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 24px; background: #d97706; color: #fff;
  border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .18s;
}
.php-cform-btn:hover { background: #b45309; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(217,119,6,.35); }
.php-cform-btn:disabled { opacity: .6; transform: none; cursor: not-allowed; }
.php-contact-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 24px;
}
.php-contact-success span { font-size: 56px; display: block; margin-bottom: 16px; }
.php-contact-success h3 { font-size: 22px; font-weight: 800; margin: 0 0 8px; }
.php-contact-success p { color: #6b7280; font-size: 14px; margin: 0; }

/* Responsive */
@media (max-width: 860px) { .php-contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .php-cform-row { grid-template-columns: 1fr; } .php-contact-form-wrap { padding: 20px 16px; } }

/* ═══════════════════════════════════════════════════════════
   Login / Auth  (li-*)  — Premium design with fixed icon layout
   ═══════════════════════════════════════════════════════════ */
.li-wrap { width: 100%; padding: 20px 16px 80px; }
.li-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.1); border: 1px solid #e5e7eb; }
.li-brand { background: linear-gradient(145deg,#312e81,#4f46e5,#7c3aed); padding: 48px 40px; display: flex; align-items: center; justify-content: center; }
.li-brand-inner { color: #fff; max-width: 340px; }
.li-brand-logo { height: 44px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 32px; display: block; }
.li-brand-logo-text { font-size: 24px; font-weight: 900; color: #fff; margin-bottom: 32px; }
.li-brand-title { font-size: 28px; font-weight: 800; margin: 0 0 12px; color: #fff; line-height: 1.2; }
.li-brand-sub { font-size: 14.5px; color: rgba(255,255,255,.75); line-height: 1.7; margin: 0 0 32px; }
.li-brand-features { display: flex; flex-direction: column; gap: 14px; }
.li-brand-feat { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600; }
.li-feat-icon { font-size: 18px; width: 36px; height: 36px; background: rgba(255,255,255,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: 0 0 36px; }
.li-form-panel { padding: 40px 40px 32px; display: flex; flex-direction: column; justify-content: center; }
.li-tabs { display: flex; background: #f0f0f3; border-radius: 12px; padding: 4px; margin-bottom: 28px; }
.li-tab { flex: 1; background: transparent; border: none; padding: 10px; border-radius: 9px; font-size: 14px; font-weight: 700; color: #888; cursor: pointer; transition: all .2s; }
.la-tab-on.li-tab { background: #fff; color: #111827; box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.li-title { font-size: 22px; font-weight: 800; margin: 0 0 6px; color: #111827; }
.li-sub { font-size: 13.5px; color: #6b7280; margin: 0 0 24px; }
.li-body-title { font-size: 16px; font-weight: 800; color: #111827; margin: 0 0 4px; }
.li-logo-row { margin-bottom: 20px; }
.li-logo-img { height: 36px; object-fit: contain; }
.li-field { margin-bottom: 16px; }
.li-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0; }
.li-label { display: block; font-size: 11.5px; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 6px; }
.li-label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.li-link-small { font-size: 12px; color: #4f46e5; font-weight: 600; text-decoration: none; }

/* Input with icon — key fix: sufficient padding so text never overlaps icon */
.li-input-wrap { position: relative; display: block; }
.li-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9ca3af;
  pointer-events: none;
  flex-shrink: 0;
  display: block;
}
.li-input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  color: #111827;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  display: block;
}
.li-input:focus { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
/* Icon padding — 14px left edge + 16px icon + 8px gap = 38px minimum; use 46px for safety */
.li-input-icon-pad { padding-left: 46px !important; }
.li-input-otp { font-size: 26px; letter-spacing: 12px; text-align: center; font-weight: 800; }
.li-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px;
  background: #4f46e5; color: #fff;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .18s;
  letter-spacing: .2px;
}
.li-btn:hover { background: #7c3aed; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(79,70,229,.35); }
.li-btn:disabled { opacity: .6; transform: none; cursor: not-allowed; }
.li-btn-ghost {
  width: 100%; padding: 12px; background: transparent;
  color: #6b7280; border: 1.5px solid #e5e7eb;
  border-radius: 12px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .15s;
}
.li-btn-ghost:hover { border-color: #4f46e5; color: #4f46e5; background: #eef2ff; }
.li-btn-inline { display: inline-flex; width: auto; padding: 12px 22px; }
.li-divider { display: flex; align-items: center; gap: 12px; margin: 14px 0; color: #6b7280; font-size: 13px; }
.li-divider::before, .li-divider::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }
.li-msg { font-size: 13px; border-radius: 8px; padding: 9px 12px; margin-bottom: 12px; font-weight: 600; }
.li-err { background: #fef2f2; color: #dc2626; display: block; }
.li-ok  { background: #f0fdf4; color: #059669; display: block; }
.li-alert { border-radius: 10px; padding: 12px 14px; font-size: 13.5px; margin-bottom: 20px; font-weight: 600; }
.li-alert-ok  { background: #d1fae5; color: #065f46; }
.li-alert-err { background: #fee2e2; color: #991b1b; }
.li-hint { font-size: 13px; color: #9ca3af; margin: 12px 0 0; text-align: center; }
.li-hint a { color: #4f46e5; font-weight: 700; text-decoration: none; }
.li-links { display: flex; justify-content: space-between; margin-top: 14px; }
.li-links a { font-size: 13px; color: #4f46e5; font-weight: 700; text-decoration: none; }
.li-switch-text { text-align: center; font-size: 13px; color: #9ca3af; margin-top: 20px; }
.li-link { color: #4f46e5; font-weight: 700; text-decoration: none; }
.li-tab-link { color: #4f46e5; font-weight: 700; }

/* la-* auth aliases used in JS */
.la-panel { display: block; }

@media (max-width: 860px) {
  .li-split { grid-template-columns: 1fr; }
  .li-brand { display: none; }
  .li-form-panel { padding: 28px 24px; }
  .li-field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .li-form-panel { padding: 22px 18px; }
  .li-wrap { padding: 16px 12px 80px; }
}

/* ═══════════════════════════════════════════════════════════
   Shop Page — Filter, Sort, Grid, Pagination (ph-shop-*)
   ═══════════════════════════════════════════════════════════ */

/* Page wrapper */
.ph-shop-page { width:100%; padding:0; }

/* ── Topbar ── */
.ph-shop-topbar { display:flex; align-items:center; gap:12px; padding:16px 20px 0; flex-wrap:wrap; }
.ph-shop-search-form { flex:1; min-width:220px; }
.ph-shop-search-wrap { display:flex; align-items:center; background:#fff; border:1.5px solid #e5e7eb; border-radius:12px; overflow:hidden; }
.ph-shop-search-icon { width:18px;height:18px;color:#9ca3af;margin:0 10px;flex:0 0 18px; }
.ph-shop-search-input { flex:1;border:none;outline:none;font-size:14px;padding:11px 4px;background:transparent;color:#111827; }
.ph-shop-search-btn { background:#4f46e5;color:#fff;border:none;padding:11px 18px;font-size:13px;font-weight:700;cursor:pointer;transition:background .15s; }
.ph-shop-search-btn:hover { background:#7c3aed; }
.ph-shop-topbar-right { display:flex; align-items:center; gap:10px; }
.ph-shop-sort-select { padding:10px 14px;border:1.5px solid #e5e7eb;border-radius:10px;font-size:13.5px;color:#374151;background:#fff;cursor:pointer;outline:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;padding-right:32px; }
.ph-shop-filter-toggle { display:flex;align-items:center;gap:6px;padding:10px 16px;border:1.5px solid #e5e7eb;border-radius:10px;background:#fff;font-size:13.5px;font-weight:600;color:#374151;cursor:pointer;transition:all .15s; }
.ph-shop-filter-toggle:hover { border-color:#4f46e5;color:#4f46e5; }

/* ── Category pills ── */
.ph-shop-cats { display:flex;flex-wrap:wrap;gap:8px;padding:14px 20px 0; }
.ph-shop-cat-pill { padding:7px 16px;border:1.5px solid #e5e7eb;border-radius:24px;font-size:13px;font-weight:600;color:#374151;text-decoration:none;transition:all .15s;background:#fff; }
.ph-shop-cat-pill:hover { border-color:#4f46e5;color:#4f46e5; }
.ph-shop-cat-pill.active { background:#4f46e5;color:#fff;border-color:#4f46e5; }

/* ── Layout ── */
.ph-shop-layout { display:flex;gap:0;align-items:flex-start;padding:16px 20px 60px;position:relative; }

/* ── Sidebar ── */
.ph-shop-sidebar {
  width:240px;flex:0 0 240px;background:#fff;border:1px solid #e5e7eb;
  border-radius:14px;padding:0;margin-right:20px;position:sticky;top:80px;
  max-height:calc(100vh - 100px);overflow-y:auto;
  transition:transform .3s;
}
.ph-shop-sidebar-inner { padding:0 0 16px; }
.ph-shop-sidebar-head { display:flex;align-items:center;justify-content:space-between;padding:16px 18px 14px;border-bottom:1px solid #f3f4f6;font-weight:800;font-size:15px;color:#111827; }
.ph-shop-sidebar-close { display:none;background:none;border:none;font-size:22px;cursor:pointer;color:#6b7280;line-height:1;padding:0 4px; }
.ph-shop-filter-group { padding:16px 18px 0; }
.ph-shop-filter-title { font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:#9ca3af;margin:0 0 10px; }
.ph-shop-filter-options { display:flex;flex-direction:column;gap:8px; }
.ph-shop-filter-opt { display:flex;align-items:center;gap:8px;cursor:pointer;font-size:13.5px;color:#374151; }
.ph-shop-filter-opt input[type="radio"] { accent-color:#4f46e5;width:15px;height:15px;flex:0 0 15px; }
.ph-shop-price-range { display:flex;flex-direction:column;gap:10px; }
.ph-shop-price-labels { display:flex;justify-content:space-between;font-size:13px;font-weight:600;color:#374151; }
.ph-price-slider { width:100%;accent-color:#4f46e5;cursor:pointer; }
.ph-shop-apply-price-btn { background:#4f46e5;color:#fff;border:none;border-radius:8px;padding:9px;font-size:13px;font-weight:700;cursor:pointer;width:100%;margin-top:2px;transition:background .15s; }
.ph-shop-apply-price-btn:hover { background:#7c3aed; }
.ph-shop-clear-btn { display:block;text-align:center;margin:16px 18px 0;padding:9px;border:1.5px solid #fca5a5;border-radius:8px;color:#dc2626;font-size:13px;font-weight:600;text-decoration:none;transition:all .15s; }
.ph-shop-clear-btn:hover { background:#fef2f2; }
.ph-shop-overlay { display:none;position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:999;cursor:pointer; }

/* ── Main content ── */
.ph-shop-main { flex:1;min-width:0; }
.ph-shop-results-bar { display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;font-size:13.5px;color:#6b7280; }
.ph-shop-results-count strong { color:#111827; }
.ph-shop-clear-tag { color:#dc2626;font-weight:600;font-size:13px;text-decoration:none; }
.ph-shop-empty { display:flex;flex-direction:column;align-items:center;padding:60px 20px;gap:12px;color:#9ca3af; }
.ph-shop-empty a { color:#4f46e5;font-weight:600;text-decoration:none; }
.ph-shop-grid { gap:14px; }

/* ── Pagination ── */
.ph-shop-pagination { display:flex;align-items:center;justify-content:center;gap:6px;margin-top:32px;flex-wrap:wrap; }
.ph-shop-page-btn { padding:9px 15px;border:1.5px solid #e5e7eb;border-radius:8px;font-size:13.5px;font-weight:600;color:#374151;text-decoration:none;background:#fff;transition:all .15s; }
.ph-shop-page-btn:hover { border-color:#4f46e5;color:#4f46e5; }
.ph-shop-page-btn.active { background:#4f46e5;color:#fff;border-color:#4f46e5; }
.ph-shop-page-dots { color:#9ca3af;padding:0 4px; }

/* ── Tablet (768–1023px) ── */
@media (max-width:1023px) {
  .ph-shop-sidebar {
    position:fixed;top:0;left:0;height:100dvh;width:280px;
    border-radius:0;z-index:1000;transform:translateX(-100%);
    max-height:100dvh;
  }
  .ph-shop-sidebar.open { transform:translateX(0); }
  .ph-shop-sidebar-close { display:block; }
  .ph-shop-layout { padding:14px 16px 60px; }
  .ph-shop-topbar { padding:14px 16px 0; }
  .ph-shop-cats { padding:12px 16px 0; }
}

/* ── Mobile (< 600px) ── */
@media (max-width:600px) {
  .ph-shop-topbar { flex-direction:column;align-items:stretch;gap:8px; }
  .ph-shop-topbar-right { justify-content:space-between; }
  .ph-shop-sort-select { flex:1; }
  .ph-shop-layout { padding:12px 12px 80px; }
  .ph-shop-cats { padding:10px 12px 0;gap:6px; }
  .ph-shop-cat-pill { font-size:12px;padding:5px 12px; }
  .ph-shop-results-bar { flex-direction:column;align-items:flex-start;gap:4px; }
  .ph-shop-pagination { gap:4px; }
  .ph-shop-page-btn { padding:8px 11px;font-size:12.5px; }
}

/* ─── Featured Products Section (ph-featured-*) ─────────────── */
.ph-featured-section { margin:0 0 32px; }
.ph-featured-header { display:flex;align-items:center;justify-content:space-between;margin-bottom:16px; }
.ph-featured-title { font-size:20px;font-weight:900;color:#111827;margin:0;display:flex;align-items:center;gap:8px; }
.ph-featured-star { font-size:18px; }
.ph-featured-view-all { font-size:13px;font-weight:700;color:#4f46e5;text-decoration:none; }
.ph-featured-view-all:hover { color:#7c3aed; }

/* Carousel style */
.ph-featured-carousel { position:relative;display:flex;align-items:center;gap:8px; }
.ph-featured-track { display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;flex:1;padding-bottom:4px; }
.ph-featured-track::-webkit-scrollbar { display:none; }
.ph-featured-track .ph-store-card { flex:0 0 220px;scroll-snap-align:start; }
.ph-feat-scroll-btn { background:#fff;border:1.5px solid #e5e7eb;width:36px;height:36px;border-radius:50%;font-size:20px;cursor:pointer;display:flex;align-items:center;justify-content:center;flex:0 0 36px;transition:all .15s;color:#374151; }
.ph-feat-scroll-btn:hover { border-color:#4f46e5;color:#4f46e5; }

/* Featured badge on product card */
.ph-store-card.is-featured::before { content:"⭐ Featured";position:absolute;top:8px;left:8px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;font-size:10px;font-weight:800;padding:3px 8px;border-radius:20px;z-index:2;letter-spacing:.3px; }
.ph-store-card.is-featured { border-color:#fcd34d; }

/* Shop section divider */
.ph-shop-section-divider { border:none;border-top:1px solid #f3f4f6;margin:0 0 24px; }

/* ── Deal Card Enhancements ─────────────────────────────────── */
.ph-card-badges { position:absolute; top:8px; left:8px; display:flex; flex-direction:column; gap:4px; z-index:2; }
.ph-badge-off { background:#e11d48; color:#fff; font-size:11px; font-weight:800; padding:3px 8px; border-radius:20px; letter-spacing:.3px; }
.ph-badge-custom { color:#fff; font-size:11px; font-weight:800; padding:3px 8px; border-radius:20px; }
.ph-badge-lg { font-size:13px; padding:5px 12px; }
.ph-store-product-img { position:relative; }

.ph-card-store { display:flex; align-items:center; gap:5px; margin-bottom:4px; }
.ph-card-store-logo { width:18px; height:18px; object-fit:contain; border-radius:3px; }
.ph-card-store-name { font-size:11px; font-weight:800; letter-spacing:.5px; color:#7c3aed; text-transform:uppercase; }

.ph-store-product-title-link { text-decoration:none; color:inherit; }
.ph-store-product-body { padding:10px 12px 12px; }
.ph-store-product-title { font-size:13.5px; font-weight:600; color:#111827; margin:0 0 6px; line-height:1.4;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.ph-price-mrp { font-size:11.5px; color:#9ca3af; display:block; margin-bottom:1px; }
.ph-price-mrp del { color:#9ca3af; }
.ph-price-current { font-size:20px; font-weight:900; color:#111827; }

.ph-card-engagement { display:flex; flex-wrap:wrap; gap:5px; margin:6px 0 4px; }
.ph-eng-pill { display:inline-flex; align-items:center; gap:4px; font-size:11.5px; font-weight:700; padding:3px 9px; border-radius:20px; transition:background .3s; }
.ph-eng-view  { background:#fdf2f8; color:#be185d; }
.ph-eng-bought{ background:#fff7ed; color:#c2410c; }
.ph-eng-dot { width:7px; height:7px; border-radius:50%; flex-shrink:0; }
.ph-eng-dot-view { background:#be185d; animation:ph-pulse-dot 2s ease-in-out infinite; }
@keyframes ph-pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.65)} }
@keyframes ph-num-flash { 0%{color:inherit} 35%{color:#fff;background:rgba(0,0,0,.13);border-radius:3px;padding:0 3px;margin:0 -3px} 100%{color:inherit} }
.ph-eng-num.ph-ticking { animation:ph-num-flash .55s ease forwards; }
.ph-single-engagement { margin:12px 0; }
.ph-single-engagement .ph-eng-pill { font-size:13px; padding:5px 14px; }

/* card-actions + card-visit-btn replaced below */
.ph-card-share-btn { background:#f3f4f6; border:none; border-radius:10px; width:38px; height:38px;
  display:flex; align-items:center; justify-content:center; cursor:pointer; color:#6b7280; transition:all .15s; flex-shrink:0; }
.ph-card-share-btn:hover { background:#e0e7ff; color:#4f46e5; }

/* ── Single Product Detail Enhancements ─────────────────────── */
.ph-single-store { display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.ph-single-store-logo { width:24px; height:24px; object-fit:contain; border-radius:4px; }
.ph-single-store-name { font-size:13px; font-weight:800; letter-spacing:.5px; color:#7c3aed; text-transform:uppercase; }
.ph-single-badges { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:10px; }
.ph-single-title { font-size:22px; font-weight:800; color:#111827; margin:0 0 12px; line-height:1.3; }
.ph-single-price-row { display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; margin-bottom:8px; }
.ph-single-mrp { font-size:14px; color:#9ca3af; }
.ph-single-mrp del { color:#9ca3af; }
.ph-single-price { font-size:30px; font-weight:900; color:#111827; }
.ph-single-savings { display:inline-flex; background:#d1fae5; color:#065f46; font-size:13px; font-weight:700;
  padding:5px 14px; border-radius:20px; margin-bottom:10px; }
.ph-single-expiry { background:#fef9c3; color:#92400e; font-size:13px; padding:7px 14px;
  border-radius:8px; margin-bottom:10px; display:inline-block; }
.ph-single-engagement { margin:10px 0; }
.ph-single-actions { display:flex; gap:10px; align-items:center; margin:16px 0; }
.ph-single-visit-btn { flex:1; background:linear-gradient(135deg,#4f46e5,#a855f7); color:#fff; text-align:center;
  padding:14px; border-radius:12px; font-size:15px; font-weight:800; text-decoration:none;
  display:block; transition:opacity .15s; }
.ph-single-visit-btn:hover { opacity:.9; color:#fff; }
.ph-single-share-btn { width:48px; height:48px; border-radius:12px; }

/* ── Product Quickview Modal ─────────────────────────────────── */
.ph-qv-trigger { position:relative; overflow:hidden; }
.ph-card-qv-hint {
  position:absolute; bottom:0; left:0; right:0;
  background:rgba(0,0,0,.55); color:#fff; text-align:center;
  font-size:12px; font-weight:700; padding:7px;
  transform:translateY(100%); transition:transform .2s;
}
.ph-qv-trigger:hover .ph-card-qv-hint { transform:translateY(0); }

/* Modal box */
.ph-qv-box {
  background:#fff; border-radius:18px; width:100%;
  max-width:880px; max-height:90dvh; overflow:hidden;
  display:flex; flex-direction:column; position:relative;
  box-shadow:0 24px 64px rgba(0,0,0,.3);
  animation:ph-qv-in .22s cubic-bezier(.34,1.3,.64,1);
}
@keyframes ph-qv-in {
  from { opacity:0; transform:scale(.93); }
  to   { opacity:1; transform:scale(1); }
}
.ph-qv-close {
  position:absolute; top:12px; right:14px; z-index:10;
  width:34px; height:34px; border-radius:50%;
  background:rgba(0,0,0,.08); border:none; font-size:20px;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  color:#374151; transition:background .15s;
}
.ph-qv-close:hover { background:rgba(0,0,0,.15); }

/* Two-column layout */
.ph-qv-layout {
  display:grid; grid-template-columns:45% 55%;
  overflow-y:auto; max-height:90dvh;
}
.ph-qv-img-col {
  background:#f8f9fb; display:flex; align-items:center;
  justify-content:center; padding:24px; min-height:320px;
}
.ph-qv-img-wrap img {
  max-width:100%; max-height:440px; object-fit:contain;
  border-radius:10px;
}
.ph-qv-detail-col {
  padding:28px 24px 24px; overflow-y:auto;
  display:flex; flex-direction:column; gap:10px;
}

/* Store */
.ph-qv-store { display:flex; align-items:center; gap:6px; }
.ph-qv-store-logo { width:22px; height:22px; object-fit:contain; border-radius:3px; }
.ph-qv-store-name { font-size:12px; font-weight:800; letter-spacing:.6px; color:#7c3aed; text-transform:uppercase; }

/* Badges */
.ph-qv-badges { display:flex; flex-wrap:wrap; gap:6px; }

/* Title */
.ph-qv-title { font-size:19px; font-weight:800; color:#111827; line-height:1.35; margin:0; }

/* Price */
.ph-qv-price-row { display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; }
.ph-qv-mrp { font-size:13px; color:#9ca3af; }
.ph-qv-mrp del { color:#9ca3af; }
.ph-qv-price { font-size:28px; font-weight:900; color:#111827; }
.ph-qv-savings { display:inline-flex; background:#d1fae5; color:#065f46; font-size:13px; font-weight:700; padding:5px 14px; border-radius:20px; }
.ph-qv-expiry { background:#fef9c3; color:#92400e; font-size:12.5px; padding:6px 14px; border-radius:8px; }
.ph-qv-desc { font-size:13.5px; color:#6b7280; line-height:1.6; }

/* Actions */
.ph-qv-actions { display:flex; gap:10px; margin-top:auto; padding-top:12px; }
.ph-qv-visit-btn {
  flex:1; background:linear-gradient(135deg,#4f46e5,#a855f7); color:#fff;
  text-align:center; padding:14px; border-radius:12px;
  font-size:15px; font-weight:800; text-decoration:none;
  display:block; transition:opacity .15s;
}
.ph-qv-visit-btn:hover { opacity:.9; color:#fff; }

/* Mobile: stack vertically */
@media(max-width:640px) {
  .ph-qv-box { border-radius:18px 18px 0 0; max-height:95dvh; border-radius:16px; }
  .ph-qv-layout { grid-template-columns:1fr; }
  .ph-qv-img-col { min-height:200px; padding:16px; }
  .ph-qv-img-wrap img { max-height:220px; }
  .ph-qv-detail-col { padding:16px; }
  .ph-qv-title { font-size:16px; }
  .ph-qv-price { font-size:22px; }
}
/* Tablet */
@media(min-width:641px) and (max-width:900px) {
  .ph-qv-layout { grid-template-columns:40% 60%; }
}

/* ── Wishlist button ── */
.ph-wishlist-btn { position:absolute;top:8px;right:8px;background:rgba(255,255,255,.9);border:none;border-radius:50%;width:32px;height:32px;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:16px;z-index:2;transition:transform .15s; }
.ph-wishlist-btn:hover { transform:scale(1.15); }
.ph-wishlist-btn.ph-wishlisted { color:#e11d48; }

/* ── Live Search ── */
.ph-live-search-wrap { position:relative; }
.ph-live-search-input { width:100%;padding:10px 40px 10px 14px;border:1.5px solid #e5e7eb;border-radius:10px;font-size:14px;outline:none; }
.ph-live-search-input:focus { border-color:#4f46e5; }
.ph-search-icon { position:absolute;right:12px;top:50%;transform:translateY(-50%);width:16px;height:16px;color:#9ca3af; }
.ph-live-search-results { position:absolute;top:calc(100% + 6px);left:0;right:0;background:#fff;border:1px solid #e5e7eb;border-radius:10px;box-shadow:0 8px 24px rgba(0,0,0,.12);z-index:500;display:none;max-height:360px;overflow-y:auto; }
.ph-search-result-list { list-style:none;margin:0;padding:6px; }
.ph-search-result-item { display:flex;align-items:center;gap:10px;padding:8px 10px;border-radius:8px;text-decoration:none;color:#111;transition:background .12s; }
.ph-search-result-item:hover { background:#f3f4f6; }
.ph-search-result-item img { width:40px;height:40px;object-fit:cover;border-radius:6px;flex-shrink:0; }
.ph-sr-info { display:flex;flex-direction:column; }
.ph-sr-title { font-size:13.5px;font-weight:600; }
.ph-sr-price { font-size:12px;color:#059669;font-weight:700; }

/* ── Recently Viewed ── */
.ph-recently-viewed { padding:24px 0; }
.ph-rv-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:10px;margin-top:12px; }
.ph-rv-card { display:flex;flex-direction:column;text-decoration:none;color:inherit;background:#fff;border:1px solid #e5e7eb;border-radius:10px;overflow:hidden;transition:transform .15s; }
.ph-rv-card:hover { transform:translateY(-2px); }
.ph-rv-card img { width:100%;aspect-ratio:1;object-fit:cover; }
.ph-rv-info { padding:6px 8px; }
.ph-rv-title { font-size:12px;font-weight:600;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden; }
.ph-rv-price { font-size:12px;color:#059669;font-weight:700;margin-top:2px;display:block; }

/* ── Skeleton loaders ── */
.ph-skeleton { background:linear-gradient(90deg,#f3f4f6 25%,#e5e7eb 50%,#f3f4f6 75%);background-size:200% 100%;animation:ph-shimmer 1.4s infinite;border-radius:6px; }
@keyframes ph-shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.ph-skeleton-card { background:#fff;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden;padding-bottom:12px; }
.ph-skeleton-img { height:180px;border-radius:0; }
.ph-skeleton-text { height:14px;margin:10px 10px 6px;border-radius:4px; }
.ph-skeleton-short { width:60%;margin-top:0; }

/* ── Breadcrumbs ── */
.ph-breadcrumbs { padding:10px 0;margin-bottom:8px; }
.ph-breadcrumb-list { list-style:none;display:flex;flex-wrap:wrap;gap:4px;padding:0;margin:0;font-size:12.5px; }
.ph-breadcrumb-item { display:flex;align-items:center;color:#9ca3af; }
.ph-breadcrumb-item a { color:#6b7280;text-decoration:none; }
.ph-breadcrumb-item a:hover { color:#4f46e5; }
.ph-breadcrumb-sep { margin-left:4px;color:#d1d5db; }
.ph-breadcrumb-item span { color:#374151;font-weight:600; }

/* ── Reviews ── */
.ph-reviews { padding:24px 0;border-top:1px solid #f3f4f6;margin-top:24px; }
.ph-reviews-header { display:flex;align-items:center;justify-content:space-between;margin-bottom:16px;flex-wrap:wrap;gap:8px; }
.ph-reviews-title { font-size:18px;font-weight:800;margin:0; }
.ph-reviews-avg { display:flex;align-items:center;gap:6px;font-size:13.5px;font-weight:600; }
.ph-stars { color:#f59e0b;font-size:16px; }
.ph-stars-lg { font-size:20px; }
.ph-reviews-empty { color:#9ca3af;font-style:italic; }
.ph-review-card { background:#f9fafb;border:1px solid #e5e7eb;border-radius:10px;padding:14px;margin-bottom:10px; }
.ph-review-top { display:flex;align-items:center;gap:8px;margin-bottom:6px;flex-wrap:wrap; }
.ph-review-date { font-size:12px;color:#9ca3af;margin-left:auto; }
.ph-review-title { font-weight:700;margin:4px 0; }
.ph-review-body { font-size:13.5px;color:#374151;margin:0; }
.ph-review-form-wrap { border-top:1px solid #f3f4f6;margin-top:20px;padding-top:16px; }
.ph-review-form { display:flex;flex-direction:column;gap:10px;margin-top:10px; }
.ph-review-input { padding:10px 12px;border:1.5px solid #e5e7eb;border-radius:8px;font-size:13.5px;outline:none;font-family:inherit; }
.ph-review-input:focus { border-color:#4f46e5; }
.ph-star-picker { display:flex;gap:4px;font-size:24px;cursor:pointer;color:#f59e0b; }
.ph-star-picker span:hover ~ span { color:#d1d5db; }
.ph-review-stars-pick { display:flex;align-items:center;gap:10px; }
.ph-review-submit-btn { background:linear-gradient(135deg,#4f46e5,#7c3aed);color:#fff;border:none;padding:12px;border-radius:10px;font-size:14px;font-weight:700;cursor:pointer; }
.ph-review-msg { font-size:13px;font-weight:600; }

/* ── Variants ── */
.ph-variants { margin:12px 0; }
.ph-variant-group { margin-bottom:12px; }
.ph-variant-group-label { font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.4px;color:#6b7280;display:block;margin-bottom:6px; }
.ph-variant-options { display:flex;flex-wrap:wrap;gap:6px; }
.ph-variant-btn { padding:6px 14px;border:1.5px solid #e5e7eb;border-radius:8px;font-size:13px;cursor:pointer;background:#fff;transition:all .15s; }
.ph-variant-btn.selected { border-color:#4f46e5;background:#4f46e5;color:#fff; }
.ph-variant-btn:disabled { opacity:.4;cursor:not-allowed; }
.ph-variant-stock { font-size:12.5px;font-weight:600;color:#059669;margin-top:4px; }
.ph-variant-stock.out { color:#dc2626; }

/* ── Order tracking ── */
.ph-tracking-page { max-width:600px;margin:0 auto;padding:32px 16px; }
.ph-tracking-title { font-size:22px;font-weight:900;margin-bottom:20px; }
.ph-tracking-form { display:flex;flex-direction:column;gap:12px; }
.ph-tracking-fields { display:flex;flex-direction:column;gap:10px; }
.ph-tracking-input { padding:12px 14px;border:1.5px solid #e5e7eb;border-radius:10px;font-size:14px;outline:none; }
.ph-tracking-input:focus { border-color:#4f46e5; }
.ph-tracking-btn { background:#4f46e5;color:#fff;border:none;padding:13px;border-radius:10px;font-size:14px;font-weight:700;cursor:pointer; }
.ph-tracking-error { background:#fef2f2;color:#dc2626;padding:10px;border-radius:8px;font-size:13.5px; }
.ph-tracking-card { border:1.5px solid #e5e7eb;border-radius:14px;padding:20px;margin-top:16px; }
.ph-tracking-header { display:flex;justify-content:space-between;margin-bottom:20px;flex-wrap:wrap;gap:6px;font-size:13.5px; }
.ph-tracking-steps { display:flex;align-items:center;margin-bottom:16px; }
.ph-tracking-step { display:flex;flex-direction:column;align-items:center;gap:4px;flex:0 0 auto; }
.ph-tracking-step-icon { font-size:20px; }
.ph-tracking-step-label { font-size:11px;font-weight:600;color:#9ca3af;text-align:center; }
.ph-tracking-step.done .ph-tracking-step-label { color:#059669; }
.ph-tracking-line { flex:1;height:2px;background:#e5e7eb;margin:0 4px;min-width:24px; }
.ph-tracking-meta { display:flex;gap:16px;font-size:13px;color:#6b7280;margin-bottom:10px; }
.ph-tracking-notes { background:#f9fafb;border-radius:8px;padding:10px;font-size:13px;color:#374151; }
.ph-tracking-back { display:inline-block;margin-top:14px;color:#4f46e5;font-size:13px;text-decoration:none; }

/* ── Wallet panel ── */
.ph-wallet-panel { padding:8px 0; }
.ph-wallet-cards { display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:20px; }
.ph-wallet-card { border-radius:14px;padding:18px;display:flex;flex-direction:column;gap:4px; }
.ph-wallet-credits { background:linear-gradient(135deg,#4f46e5,#7c3aed);color:#fff; }
.ph-wallet-points { background:linear-gradient(135deg,#d97706,#f59e0b);color:#fff; }
.ph-wallet-icon { font-size:24px; }
.ph-wallet-label { font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;opacity:.8; }
.ph-wallet-amount { font-size:22px;font-weight:900; }
.ph-wallet-sub { font-size:11px;opacity:.75; }
.ph-wallet-hist-title { font-size:14px;font-weight:800;margin:0 0 10px; }
.ph-wallet-history { display:flex;flex-direction:column;gap:0; }
.ph-wallet-txn { display:flex;align-items:center;gap:8px;padding:8px 0;border-bottom:1px solid #f3f4f6;font-size:13px; }
.ph-wallet-txn-desc { flex:1;color:#374151; }
.ph-wallet-txn-date { font-size:11px;color:#9ca3af; }
.ph-wallet-txn-amt { font-weight:700; }
.ph-wallet-pos { color:#059669; }
.ph-wallet-neg { color:#dc2626; }

/* ── Address book ── */
.ph-address-book { display:grid;grid-template-columns:1fr;gap:16px; }
.ph-addr-list { display:flex;flex-direction:column;gap:10px; }
.ph-addr-card { border:1.5px solid #e5e7eb;border-radius:12px;padding:14px;font-size:13.5px; }
.ph-addr-default { border-color:#4f46e5;background:#f5f3ff; }
.ph-addr-label { font-weight:800;font-size:13px;margin-bottom:6px;display:flex;align-items:center;gap:6px; }
.ph-addr-badge { background:#4f46e5;color:#fff;font-size:10px;padding:2px 7px;border-radius:12px; }
.ph-addr-actions { display:flex;gap:8px;margin-top:8px; }
.ph-addr-actions a,.ph-addr-actions button { font-size:12px;color:#4f46e5;background:none;border:none;cursor:pointer;text-decoration:underline; }

/* ── Import panel ── */
.ph-import-panel { background:#fff;border:1px solid #e5e7eb;border-radius:10px;padding:20px;margin:16px 0; }
.ph-bulk-price-form { display:flex;gap:10px;align-items:center;flex-wrap:wrap;margin-top:8px; }
.ph-bulk-price-form select,.ph-bulk-price-form input { padding:7px 10px;border:1px solid #ddd;border-radius:6px;font-size:13px; }

/* ── Cart Page Coupon ── */
.pkkt-coupon-section { margin:16px 0 0; border-top:1.5px dashed var(--s-border); padding-top:14px; }
.pkkt-coupon-row { display:flex; gap:8px; align-items:stretch; }
.pkkt-coupon-inp {
  flex:1; padding:10px 13px; border:1.5px solid var(--s-border);
  border-radius:10px; font-size:13.5px; outline:none;
  transition:border-color .15s;
}
.pkkt-coupon-inp:focus { border-color:var(--s-primary); box-shadow:0 0 0 3px rgba(79,70,229,.1); }
.pkkt-coupon-inp::placeholder { color:#bbb; }
.pkkt-coupon-apply-btn {
  padding:10px 18px; background:linear-gradient(135deg,#4f46e5,#7c3aed);
  color:#fff; border:none; border-radius:10px; font-size:13px;
  font-weight:700; cursor:pointer; white-space:nowrap;
  transition:opacity .15s; letter-spacing:.3px;
}
.pkkt-coupon-apply-btn:hover { opacity:.88; }
.pkkt-coupon-apply-btn:disabled { opacity:.5; cursor:not-allowed; }
.pkkt-coupon-msg { font-size:12.5px; font-weight:600; margin-top:7px; min-height:20px; line-height:1.4; }
.pkkt-coupon-msg.success { color:#059669; background:#f0fdf4; padding:5px 10px; border-radius:6px; }
.pkkt-coupon-msg.error   { color:#dc2626; background:#fef2f2; padding:5px 10px; border-radius:6px; }

/* ── Side Cart Coupon ── */
.ph-sc-coupon { padding:12px 14px 0; border-top:1.5px dashed var(--s-border); }
.ph-sc-coupon-row { display:flex; gap:6px; }
.ph-sc-coupon-inp {
  flex:1; padding:8px 11px; border:1.5px solid var(--s-border);
  border-radius:8px; font-size:13px; outline:none; transition:border-color .15s;
}
.ph-sc-coupon-inp:focus { border-color:var(--s-primary); }
.ph-sc-coupon-inp::placeholder { color:#bbb; }
.ph-sc-coupon-apply {
  padding:8px 13px; background:linear-gradient(135deg,#4f46e5,#7c3aed);
  color:#fff; border:none; border-radius:8px; font-size:12.5px;
  font-weight:700; cursor:pointer; white-space:nowrap;
}
.ph-sc-coupon-apply:hover { opacity:.88; }
.ph-sc-coupon-apply:disabled { opacity:.5; cursor:not-allowed; }
#ph-sc-coupon-msg { font-size:12px; font-weight:600; margin-top:6px; }
#ph-sc-coupon-msg.success { color:#059669; }
#ph-sc-coupon-msg.error   { color:#dc2626; }

/* ════════════════════════════════════════════════════════════════
   Single Product Page  (.ph-sp-*)
   ════════════════════════════════════════════════════════════════ */
.ph-sp { padding: 20px 16px 24px; }

/* breadcrumb nav */
.ph-sp-nav { display:flex; align-items:center; gap:6px; flex-wrap:wrap; margin-bottom:20px; font-size:13px; }
.ph-sp-back { display:inline-flex; align-items:center; gap:4px; color:var(--s-accent); font-weight:600; text-decoration:none; padding:6px 14px; border:1.5px solid #bfdbfe; border-radius:8px; background:#eff6ff; transition:background .15s,color .15s; }
.ph-sp-back:hover { background:var(--s-accent); color:#fff; }
.ph-sp-nav-sep { color:#ccc; }
.ph-sp-nav-cat { color:var(--s-muted); }
.ph-sp-nav-title { color:var(--s-ink); font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:160px; }

/* grid */
.ph-sp-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }

/* image */
.ph-sp-media {}
.ph-sp-img-wrap { position:relative; border-radius:16px; overflow:hidden; aspect-ratio:1/1; background:var(--s-bg); border:1px solid var(--s-border); display:flex; align-items:center; justify-content:center; }
.ph-sp-main-img { width:100%; height:100%; object-fit:contain; display:block; transition:transform .3s; padding:8px; box-sizing:border-box; }
.ph-sp-img-wrap:hover .ph-sp-main-img { transform:scale(1.04); }
.ph-sp-img-badge { position:absolute; top:14px; left:14px; background:#e11d48; color:#fff; font-size:13px; font-weight:800; padding:5px 12px; border-radius:20px; }
.ph-sp-digital-badge { position:absolute; top:14px; right:14px; background:#7c3aed; color:#fff; font-size:12px; font-weight:700; padding:4px 10px; border-radius:8px; z-index:2; }
.ph-sp-thumbs { display:flex; gap:8px; margin-top:12px; overflow-x:auto; padding-bottom:4px; }
.ph-sp-thumb { width:68px; height:68px; flex:0 0 auto; object-fit:cover; border-radius:10px; cursor:pointer; border:2.5px solid transparent; opacity:.6; transition:all .15s; }
.ph-sp-thumb:hover { opacity:.85; }
.ph-sp-thumb.active { opacity:1; border-color:var(--s-accent); }

/* info panel */
.ph-sp-info { display:flex; flex-direction:column; gap:14px; }
.ph-sp-brand { display:flex; align-items:center; gap:8px; }
.ph-sp-brand-logo { width:28px; height:28px; object-fit:contain; border-radius:6px; border:1px solid var(--s-border); }
.ph-sp-brand-name { font-size:12px; font-weight:700; letter-spacing:.8px; color:#2563eb; text-transform:uppercase; }
.ph-sp-badges { display:flex; flex-wrap:wrap; gap:6px; }
.ph-sp-badge { font-size:12px; font-weight:700; padding:4px 12px; border-radius:20px; }
.ph-sp-badge-sale { background:#fef2f2; color:#dc2626; }
.ph-sp-title { font-size:22px; font-weight:800; color:var(--s-ink); margin:0; line-height:1.3; }

/* price card */
.ph-sp-price-card { background:linear-gradient(135deg,#eff6ff 0%,#dbeafe 100%); border:1.5px solid #bfdbfe; border-radius:14px; padding:16px 20px; }
.ph-sp-price-row { display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; margin-bottom:4px; }
.ph-sp-price { font-size:34px; font-weight:900; color:var(--s-ink); line-height:1; }
.ph-sp-mrp { font-size:15px; color:#94a3b8; }
.ph-sp-mrp del { color:#94a3b8; }
.ph-sp-savings { display:inline-flex; align-items:center; gap:4px; background:#dcfce7; color:#166534; font-size:13px; font-weight:700; padding:5px 12px; border-radius:20px; margin-top:6px; }
.ph-sp-tax-note { font-size:12px; color:#64748b; margin:4px 0 0; }

/* expiry */
.ph-sp-expiry { display:flex; align-items:center; gap:6px; background:#fef9c3; color:#92400e; font-size:13px; padding:9px 14px; border-radius:10px; border:1px solid #fde68a; }

/* ★ Short description highlight card */
.ph-sp-short-desc { background:linear-gradient(135deg,#f0f9ff 0%,#e0f2fe 100%); border:1.5px solid #bae6fd; border-radius:14px; padding:16px 20px; position:relative; }
.ph-sp-short-desc-label { display:flex; align-items:center; gap:6px; font-size:11px; font-weight:800; letter-spacing:.8px; text-transform:uppercase; color:#2563eb; margin-bottom:8px; }
.ph-sp-short-desc p { margin:0; font-size:14px; line-height:1.75; color:#1e3a5f; font-weight:500; }

/* action buttons */
.ph-sp-actions { display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.ph-sp-cta { display:inline-flex; align-items:center; justify-content:center; gap:8px; flex:1; min-width:160px; padding:14px 24px; border-radius:12px; font-size:15px; font-weight:800; border:none; cursor:pointer; transition:transform .15s,opacity .15s; text-decoration:none; }
.ph-sp-cta-primary { background:linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%); color:#fff; box-shadow:0 4px 16px rgba(37,99,235,.3); }
.ph-sp-cta-primary:hover { transform:translateY(-2px); opacity:.93; color:#fff; }
.ph-sp-cta-oos { background:#e5e7eb; color:#9ca3af; }
.ph-sp-qty-row { display:flex; align-items:center; gap:0; border:1.5px solid var(--s-border); border-radius:10px; overflow:hidden; }
.ph-sp-share-btn { width:48px; height:48px; flex:0 0 48px; border-radius:12px; border:1.5px solid var(--s-border); background:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s; }
.ph-sp-share-btn:hover { background:var(--s-bg); }
.ph-sp-sku { font-size:12px; color:#94a3b8; margin:0; }

/* trust badges */
.ph-sp-trust { display:flex; flex-direction:row; gap:0; background:#f0f9ff; border:1.5px solid #bfdbfe; border-radius:14px; overflow:hidden; }
.ph-sp-trust-item { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; padding:12px 8px; position:relative; }
.ph-sp-trust-item + .ph-sp-trust-item::before { content:''; position:absolute; left:0; top:20%; bottom:20%; width:1px; background:#bfdbfe; }
.ph-sp-trust-icon { width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ph-sp-trust-label { font-size:11px; font-weight:700; color:#374151; text-align:center; white-space:nowrap; line-height:1.2; }

/* ── Product Description (no tabs) ── */
.ph-sp-desc-section { margin-top:36px; }
.ph-sp-desc-header { display:flex; align-items:center; gap:8px; font-size:15px; font-weight:700; color:var(--s-ink); padding:14px 20px; background:linear-gradient(135deg,#f0f9ff 0%,#dbeafe 100%); border:1.5px solid #bfdbfe; border-radius:14px 14px 0 0; }
.ph-sp-desc-header svg { color:#4f46e5; flex-shrink:0; }
.ph-sp-desc-body { background:#fff; border:1.5px solid #bfdbfe; border-top:none; border-radius:0 0 14px 14px; padding:24px 24px 28px; font-size:15px; line-height:1.9; color:#374151; }
/* Headings inside description */
.ph-sp-desc-body h1,.ph-sp-desc-body h2 { font-size:18px; font-weight:800; color:var(--s-ink); margin:24px 0 10px; padding-bottom:8px; border-bottom:2px solid #dbeafe; }
.ph-sp-desc-body h3,.ph-sp-desc-body h4 { font-size:15px; font-weight:700; color:#2563eb; margin:18px 0 8px; }
.ph-sp-desc-body h2:first-child,.ph-sp-desc-body h1:first-child { margin-top:0; }
/* Paragraphs */
.ph-sp-desc-body p { margin:0 0 16px; }
.ph-sp-desc-body p:last-child { margin-bottom:0; }
/* Lists */
.ph-sp-desc-body ul { list-style:none; padding:0; margin:0 0 16px; }
.ph-sp-desc-body ul li { position:relative; padding:8px 12px 8px 36px; margin-bottom:6px; background:#eff6ff; border-radius:8px; border-left:3px solid #2563eb; font-size:14px; }
.ph-sp-desc-body ul li::before { content:"✓"; position:absolute; left:10px; top:8px; color:#2563eb; font-weight:800; font-size:13px; }
.ph-sp-desc-body ol { padding-left:22px; margin:0 0 16px; }
.ph-sp-desc-body ol li { margin-bottom:8px; padding-left:4px; font-size:14px; }
.ph-sp-desc-body ol li::marker { color:#2563eb; font-weight:700; }
/* Images */
.ph-sp-desc-body img { max-width:100%; border-radius:12px; box-shadow:0 2px 12px rgba(0,0,0,.08); margin:8px 0; display:block; }
/* Tables */
.ph-sp-desc-body table { width:100%; border-collapse:collapse; font-size:14px; margin:16px 0; border-radius:10px; overflow:hidden; box-shadow:0 1px 4px rgba(0,0,0,.06); }
.ph-sp-desc-body table th { background:linear-gradient(135deg,#1e40af,#2563eb); color:#fff; font-weight:700; padding:10px 14px; text-align:left; font-size:13px; }
.ph-sp-desc-body table td { padding:10px 14px; border-bottom:1px solid var(--s-border); }
.ph-sp-desc-body table tr:nth-child(even) td { background:#f8faff; }
.ph-sp-desc-body table tr:last-child td { border-bottom:none; }
/* Blockquote */
.ph-sp-desc-body blockquote { border-left:4px solid #2563eb; background:#eff6ff; border-radius:0 10px 10px 0; padding:12px 18px; margin:16px 0; color:#1e3a5f; font-style:italic; }
/* Strong / em */
.ph-sp-desc-body strong { color:var(--s-ink); font-weight:700; }
.ph-sp-desc-body em { color:#2563eb; }
/* Mobile */
@media(max-width:600px) {
  .ph-sp-desc-body { padding:16px 14px 20px; font-size:14px; }
  .ph-sp-desc-body h1,.ph-sp-desc-body h2 { font-size:16px; }
}

/* responsive */
@media(max-width:768px) {
  .ph-sp-grid { grid-template-columns:1fr; gap:20px; }
  .ph-sp-price { font-size:28px; }
  .ph-sp-title { font-size:18px; }
  .ph-sp-cta { padding:13px 18px; font-size:14px; }
  .ph-sp-tabs { overflow-x:auto; }
  .ph-sp-tab { white-space:nowrap; padding:10px 16px; font-size:13px; }
  .ph-sp-nav-title { max-width:140px; }
}

/* ════════════════════════════════════════════════════════════════
   NEW FEATURES CSS
   ════════════════════════════════════════════════════════════════ */

/* stars CSS removed */

/* reviews CSS removed */

/* ── Stock Bar ── */
.ph-sp-stock-bar { background:#fef2f2; border:1.5px solid #fecaca; border-radius:10px; padding:10px 16px; }
.ph-sp-stock-text { font-size:13px; font-weight:700; color:#dc2626; margin-bottom:6px; }
.ph-sp-stock-track { height:6px; background:#fee2e2; border-radius:10px; overflow:hidden; }
.ph-sp-stock-fill { height:100%; background:linear-gradient(90deg,#dc2626,#f59e0b); border-radius:10px; transition:width .3s; }

/* ── Price Alert ── */
.ph-sp-price-alert { background:linear-gradient(135deg,#f0fdf4,#dcfce7); border:1.5px solid #bbf7d0; border-radius:12px; padding:14px 18px; }
.ph-sp-price-alert-label { font-size:13px; font-weight:700; color:#166534; margin-bottom:10px; }
.ph-price-alert-form { display:flex; gap:8px; flex-wrap:wrap; }
.ph-price-alert-form input { flex:1; min-width:180px; border:1.5px solid #86efac; border-radius:8px; padding:9px 12px; font-size:13px; }
.ph-price-alert-form button { background:#16a34a; color:#fff; border:none; border-radius:8px; padding:9px 18px; font-size:13px; font-weight:700; cursor:pointer; }
.ph-price-alert-msg { font-size:13px; font-weight:600; color:#166534; margin-top:6px; }

/* ── Wishlist button ── */
.ph-wishlist-btn { position:absolute; top:10px; right:10px; width:36px; height:36px; border-radius:50%; background:#fff; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 8px rgba(0,0,0,.12); transition:transform .15s; z-index:2; font-size:18px; color:#d1d5db; }
.ph-wishlist-btn:hover,.ph-wishlist-btn.active { color:#e11d48; transform:scale(1.1); }
.ph-store-product-img { position:relative; }

/* ── Compare button ── */
.ph-compare-btn { font-size:11px; font-weight:700; color:var(--s-accent); border:1.5px solid var(--s-accent); background:#fff; border-radius:6px; padding:3px 10px; cursor:pointer; margin-left:4px; }
.ph-compare-btn.active { background:var(--s-accent); color:#fff; }
.ph-compare-bar { position:fixed; bottom:0; left:0; right:0; background:#1e293b; color:#fff; padding:14px 20px; z-index:9999; }
.ph-compare-bar-inner { display:flex; align-items:center; gap:12px; max-width:1200px; margin:0 auto; }
.ph-compare-bar-label { font-size:13px; font-weight:700; }
.ph-compare-bar-names { font-size:13px; flex:1; }
.ph-compare-bar-btn { background:var(--s-accent); color:#fff; padding:7px 16px; border-radius:8px; font-size:13px; font-weight:700; text-decoration:none; }
.ph-compare-bar-clear { background:transparent; color:#94a3b8; border:none; cursor:pointer; font-size:13px; margin-left:auto; }
.ph-compare-modal-inner { background:#fff; border-radius:16px; padding:28px; max-width:900px; width:95%; max-height:85vh; overflow-y:auto; position:relative; }
.ph-compare-table-wrap table { width:100%; border-collapse:collapse; font-size:13px; }
.ph-compare-table-wrap td,.ph-compare-table-wrap th { border:1px solid var(--s-border); padding:10px 14px; vertical-align:top; }
.ph-compare-table-wrap th { background:var(--s-bg); font-weight:700; width:130px; }
.ph-compare-table-wrap img { max-width:100px; height:80px; object-fit:contain; border-radius:8px; }

/* ── Deal of the Day ── */
.ph-dotd { margin-bottom:32px; }
.ph-dotd-inner { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center; background:linear-gradient(135deg,#0f172a 0%,#1e1b4b 100%); border-radius:16px; padding:32px; }
.ph-dotd-img img { width:100%; border-radius:12px; object-fit:contain; max-height:300px; background:#fff; padding:16px; box-sizing:border-box; }
.ph-dotd-info { color:#fff; }
.ph-dotd-title { font-size:22px; font-weight:800; margin:10px 0; line-height:1.3; }
.ph-dotd-title a { color:#fff; text-decoration:none; }
.ph-dotd-price-row { display:flex; align-items:baseline; gap:12px; margin-bottom:14px; }
.ph-dotd-price { font-size:36px; font-weight:900; color:#60a5fa; }
.ph-dotd-mrp del { color:rgba(255,255,255,.5); font-size:16px; }
.ph-dotd-countdown { margin-bottom:20px; }
.ph-dotd-cd-label { font-size:12px; color:rgba(255,255,255,.6); margin-bottom:8px; font-weight:600; letter-spacing:1px; text-transform:uppercase; }
.ph-dotd-cd-blocks { display:flex; align-items:center; gap:8px; }
.ph-cd-block { text-align:center; background:rgba(255,255,255,.12); border-radius:8px; padding:10px 16px; min-width:54px; }
.ph-cd-num { display:block; font-size:28px; font-weight:900; color:#fff; line-height:1; }
.ph-cd-unit { display:block; font-size:10px; color:rgba(255,255,255,.6); text-transform:uppercase; margin-top:4px; }
.ph-cd-sep { font-size:24px; font-weight:900; color:rgba(255,255,255,.4); }
.ph-dotd-btn { max-width:200px; }

/* ── Related products ── */
.ph-sp-related { margin-top:36px; }
.ph-sp-related-title { font-size:18px; font-weight:800; margin-bottom:16px; color:var(--s-ink); }
.ph-sp-related-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.ph-sp-rel-card { border:1.5px solid var(--s-border); border-radius:12px; overflow:hidden; text-decoration:none; color:var(--s-ink); transition:box-shadow .15s,transform .15s; display:block; }
.ph-sp-rel-card:hover { box-shadow:0 4px 16px rgba(37,99,235,.12); transform:translateY(-2px); }
.ph-sp-rel-card img { width:100%; aspect-ratio:1; object-fit:contain; background:var(--s-bg); padding:8px; box-sizing:border-box; }
.ph-sp-rel-body { padding:10px 12px; }
.ph-sp-rel-title { font-size:13px; font-weight:600; margin-bottom:4px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.ph-sp-rel-price { font-size:15px; font-weight:800; color:var(--s-accent); }

/* ── Recently Viewed ── */
.ph-recently-viewed { margin-bottom:32px; }
.ph-rv-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:12px; }
.ph-rv-card { border:1.5px solid var(--s-border); border-radius:10px; overflow:hidden; text-decoration:none; color:var(--s-ink); transition:box-shadow .15s; display:block; }
.ph-rv-card img { width:100%; aspect-ratio:1; object-fit:contain; background:var(--s-bg); padding:6px; box-sizing:border-box; }
.ph-rv-title { font-size:12px; font-weight:600; padding:6px 8px 2px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.ph-rv-price { font-size:13px; font-weight:800; color:var(--s-accent); padding:0 8px 8px; }

/* ── Dark mode ── */
/* dark mode styles removed */

/* ── Skeleton loaders (store product cards) ── */
.ph-skeleton-card { border:1.5px solid var(--s-border); border-radius:var(--s-r-lg); overflow:hidden; background:#fff; }
.ph-skeleton { background:linear-gradient(90deg,#f0f0f0 25%,#e0e0e0 50%,#f0f0f0 75%); background-size:200% 100%; animation:ph-shimmer 1.4s infinite; border-radius:6px; }
@keyframes ph-shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.ph-skeleton-img { width:100%; aspect-ratio:1; }
.ph-skeleton-body { padding:12px; }
.ph-skeleton-line { height:14px; margin-bottom:8px; border-radius:4px; }
.ph-skeleton-line.w80 { width:80%; }
.ph-skeleton-line.w50 { width:50%; }
.ph-skeleton-line.w30 { width:30%; }

/* ── Buy Now button ── */
.ph-sp-cta-buy-now { background:linear-gradient(135deg,#0891b2,#0369a1); color:#fff; box-shadow:0 4px 16px rgba(8,145,178,.3); }
.ph-sp-cta-buy-now:hover { transform:translateY(-2px); opacity:.93; color:#fff; }
/* ph-card-buy-now replaced by ph-card-buy-now-btn */

/* dark mode toggle removed */

@media(max-width:768px) {
  .ph-dotd-inner { grid-template-columns:1fr; }
  .ph-sp-related-grid { grid-template-columns:repeat(2,1fr); }
  .ph-rv-grid { grid-template-columns:repeat(3,1fr); }
  .ph-review-guest-fields { flex-direction:column; }
  .ph-compare-bar-inner { flex-wrap:wrap; }
}
@media(max-width:480px) {
  .ph-rv-grid { grid-template-columns:repeat(2,1fr); }
}

/* ── Bottom padding for mobile nav bar ─────────────────────────── */
/* Only add extra bottom space when mobile nav bar is active         */
body.has-mnbp .ph-store-shop,
body.has-mnbp .ph-sp,
body.has-mnbp .ph-store-single,
body.has-mnbp .la-page,
body.has-mnbp .acc-page,
body.has-mnbp .pkkt-cart,
body.has-mnbp .pkkt-checkout {
  padding-bottom: calc(var(--mnbp-bar-height, 60px) + var(--mnbp-safe-area, 0px) + 16px);
}

/* ── Product card action buttons ─────────────────────────── */
.ph-card-actions { padding:10px 12px 14px; }
.ph-card-atc-btn { width:100%; display:flex; align-items:center; justify-content:center; gap:7px; background:linear-gradient(135deg,#2563eb 0%,#1d4ed8 100%); color:#fff; font-size:13.5px; font-weight:700; padding:12px 16px; border-radius:12px; border:none; cursor:pointer; transition:opacity .15s,box-shadow .15s,transform .12s; text-decoration:none; box-shadow:0 3px 12px rgba(37,99,235,.25); }
.ph-card-atc-btn:hover { opacity:.9; transform:translateY(-1px); box-shadow:0 5px 18px rgba(37,99,235,.35); color:#fff; }
.ph-card-atc-btn svg { flex-shrink:0; }
.ph-card-share-btn { display:none; }