/* assets/css/style.css - Lori Store (Pristine Light Theme OS) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --os-bg: #f8fafc;
  --window-bg: #ffffff;
  --window-header: #f8fafc;
  --window-header-text: #0f172a;
  --border-gold: #f59e0b;
  --accent-gold: #d97706;
  --accent-cyan: #0284c7;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: #f8fafc;
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  user-select: auto;
}

/* TOP TASKBAR (Clean Sticky Header) */
.os-taskbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.taskbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
}

.taskbar-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid #f59e0b;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}

.taskbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.taskbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.taskbar-btn:hover, .taskbar-btn.active {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
  transform: translateY(-1px);
}

.taskbar-btn.cart-btn {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ef4444;
  color: white;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border: 2px solid #ffffff;
}

.taskbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.system-clock {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid #fde68a;
  white-space: nowrap;
}

/* TICKER ANNOUNCEMENT */
.os-ticker {
  background: #fffbeb;
  border-bottom: 1.5px solid #fde68a;
  color: #92400e;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 900;
}

.ticker-badge {
  background: #f59e0b;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.25);
}

.ticker-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  color: #92400e;
}

/* MAIN CONTAINER (Centered without any left dock overlap) */
.desktop-workspace, .os-workspace {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 20px 80px 20px;
}

/* WINDOW COMPONENT */
.os-window {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 28px;
  transition: box-shadow 0.2s ease;
}

.os-window:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.os-window-header {
  background: #f8fafc;
  border-bottom: 1.5px solid #e2e8f0;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
}

.window-title i {
  color: #f59e0b;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-btn {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: transparent;
  transition: all 0.15s ease;
}

.window-btn:hover {
  color: rgba(0, 0, 0, 0.7);
}

.window-btn.close { background: #ef4444; }
.window-btn.min { background: #f59e0b; }
.window-btn.max { background: #10b981; }

.os-window-body {
  padding: 24px;
  color: #1e293b;
}

/* CODE TAG */
.code-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* HERO TITLE & TEXT */
.window-hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.window-hero-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 800px;
}

/* CATEGORY PILLS BAR */
.category-filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cat-pill:hover {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
  transform: translateY(-1px);
}

.cat-pill.active {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #f59e0b;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15);
}

/* CARD BANNER / LOGO SHOWCASE */
.card-banner {
  position: relative;
  height: 150px;
  background: #f8fafc;
  border-bottom: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 20px 16px 20px;
  overflow: hidden;
}

.card-logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.card-official-logo {
  max-height: 80px;
  max-width: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .card-official-logo {
  transform: scale(1.06);
}

.badge-tag-top-left {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.badge-hot {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fcd34d;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.badge-discount {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
}

.badge-pill-top-right {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}

/* PRODUCT BODY */
.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 8px;
}

.product-spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 14px;
  align-self: flex-start;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.price-main {
  font-size: 1.45rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #d97706;
}

.price-original {
  font-size: 0.88rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-family: var(--font-mono);
}

.product-features-list {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-features-list li {
  font-size: 0.86rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.product-features-list li i.fa-check-circle {
  color: #10b981;
  margin-top: 2px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* BUTTONS */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(245, 158, 11, 0.25);
  white-space: nowrap;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
  transform: translateY(-1px);
}

/* FORM INPUTS */
.os-input {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  color: #0f172a;
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.2s ease;
}

.os-input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* MODAL WINDOWS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-dialog {
  width: 100%;
  max-width: 650px;
  animation: modal-pop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-pop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* DATA TABLES */
.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
  background: #ffffff;
}

.data-table th {
  background: #f8fafc;
  padding: 14px 16px;
  border-bottom: 2px solid #e2e8f0;
  color: #334155;
  font-weight: 700;
  white-space: nowrap;
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  vertical-align: middle;
}

.data-table tr:hover td {
  background: #f8fafc;
}

/* GUIDE LAYOUT */
.guide-layout-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.guide-nav-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.guide-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  margin-bottom: 4px;
  border-left: 3px solid transparent;
}

.guide-nav-item:hover {
  background: #f8fafc;
  color: #0f172a;
}

.guide-nav-item.active {
  background: #fef3c7;
  color: #92400e;
  border-left-color: #f59e0b;
  font-weight: 700;
}

.guide-content-panel {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.guide-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.guide-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.guide-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.guide-step:last-child {
  margin-bottom: 0;
}

.step-num, .guide-step-num {
  width: 32px;
  height: 32px;
  background: #fef3c7;
  color: #b45309;
  border: 1.5px solid #fcd34d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.step-content {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.65;
  flex: 1;
}

.step-content b {
  color: #0f172a;
}

.step-content code, .guide-card code {
  background: #f1f5f9;
  color: #0284c7;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.88em;
  border: 1px solid #e2e8f0;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #334155;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cat-pill:hover, .cat-pill.active {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

/* PROFILE & AFFILIATE STYLES */
.profile-card-header {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.user-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar-wrap {
  position: relative;
}

.user-avatar-img {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.avatar-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #0f172a;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border: 2px solid #ffffff;
}

.user-name-box h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}

.user-name-box p {
  font-size: 0.84rem;
  color: #64748b;
  margin-top: 3px;
}

.user-header-stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-stat-item {
  text-align: center;
}

.header-stat-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-mono);
}

.header-stat-label {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 3px;
}

.profile-nav-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
  flex-wrap: wrap;
}

.profile-tab-btn {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #475569;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.profile-tab-btn:hover, .profile-tab-btn.active {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.2);
}

.affiliate-intro-box {
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
  border: 1.5px solid #fde68a;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.affiliate-intro-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 6px;
}

.affiliate-intro-box p {
  font-size: 0.88rem;
  color: #78350f;
  line-height: 1.5;
}

.affiliate-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.metric-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.metric-card-label {
  font-size: 0.84rem;
  color: #64748b;
  font-weight: 600;
}

.metric-card-val {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  font-family: var(--font-mono);
  margin-top: 8px;
}

.affiliate-link-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.ref-input-group {
  display: flex;
  gap: 10px;
  margin: 10px 0 14px 0;
}

.ref-code-label {
  font-size: 0.88rem;
  color: #64748b;
}

.ref-code-badge {
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-weight: 700;
}

/* CART & CHECKOUT LAYOUT */
.cart-split-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 24px;
  align-items: start;
}

.checkout-split-view {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.qr-display-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 16px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.qr-image-frame {
  margin: 12px auto 14px;
  padding: 8px;
  background: #ffffff;
  border: 2px solid #f59e0b;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.18);
}

.qr-image-frame img {
  max-width: 190px;
  height: auto;
  display: block;
  border-radius: 6px;
}

.btn-confirm-transfer {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 0.95rem;
  margin-top: 14px;
  font-weight: 800;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.28);
  transition: all 0.2s ease;
  line-height: 1.35;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
}

.btn-confirm-transfer:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.38);
}

.polling-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(245, 158, 11, 0.7);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.bank-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.bank-info-table td {
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.bank-info-table td:first-child {
  color: #64748b;
  width: 130px;
  font-weight: 500;
}

/* PRODUCT DETAIL PAGE STYLES */
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: #64748b;
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: #0284c7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.product-breadcrumb a:hover {
  color: #0369a1;
  text-decoration: underline;
}

.product-breadcrumb .bc-sep {
  font-size: 0.7rem;
  color: #cbd5e1;
}

.product-breadcrumb .bc-current {
  color: #0f172a;
  font-weight: 700;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: start;
}

.product-gallery-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  position: relative;
  text-align: center;
}

.product-gallery-card .card-badges-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.product-gallery-img-wrap {
  background: radial-gradient(circle, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  padding: 28px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
}

.product-gallery-img {
  max-width: 220px;
  max-height: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
  transition: transform 0.3s ease;
}

.product-gallery-img:hover {
  transform: scale(1.05);
}

.product-info-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-info-panel h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}

.product-price-box {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.product-price-box .price-current {
  font-size: 2.2rem;
  font-weight: 800;
  color: #d97706;
  font-family: var(--font-mono);
}

.product-price-box .price-old {
  font-size: 1.15rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-family: var(--font-mono);
}

.product-price-box .discount-tag {
  background: #ef4444;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.features-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: #334155;
}

.features-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-checklist li i {
  color: #10b981;
  font-size: 1rem;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guarantee-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guarantee-box i {
  font-size: 1.4rem;
}

.guarantee-box .g-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #0f172a;
}

.guarantee-box .g-sub {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 6px;
}

.quantity-control button {
  width: 36px;
  height: 36px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
}

.quantity-control button:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.quantity-control input {
  width: 54px;
  height: 36px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-mono);
  color: #0f172a;
}

.product-action-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.product-action-row .btn-add-cart-large {
  flex: 1;
  min-width: 170px;
  padding: 12px 20px;
  font-size: 0.95rem;
}

.product-action-row .btn-buy-now-large {
  flex: 1;
  min-width: 170px;
  padding: 12px 20px;
  font-size: 0.95rem;
  text-align: center;
}

.similar-product-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.similar-product-card:hover {
  border-color: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.12);
}

.similar-product-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 10px;
  background: #f8fafc;
  padding: 6px;
  border: 1px solid #e2e8f0;
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .desktop-workspace, .os-workspace {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 60px;
  }

  .taskbar-menu {
    gap: 4px;
  }

  .taskbar-btn {
    padding: 5px 8px;
    font-size: 0.78rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .guide-layout-grid,
  .cart-split-grid,
  .checkout-split-view,
  .checkout-wrapper,
  .affiliate-metrics-grid,
  .security-split-grid,
  .about-split-grid {
    grid-template-columns: 1fr !important;
  }

  .user-header-stats {
    flex-wrap: wrap;
    gap: 14px;
  }
}
