/*
 * ═══════════════════════════════════════════════════════════════
 * URSA MINERS — Custom OpenCart 3.x Theme
 * PRISM Design System v1.0
 * Built for: ursaminers.com | OpenCart 3.0.3.7 | PHP 7.4
 * ═══════════════════════════════════════════════════════════════
 */


/* ─────────────────────────────────────────────────────────────
   §1  DESIGN TOKENS
   ───────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-deep:      #0B1120;
  --bg-card:      #111827;
  --bg-surface:   #1E293B;
  --bg-elevated:  #253247;
  --bg-hover:     #2D3A4F;

  /* Borders */
  --border:       #1E293B;
  --border-light: #334155;
  --border-focus: #3B82F6;

  /* Text */
  --text-heading: #F8FAFC;
  --text-body:    #94A3B8;
  --text-muted:   #64748B;
  --text-faint:   #475569;

  /* Brand */
  --amber:        #F97316;
  --amber-hover:  #FB923C;
  --amber-dark:   #EA580C;
  --blue:         #3B82F6;
  --blue-hover:   #60A5FA;
  --blue-dark:    #2563EB;
  --green:        #10B981;
  --green-dark:   #059669;
  --red:          #EF4444;

  /* Fonts */
  --font-main:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Spacing (4px base) */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;
  --sp-4: 16px; --sp-5: 20px;  --sp-6: 24px;
  --sp-8: 32px; --sp-10: 40px; --sp-12: 48px;
  --sp-16: 64px;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --speed: 200ms;
}


/* ─────────────────────────────────────────────────────────────
   §2  GLOBAL RESET & BASE
   ───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 0;
}
h1 { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; color: var(--text-heading); }
h6 { font-size: 13px; }

p { margin: 0 0 var(--sp-4); }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--speed) var(--ease);
}
a:hover {
  color: var(--blue-hover);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--sp-6) 0;
}

::selection {
  background: rgba(59, 130, 246, 0.3);
  color: var(--text-heading);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-surface); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

/* Font Awesome default */
.fa { font-size: 14px; }


/* ─────────────────────────────────────────────────────────────
   §3  CONTAINER
   ───────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}


/* ─────────────────────────────────────────────────────────────
   §3b  CRYPTO PRICE TICKER
   ───────────────────────────────────────────────────────────── */
.crypto-ticker {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  position: relative;
  white-space: nowrap;
}
.crypto-ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
}
.ticker-scroll-inner {
  display: inline-flex;
  align-items: center;
  animation: tickerScroll 45s linear infinite;
  padding-right: 32px;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Pause on hover */
.crypto-ticker:hover .ticker-scroll-inner {
  animation-play-state: paused;
}
.ticker-coin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px;
  font-size: 12px;
  border-right: 1px solid var(--border);
  height: 36px;
  line-height: 36px;
  cursor: default;
}
.ticker-coin:last-child { border-right: none; }
.ticker-sym {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-heading);
  font-size: 11px;
  letter-spacing: 0.03em;
}
.ticker-price {
  font-family: var(--font-mono);
  color: var(--text-body);
  font-size: 12px;
}
.ticker-up {
  color: var(--green);
  font-size: 11px;
  font-family: var(--font-mono);
}
.ticker-down {
  color: var(--red);
  font-size: 11px;
  font-family: var(--font-mono);
}
.ticker-loading {
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 24px;
  font-size: 12px;
  color: var(--text-faint);
}

/* Edge fade effect */
.crypto-ticker::before,
.crypto-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.crypto-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-card), transparent);
}
.crypto-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-card), transparent);
}

/* Mobile: slightly smaller */
@media (max-width: 767px) {
  .crypto-ticker { height: 32px; }
  .ticker-coin { padding: 0 14px; font-size: 11px; height: 32px; line-height: 32px; }
  .ticker-sym { font-size: 10px; }
  .ticker-price { font-size: 11px; }
  .ticker-up, .ticker-down { font-size: 10px; }
  .ticker-loading { height: 32px; font-size: 11px; }
}


/* ─────────────────────────────────────────────────────────────
   §4  TOP UTILITY BAR (#top)
   ───────────────────────────────────────────────────────────── */
#top {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin: 0;
  min-height: 40px;
  font-size: 13px;
}
#top .container {
  padding: 0 20px;
}
#top .btn-group > .btn-link,
#top-links > ul > li,
#top-links > ul > li > a {
  color: var(--text-muted);
  background: none;
  text-decoration: none;
  font-size: 13px;
  transition: color var(--speed) var(--ease);
}
#top .btn-group > .btn-link:hover,
#top-links > ul > li > a:hover {
  color: var(--text-heading);
}
#top .btn-link strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
  text-align: left;
  color: var(--text-body);
  font-size: 13px;
  padding: 3px 16px;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
  color: var(--text-heading);
  background-color: var(--bg-surface);
  text-shadow: none;
  text-decoration: none;
}
#top-links {
  padding-top: 8px;
}
#top-links a + a {
  margin-left: 15px;
}
#top-links .dropdown-menu {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
#top-links .dropdown-menu a {
  color: var(--text-body);
  font-size: 13px;
  padding: 8px 16px;
  text-shadow: none;
}
#top-links .dropdown-menu a:hover {
  color: var(--text-heading);
  background-color: var(--bg-surface);
}


/* ─────────────────────────────────────────────────────────────
   §5  HEADER (Logo / Search / Cart)
   ───────────────────────────────────────────────────────────── */
header {
  background-color: var(--bg-deep);
  padding: var(--sp-5) 0;
}
#logo {
  margin: 0;
}
#logo img {
  max-height: 60px;
  width: auto;
}

/* Search */
#search {
  margin-bottom: 0;
  padding-top: 5px;
}
#search .input-lg {
  height: 44px;
  line-height: 20px;
  padding: 0 var(--sp-4);
  font-size: 14px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: var(--text-heading);
  box-shadow: none;
  transition: border-color var(--speed) var(--ease);
}
#search .input-lg:focus {
  border-color: var(--blue);
  outline: none;
}
#search .input-lg::placeholder {
  color: var(--text-muted);
}
#search .btn-lg {
  height: 44px;
  color: var(--text-muted);
  font-size: 15px;
  padding: 10px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-left: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  text-shadow: none;
  box-shadow: none;
  transition: color var(--speed) var(--ease);
}
#search .btn-lg:hover {
  color: var(--amber);
}

/* Cart */
#cart {
  margin-bottom: 0;
  padding-top: 5px;
  float: right;
}
#cart > .btn {
  font-size: 14px;
  line-height: 18px;
  color: var(--text-body);
  background: none;
  border: none;
  text-shadow: none;
  box-shadow: none;
  transition: color var(--speed) var(--ease);
}
#cart > .btn .fa {
  font-size: 22px;
}
#cart > .btn:hover,
#cart.open > .btn {
  color: var(--amber);
}
#cart .dropdown-menu {
  z-index: 1001;
  min-width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  padding: var(--sp-4);
}
#cart .dropdown-menu table {
  margin-bottom: var(--sp-3);
}
#cart .dropdown-menu table td {
  color: var(--text-body);
  vertical-align: middle;
  padding: var(--sp-2);
}
#cart .dropdown-menu table img {
  border-radius: var(--radius-sm);
}
#cart .dropdown-menu li > div {
  min-width: 360px;
  padding: 0;
}
#cart .dropdown-menu li p {
  margin: var(--sp-5) 0;
  color: var(--text-muted);
}
#cart .dropdown-menu .text-right {
  white-space: nowrap;
}


/* ─────────────────────────────────────────────────────────────
   §6  MAIN NAVIGATION (#menu)
   ───────────────────────────────────────────────────────────── */
#menu {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 44px;
}
#menu .navbar-collapse {
  padding: 0;
}
#menu .nav > li > a {
  color: var(--text-body);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  transition: all var(--speed) var(--ease);
}
#menu .nav > li:hover > a,
#menu .nav > li.open > a {
  background-color: var(--bg-surface);
  color: var(--text-heading);
  border-radius: var(--radius-sm);
}
#menu .dropdown-menu {
  padding: var(--sp-2) 0;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin-top: 0;
}
#menu .dropdown-inner {
  display: table;
}
#menu .dropdown-inner ul {
  display: table-cell;
}
#menu .dropdown-inner a {
  min-width: 180px;
  display: block;
  padding: 8px 20px;
  clear: both;
  line-height: 20px;
  color: var(--text-body);
  font-size: 13px;
  transition: all var(--speed) var(--ease);
}
#menu .dropdown-inner li a:hover {
  color: var(--text-heading);
  background-color: var(--bg-surface);
}
#menu .see-all {
  display: block;
  margin-top: 0;
  border-top: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 13px;
  color: var(--amber);
  font-weight: 500;
}
#menu .see-all:hover,
#menu .see-all:focus {
  text-decoration: none;
  color: #fff;
  background-color: var(--amber);
}
#menu #category {
  float: left;
  font-size: 16px;
  line-height: 44px;
  color: var(--text-heading);
  margin-left: 15px;
}
#menu .btn-navbar {
  font-size: 15px;
  color: #fff;
  padding: 4px 18px;
  float: right;
  background-color: var(--amber);
  border: none;
  border-radius: var(--radius-sm);
}
#menu .btn-navbar:hover,
#menu .btn-navbar:focus,
#menu .btn-navbar:active {
  background-color: var(--amber-dark);
  color: #fff;
}

@media (min-width: 768px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  #menu .navbar-nav { margin: 0; }
  #menu .in { border-top: 1px solid var(--border); }
  #menu { border-radius: var(--radius-sm); }
  #menu div.dropdown-inner > ul.list-unstyled { display: block; }
  #menu div.dropdown-menu {
    margin-left: 0 !important;
    padding-bottom: 10px;
    background-color: var(--bg-card);
    border: none;
    box-shadow: none;
  }
  #menu .dropdown-inner { display: block; }
  #menu .dropdown-inner a { width: 100%; color: var(--text-body); }
  #menu .dropdown-menu a:hover { background-color: var(--bg-surface); }
  #menu .see-all {
    margin-top: 0;
    border: none;
    border-radius: 0;
    color: var(--amber);
  }
  #menu .see-all:hover { background-color: var(--bg-surface); color: var(--amber); }
}


/* ─────────────────────────────────────────────────────────────
   §7  CONTENT AREA
   ───────────────────────────────────────────────────────────── */
#content {
  min-height: 600px;
  padding: var(--sp-6) 0;
}
#product {
  margin-top: 0;
}


/* ─────────────────────────────────────────────────────────────
   §8  BREADCRUMBS
   ───────────────────────────────────────────────────────────── */
.breadcrumb {
  margin: 0 0 var(--sp-6) 0;
  padding: var(--sp-3) 0;
  background: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  font-size: 13px;
}
.breadcrumb > li {
  text-shadow: none;
  padding: 0 var(--sp-2);
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li:first-child {
  padding-left: 0;
}
.breadcrumb > li a {
  color: var(--text-muted);
  transition: color var(--speed) var(--ease);
}
.breadcrumb > li a:hover {
  color: var(--amber);
}
.breadcrumb > li + li:before {
  content: '';
  padding: 0;
}
.breadcrumb > li:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  right: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--text-muted);
  border-bottom: 1px solid var(--text-muted);
  transform: rotate(-45deg);
}
.breadcrumb > li:last-child:after {
  display: none;
}
.breadcrumb > li:last-child a,
.breadcrumb > li:last-child {
  color: var(--text-body);
}
.breadcrumb i {
  font-size: 14px;
}


/* ─────────────────────────────────────────────────────────────
   §9  BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-main);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  letter-spacing: 0.01em;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.btn-primary {
  color: #fff;
  background-color: var(--amber);
  border: none;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active {
  background-color: var(--amber-dark);
  color: #fff;
}
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: var(--bg-surface);
  color: var(--text-muted);
}

.btn-default {
  color: var(--text-body);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
}
.btn-default:hover {
  background-color: var(--bg-hover);
  color: var(--text-heading);
  border-color: var(--border-light);
}

.btn-success {
  color: #fff;
  background-color: var(--green);
  text-shadow: none;
}
.btn-success:hover { background-color: var(--green-dark); }

.btn-danger {
  color: #fff;
  background-color: var(--red);
  text-shadow: none;
}
.btn-danger:hover { opacity: 0.9; }

.btn-warning {
  color: #fff;
  background-color: var(--amber);
  background-image: none;
  text-shadow: none;
  border: none;
}
.btn-warning:hover { background-color: var(--amber-dark); }

.btn-info {
  color: #fff;
  background-color: var(--blue);
  background-image: none;
  text-shadow: none;
}
.btn-info:hover { background-color: var(--blue-dark); }

.btn-inverse {
  color: #fff;
  background-color: var(--bg-surface);
  text-shadow: none;
}
.btn-inverse:hover { background-color: var(--bg-hover); }

.btn-link {
  color: var(--blue);
  border: none;
  background: none;
}
.btn-link:hover { color: var(--blue-hover); }

.btn-xs { font-size: 11px; padding: 4px 10px; }
.btn-sm { font-size: 12px; padding: 6px 14px; }
.btn-lg { padding: 12px 24px; font-size: 16px; }

.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover { font-size: 13px; }


/* ─────────────────────────────────────────────────────────────
   §10  FORMS
   ───────────────────────────────────────────────────────────── */
label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-heading);
}
legend {
  font-size: 18px;
  padding: 7px 0;
  color: var(--text-heading);
  border-bottom: 1px solid var(--border);
}
div.required .control-label:before {
  content: '* ';
  color: var(--red);
  font-weight: bold;
}

.form-control {
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-heading);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  height: 40px;
  box-shadow: none;
  transition: border-color var(--speed) var(--ease);
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  outline: none;
  background-color: var(--bg-surface);
  color: var(--text-heading);
}
.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control,
textarea.form-control,
input[type="text"].form-control,
input[type="password"].form-control,
input[type="email"].form-control,
input[type="number"].form-control,
input[type="search"].form-control,
input[type="tel"].form-control,
input[type="url"].form-control {
  font-size: 14px;
  background-color: var(--bg-surface);
  color: var(--text-heading);
}

textarea.form-control {
  height: auto;
  min-height: 100px;
}

.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
  font-size: 13px;
}
.input-group .input-group-addon {
  font-size: 13px;
  height: 40px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}
.input-group .form-control[name^=quantity] {
  min-width: 50px;
}


/* ─────────────────────────────────────────────────────────────
   §11  ALERTS
   ───────────────────────────────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  border: none;
}
.alert-success {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.alert-danger {
  background-color: rgba(239, 68, 68, 0.15);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.alert-warning {
  background-color: rgba(249, 115, 22, 0.15);
  color: var(--amber);
  border: 1px solid rgba(249, 115, 22, 0.3);
}
.alert-info {
  background-color: rgba(59, 130, 246, 0.15);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.3);
}


/* ─────────────────────────────────────────────────────────────
   §12  DROPDOWN MENUS (Global)
   ───────────────────────────────────────────────────────────── */
.dropdown-menu {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: var(--sp-1) 0;
}
.dropdown-menu li > a {
  color: var(--text-body);
  padding: 8px 16px;
  font-size: 13px;
}
.dropdown-menu li > a:hover {
  text-decoration: none;
  color: var(--text-heading);
  background-color: var(--bg-surface);
}


/* ─────────────────────────────────────────────────────────────
   §13  LIST GROUPS & SIDEBAR
   ───────────────────────────────────────────────────────────── */
.list-group a {
  border: 1px solid var(--border);
  color: var(--text-body);
  padding: 10px 14px;
  background-color: var(--bg-card);
  font-size: 14px;
  transition: all var(--speed) var(--ease);
}
.list-group a:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.list-group a:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
  color: var(--amber);
  background: var(--bg-surface);
  border-color: var(--border);
}

/* Sidebar wells */
.well {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: none;
  padding: var(--sp-4);
}
.well > h2 { margin-top: 0; }

/* Column layout adjustments */
#column-left,
#column-right {
  font-size: 14px;
}
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
}


/* ─────────────────────────────────────────────────────────────
   §14  PRODUCT CARDS (Category / Featured / Search)
   ───────────────────────────────────────────────────────────── */
.product-thumb {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-5);
  transition: all 0.3s var(--ease);
}
.product-thumb:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-thumb .image {
  text-align: center;
  background-color: var(--bg-surface);
  padding: var(--sp-4);
  position: relative;
  overflow: hidden;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image a:hover {
  opacity: 1;
}
.product-thumb .image img {
  margin: 0 auto;
  transition: transform 0.4s var(--ease);
}
.product-thumb:hover .image img {
  transform: scale(1.05);
}

.product-thumb .caption {
  text-align: center;
  padding: var(--sp-4);
}
.product-thumb .caption > p {
  display: none;
}
.product-thumb .caption > p.price {
  display: block;
}
.product-thumb .caption h4,
.product-thumb .caption h4 a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  line-height: 1.4;
  margin-bottom: var(--sp-2);
  transition: color var(--speed) var(--ease);
}
.product-thumb .caption h4 a:hover {
  color: var(--amber);
}

/* Price */
.product-thumb .price {
  color: var(--text-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--sp-2);
}
.product-thumb .price-new {
  font-weight: 700;
  color: var(--text-heading);
  font-size: 18px;
}
.product-thumb .price-old {
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
}
.product-thumb .price-tax {
  color: var(--text-muted);
  font-size: 12px;
  display: block;
}
h2.price { margin: 0; }

/* Rating */
.product-thumb .rating {
  padding-bottom: var(--sp-2);
}
.rating .fa-stack { font-size: 8px; }
.rating .fa-star-o { color: var(--text-faint); font-size: 15px; }
.rating .fa-star { color: #FBBF24; font-size: 15px; }
.rating .fa-star + .fa-star-o { color: #D97706; }

/* Button group */
.product-thumb .button-group {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border);
  overflow: auto;
  visibility: hidden;
  transition: visibility 0.2s;
}
.product-thumb:hover .button-group {
  visibility: visible;
}
.product-thumb .button-group button {
  width: 60%;
  border: none;
  display: inline-block;
  float: left;
  background-color: var(--bg-surface);
  color: var(--text-body);
  line-height: 42px;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--speed) var(--ease);
}
.product-thumb .button-group button + button {
  width: 20%;
  border-left: 1px solid var(--border);
}
.product-thumb .button-group button:hover {
  color: #fff;
  background-color: var(--amber);
  cursor: pointer;
}

/* Product grid on smaller screens */
.product-grid .product-thumb .image { float: none; }
@media (min-width: 767px) {
  .product-list .product-thumb .image { float: left; padding: 0 15px; }
  .product-list .product-thumb .caption { margin-left: 230px; text-align: left; }
  .product-list .product-thumb .caption > p { display: block; }
  .product-list .product-thumb .button-group { visibility: visible; }
}
@media (max-width: 767px) {
  .product-list .product-thumb .caption { min-height: 0; margin-left: 0; }
  .product-grid .product-thumb .caption { min-height: 0; }
}
@media (max-width: 1200px) {
  .product-thumb .button-group button,
  .product-thumb .button-group button + button { width: 33.33%; }
}

/* Column-specific grid fix */
@media (min-width: 1200px) {
  #content .col-lg-2:nth-child(6n+1),
  #content .col-lg-3:nth-child(4n+1),
  #content .col-lg-4:nth-child(3n+1),
  #content .col-lg-6:nth-child(2n+1) { clear: left; }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #content .col-md-3:nth-child(4n+1),
  #content .col-md-4:nth-child(3n+1),
  #content .col-md-6:nth-child(2n+1) { clear: left; }
}
@media (min-width: 768px) and (max-width: 991px) {
  #content .col-sm-3:nth-child(4n+1),
  #content .col-sm-4:nth-child(3n+1),
  #content .col-sm-6:nth-child(2n+1) { clear: left; }
}

@media (min-width: 768px) {
  #column-left .product-layout .col-md-3 { width: 100%; }
  #column-left + #content .product-layout .col-md-3 { width: 50%; }
  #column-left + #content + #column-right .product-layout .col-md-3 { width: 100%; }
  #content + #column-right .product-layout .col-md-3 { width: 100%; }
}


/* ─────────────────────────────────────────────────────────────
   §15  PRODUCT PAGE
   ───────────────────────────────────────────────────────────── */
/* Image gallery */
.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnails > li {
  margin-left: 15px;
}
.thumbnails {
  margin-left: -15px;
}
.thumbnails > img {
  width: 100%;
}

.image-additional a {
  margin-bottom: var(--sp-3);
  padding: var(--sp-1);
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  transition: border-color var(--speed) var(--ease);
}
.image-additional a:hover {
  border-color: var(--amber);
}
.image-additional {
  max-width: 78px;
}
.thumbnails .image-additional {
  float: left;
  margin-left: 15px;
}

/* Product info */
#product .col-sm-4 h1,
.product-info h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: var(--sp-4);
  line-height: 1.3;
}

/* Product meta (brand, model, availability etc) */
#product .list-unstyled li,
.product-info .list-unstyled li {
  color: var(--text-body);
  padding: var(--sp-1) 0;
  font-size: 14px;
}
#product .list-unstyled li a {
  color: var(--blue);
}

/* Product price block */
#product h2.price,
#product .price-new-block {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-heading);
  font-family: var(--font-mono);
}
#product .price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

/* Tabs */
.nav-tabs {
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}
.nav-tabs > li > a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: var(--sp-3) var(--sp-5);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: none;
  transition: all var(--speed) var(--ease);
}
.nav-tabs > li > a:hover {
  color: var(--text-heading);
  background: none;
  border-color: transparent;
  border-bottom-color: var(--text-muted);
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: var(--amber);
  background: none;
  border: none;
  border-bottom: 2px solid var(--amber);
}

.tab-content > .tab-pane {
  border: none;
  border-top: none;
  padding: var(--sp-6) 0;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
}

/* Spec tables inside product description */
.tab-content table,
#tab-description table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0;
}
.tab-content table td,
.tab-content table th,
#tab-description table td,
#tab-description table th {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 14px;
  vertical-align: middle;
}
.tab-content table th,
#tab-description table th,
.tab-content table td:first-child,
#tab-description table td:first-child {
  background-color: var(--bg-surface);
  color: var(--text-heading);
  font-weight: 600;
  width: 40%;
}
.tab-content table td:last-child,
#tab-description table td:last-child {
  font-family: var(--font-mono);
  font-size: 13px;
}

/* Review section */
#tab-review .fa-star { color: #FBBF24; }
#tab-review .fa-star-o { color: var(--text-faint); }


/* ─────────────────────────────────────────────────────────────
   §16  CAROUSEL / BANNER
   ───────────────────────────────────────────────────────────── */
.carousel-caption {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.carousel-control .icon-prev:before { content: '\f053'; font-family: FontAwesome; }
.carousel-control .icon-next:before { content: '\f054'; font-family: FontAwesome; }
.carousel-control {
  background-image: none !important;
  opacity: 0.6;
  transition: opacity var(--speed) var(--ease);
}
.carousel-control:hover { opacity: 1; }

/* Homepage slideshow wrapper */
.slideshow {
  margin-bottom: var(--sp-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


/* ─────────────────────────────────────────────────────────────
   §17  CART PAGE
   ───────────────────────────────────────────────────────────── */
.table {
  color: var(--text-body);
}
.table > thead > tr > th {
  background-color: var(--bg-surface);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--border);
  padding: var(--sp-3) var(--sp-4);
}
.table > tbody > tr > td {
  border-top: 1px solid var(--border);
  padding: var(--sp-3) var(--sp-4);
  vertical-align: middle;
  color: var(--text-body);
}
.table > tbody > tr:hover > td {
  background-color: var(--bg-card);
}
.table-bordered,
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > td {
  border-color: var(--border);
}
.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: var(--bg-card);
}
.table-responsive {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}


/* ─────────────────────────────────────────────────────────────
   §18  PAGINATION
   ───────────────────────────────────────────────────────────── */
.pagination {
  margin: 0;
}
.pagination > li > a,
.pagination > li > span {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-body);
  padding: 8px 14px;
  font-size: 13px;
  transition: all var(--speed) var(--ease);
}
.pagination > li > a:hover {
  background-color: var(--bg-hover);
  color: var(--text-heading);
  border-color: var(--border-light);
}
.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > span {
  background-color: var(--amber);
  border-color: var(--amber);
  color: #fff;
}


/* ─────────────────────────────────────────────────────────────
   §19  FOOTER
   ───────────────────────────────────────────────────────────── */
footer {
  margin-top: var(--sp-12);
  padding: var(--sp-10) 0 var(--sp-6);
  background-color: var(--bg-card);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
}
footer hr {
  border-top: none;
  border-bottom: 1px solid var(--border);
}
footer a {
  color: var(--text-body);
  transition: color var(--speed) var(--ease);
}
footer a:hover {
  color: var(--amber);
  text-decoration: none;
}
footer h5 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}
footer li {
  margin: var(--sp-2) 0;
}
footer li a {
  position: relative;
  padding-left: 0;
  color: var(--text-muted);
  font-size: 14px;
}
footer li a:after {
  content: none;
}
footer li a:hover {
  color: var(--amber);
  text-decoration: none;
}
footer p {
  color: var(--text-faint);
  font-size: 13px;
  margin-top: var(--sp-6);
}


/* ─────────────────────────────────────────────────────────────
   §20  PANELS & CARDS
   ───────────────────────────────────────────────────────────── */
.panel {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: none;
}
.panel-default > .panel-heading {
  background-color: var(--bg-surface);
  border-color: var(--border);
  color: var(--text-heading);
}
.panel-body {
  padding: var(--sp-4);
  color: var(--text-body);
}
.panel-footer {
  background-color: var(--bg-surface);
  border-color: var(--border);
}


/* ─────────────────────────────────────────────────────────────
   §21  ACCOUNT PAGES
   ───────────────────────────────────────────────────────────── */
#account-login .well,
#account-register .well {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.table-bordered {
  border-color: var(--border);
}


/* ─────────────────────────────────────────────────────────────
   §22  HOMEPAGE MODULES
   ───────────────────────────────────────────────────────────── */
/* Banner / manufacturer carousel images */
#content .row > .col-sm-12 img,
.swiper-slide img {
  border-radius: var(--radius-md);
}

/* Featured / Latest / Special headings */
#content > .row > h3,
#content > h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-heading);
  margin: var(--sp-8) 0 var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--border);
}


/* ─────────────────────────────────────────────────────────────
   §23  CMS / INFORMATION PAGES
   ───────────────────────────────────────────────────────────── */
#information-information #content,
.information-page-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-body);
}
#information-information #content h1,
#information-information #content h2,
#information-information #content h3 {
  color: var(--text-heading);
  margin-top: var(--sp-6);
}
#information-information #content p {
  margin-bottom: var(--sp-4);
}
#information-information #content strong,
#information-information #content b {
  color: var(--text-heading);
}
#information-information #content ul,
#information-information #content ol {
  padding-left: var(--sp-6);
  margin-bottom: var(--sp-4);
}
#information-information #content li {
  margin-bottom: var(--sp-2);
}

/* Contact page */
#information-contact .panel {
  background-color: var(--bg-card);
  border-color: var(--border);
}


/* ─────────────────────────────────────────────────────────────
   §24  MOBILE RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  body { font-size: 14px; }

  h1 { font-size: 24px !important; }
  h2 { font-size: 20px !important; }
  h3 { font-size: 17px !important; }

  #logo { text-align: center; margin-bottom: var(--sp-3); }
  #logo img { display: inline-block; max-height: 50px; }

  #cart { float: none; text-align: center; display: block; }
  #cart > .btn { float: none; padding: 0; }

  #search { margin-bottom: var(--sp-3); }

  .container { padding-left: 15px; padding-right: 15px; }

  #content { padding: var(--sp-4) 0; }

  .product-thumb .caption h4,
  .product-thumb .caption h4 a { font-size: 13px; }
  .product-thumb .price,
  .product-thumb .price-new { font-size: 16px; }

  .product-thumb .button-group { visibility: visible; }
  .product-thumb .button-group button,
  .product-thumb .button-group button + button { width: 33.33%; }

  footer { padding: var(--sp-6) 0; margin-top: var(--sp-8); }
}

@media (max-width: 478px) {
  #cart .dropdown-menu { min-width: 100%; }
  #cart .dropdown-menu li > div { min-width: 100%; }

  .product-thumb .button-group button { font-size: 10px; line-height: 36px; }
}


/* ─────────────────────────────────────────────────────────────
   §25  UTILITY CLASSES
   ───────────────────────────────────────────────────────────── */
/* Bootstrap visibility fix */
span.hidden-xs, span.hidden-sm, span.hidden-md, span.hidden-lg { display: inline; }

/* Buttons container */
.buttons { margin: 1em 0; }

/* Product page margin fix */
#product { margin-top: 0; }

/* Trust badge images */
.ursa-trust-badges img {
  opacity: 0.8;
  transition: opacity var(--speed) var(--ease);
}
.ursa-trust-badges img:hover {
  opacity: 1;
}

/* Mono class for spec values */
.ursa-mono,
.spec-value {
  font-family: var(--font-mono);
  font-size: 13px;
}

/* Accent text */
.ursa-accent { color: var(--amber); }

/* Card surface */
.ursa-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}


/* ─────────────────────────────────────────────────────────────
   §26  BACK TO TOP BUTTON
   ───────────────────────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: var(--amber);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background-color: var(--amber-dark);
  transform: translateY(-2px);
}


/* ─────────────────────────────────────────────────────────────
   §27  PRINT STYLES
   ───────────────────────────────────────────────────────────── */
@media print {
  body {
    background: #fff;
    color: #000;
  }
  #top, #menu, footer, #back-to-top,
  .breadcrumb, .button-group { display: none; }
  .product-thumb { border: 1px solid #ccc; }
  a { color: #000; }
}

/* ═══════════════════════════════════════════════════════════════
   V3.2 ENHANCEMENTS — Enlarged sizing, social icons, promo,
   ticker, ROI chips, floating WhatsApp, competitive features
   ═══════════════════════════════════════════════════════════════ */

/* ── Enlarged base (16px body) ── */
body { font-size:16px; line-height:1.65; }
h1 { font-size:32px; } h2 { font-size:26px; } h3 { font-size:20px; }
.btn { padding:12px 24px; font-size:15px; }
.btn-primary { font-weight:700; text-transform:uppercase; letter-spacing:.03em; }
#search .input-lg { height:48px; font-size:15px; padding:0 18px; }
#search .btn-lg { font-size:17px; padding:10px 20px; }
#menu .nav>li>a { font-size:15px; padding:14px 20px; }
footer a { font-size:14px; } footer h5 { font-size:13px; margin-bottom:16px; }
footer li { margin:8px 0; } .container { max-width:1340px; }
.form-control { font-size:15px; padding:10px 14px; }
.list-group a { font-size:14px; padding:12px 16px; }
.product-thumb .caption { padding:16px 18px; }
.product-thumb .caption h4, .product-thumb .caption h4 a { font-size:15px; }
.product-thumb .price { font-size:20px; font-weight:800; }
.product-thumb .button-group button { line-height:44px; font-size:13px; }
.nav-tabs>li>a { font-size:15px; font-weight:600; padding:12px 20px; }
.breadcrumb { font-size:13px; padding:14px 0; }

/* ── Promo Banner ── */
.ursa-promo { background:linear-gradient(90deg,#F97316,#DC6B18); padding:10px 24px; text-align:center; font-size:14px; font-weight:600; color:#fff; }
.ursa-promo a { color:#fff; text-decoration:underline; margin-left:8px; }

/* ── Crypto Ticker ── */
.crypto-ticker { background:var(--bg-card,#0E1525); border-bottom:1px solid var(--border,#1A2337); height:40px; overflow:hidden; position:relative; white-space:nowrap; }
.crypto-ticker-track { display:inline-flex; align-items:center; height:100%; }
.ticker-scroll-inner { display:inline-flex; align-items:center; animation:tickerScroll 50s linear infinite; }
.crypto-ticker:hover .ticker-scroll-inner { animation-play-state:paused; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-coin { display:inline-flex; align-items:center; gap:7px; padding:0 22px; font-size:13px; border-right:1px solid var(--border,#1A2337); height:40px; line-height:40px; }
.ticker-sym { font-family:var(--font-mono,'JetBrains Mono',monospace); font-weight:600; color:#F1F5F9; font-size:12px; letter-spacing:.04em; }
.ticker-price { font-family:var(--font-mono,'JetBrains Mono',monospace); color:#8B9BB4; font-size:13px; }
.ticker-up { color:#10B981; font-size:12px; font-family:var(--font-mono,'JetBrains Mono',monospace); }
.ticker-down { color:#EF4444; font-size:12px; font-family:var(--font-mono,'JetBrains Mono',monospace); }
.ticker-loading { padding:0 20px; font-size:13px; color:#3E4E68; display:flex; align-items:center; height:40px; }
.crypto-ticker::before,.crypto-ticker::after { content:''; position:absolute; top:0; bottom:0; width:50px; z-index:2; pointer-events:none; }
.crypto-ticker::before { left:0; background:linear-gradient(to right,var(--bg-card,#0E1525),transparent); }
.crypto-ticker::after { right:0; background:linear-gradient(to left,var(--bg-card,#0E1525),transparent); }

/* ── Top Bar Social Icons ── */
.top-socials { display:inline-flex; gap:6px; align-items:center; margin-left:8px; vertical-align:middle; }
.top-socials a { width:26px; height:26px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:#5A6A85; font-size:12px; background:#151D2E; text-decoration:none; transition:all .15s; }
.top-socials a:hover { color:#F1F5F9; background:#1C2640; }
@media(max-width:767px) { .top-socials { display:none; } }

/* ── Footer Social Icons ── */
.footer-socials { display:flex; gap:8px; margin-top:18px; }
.footer-soc { width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:16px; color:#5A6A85; background:#151D2E; border:1px solid #1A2337; text-decoration:none; transition:all .2s; }
.footer-soc:hover { color:#fff; transform:translateY(-2px); }
.footer-soc-tw:hover { background:#1DA1F2; border-color:#1DA1F2; }
.footer-soc-tg:hover { background:#0088CC; border-color:#0088CC; }
.footer-soc-fb:hover { background:#1877F2; border-color:#1877F2; }
.footer-soc-ig:hover { background:#E4405F; border-color:#E4405F; }
.footer-soc-yt:hover { background:#FF0000; border-color:#FF0000; }
.footer-soc-li:hover { background:#0A66C2; border-color:#0A66C2; }

/* Footer bottom with socials */
.footer-bottom { border-top:1px solid #1A2337; margin-top:24px; padding-top:20px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom-copy { font-size:12px; color:#3E4E68; }
.footer-bottom-socials { display:flex; gap:8px; align-items:center; }
.footer-bottom-socials span { font-size:11px; color:#3E4E68; margin-right:4px; }
.footer-bottom-socials a { width:26px; height:26px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:#5A6A85; font-size:12px; background:#151D2E; text-decoration:none; transition:all .15s; }
.footer-bottom-socials a:hover { color:#F1F5F9; background:#1C2640; }

/* ── ROI Chips (product cards) ── */
.roi-chip { font-size:10px; font-weight:600; padding:3px 9px; border-radius:4px; display:inline-flex; align-items:center; gap:4px; }
.roi-payback { background:rgba(6,182,212,.1); color:#06B6D4; border:1px solid rgba(6,182,212,.2); }
.roi-daily { background:rgba(16,185,129,.1); color:#10B981; border:1px solid rgba(16,185,129,.2); }

/* ── Nav Bulk Quote CTA ── */
.nav-cta-bulk { margin-left:auto; background:#F97316!important; color:#fff!important; font-weight:600!important; border-radius:8px; padding:10px 20px!important; font-size:13px!important; }
.nav-cta-bulk:hover { background:#FB923C!important; }

/* ── Floating WhatsApp ── */
.wa-floating { position:fixed; bottom:28px; right:28px; z-index:999; display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.wa-floating-btn { width:58px; height:58px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:30px; box-shadow:0 4px 20px rgba(37,211,102,.4); text-decoration:none; transition:all .2s; }
.wa-floating-btn:hover { transform:scale(1.08); box-shadow:0 6px 28px rgba(37,211,102,.5); color:#fff; }
.wa-floating-label { background:#0E1525; border:1px solid #1A2337; padding:8px 14px; border-radius:8px; font-size:13px; font-weight:500; color:#F1F5F9; box-shadow:0 4px 16px rgba(0,0,0,.3); white-space:nowrap; }

/* Back to top - shifted left for WhatsApp */
#back-to-top { right:94px; }
@media(max-width:767px) { #back-to-top { right:80px; bottom:20px; } }

/* ── Logo fix for dark theme ── */
#logo img {
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

/* ── Product image white container ── */
.product-thumb .image {
  background: #fff;
  border-radius: 12px 12px 0 0;
}

/* ── Product page main image ── */
.thumbnails .thumbnail {
  background: #fff;
  border: 1px solid #1E293B;
  border-radius: 12px;
  padding: 16px;
}
.thumbnails .thumbnail img {
  border-radius: 8px;
}

/* ── Image additional thumbnails ── */
.image-additional a {
  background: #fff;
}

/* ── Slideshow/banner container ── */
.slideshow img,
.swiper-slide img {
  border-radius: 12px;
}

/* ── Remove old WhatsApp extension button (we have our own now) ── */
#btnwhatsapp {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   URSA PRODUCT CARDS — Global (used on homepage, product page,
   category page, search results)
   ═══════════════════════════════════════════════════════════════ */
.u-pg{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.u-pc{background:#0E1525;border:1px solid #1A2337;border-radius:16px;overflow:hidden;transition:all .22s cubic-bezier(.4,0,.2,1);position:relative}
.u-pc:hover{border-color:#263150;transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,.45)}
.u-pc .u-im{background:#fff;height:230px;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;border-radius:16px 16px 0 0}
.u-pc .u-im img{max-height:200px;max-width:90%;object-fit:contain;transition:transform .25s}
.u-pc:hover .u-im img{transform:scale(1.05)}
.u-pc .u-tag{position:absolute;top:10px;left:10px;font-size:10px;font-weight:700;padding:4px 10px;border-radius:4px;text-transform:uppercase;z-index:2}
.u-pc .u-tag-sale{background:#EF4444;color:#fff}
.u-pc .u-tag-new{background:#06B6D4;color:#fff}
.u-pc .u-tag-hot{background:#F97316;color:#fff}
.u-pc .u-qs{position:absolute;bottom:0;left:0;right:0;display:flex;background:rgba(8,13,27,.88);backdrop-filter:blur(6px);border-top:1px solid #1A2337}
.u-pc .u-qs .u-q{flex:1;text-align:center;padding:7px 4px;border-right:1px solid #1A2337;font-family:'JetBrains Mono',monospace;font-size:11px}
.u-pc .u-qs .u-q:last-child{border-right:none}
.u-pc .u-qs .u-qv{color:#F1F5F9;font-weight:600;font-size:13px;display:block}
.u-pc .u-qs .u-ql{color:#3E4E68;font-size:9px;text-transform:uppercase;letter-spacing:.06em}
.u-pc .u-in{padding:16px 18px}
.u-pc .u-br{font-size:11px;font-weight:600;color:#F97316;text-transform:uppercase;letter-spacing:.07em;margin-bottom:4px}
.u-pc .u-nm{font-size:15px;font-weight:600;color:#F1F5F9;line-height:1.35;margin-bottom:8px;min-height:40px}
.u-pc .u-nm a{color:#F1F5F9;text-decoration:none;transition:color .15s}
.u-pc .u-nm a:hover{color:#F97316}
.u-pc .u-roi{display:flex;gap:5px;margin-bottom:10px;flex-wrap:wrap}
.u-pc .u-chip{font-size:10px;font-weight:600;padding:3px 9px;border-radius:4px;display:flex;align-items:center;gap:4px}
.u-pc .u-payback{background:rgba(6,182,212,.1);color:#06B6D4;border:1px solid rgba(6,182,212,.2)}
.u-pc .u-daily{background:rgba(16,185,129,.1);color:#10B981;border:1px solid rgba(16,185,129,.2)}
.u-pc .u-stock{background:rgba(16,185,129,.08);color:#10B981;border:1px solid rgba(16,185,129,.15)}
.u-pc .u-pr{display:flex;align-items:baseline;gap:8px;margin-bottom:12px}
.u-pc .u-price{font-size:22px;font-weight:800;color:#F1F5F9}
.u-pc .u-old{font-size:13px;color:#5A6A85;text-decoration:line-through}
.u-pc .u-sv{font-size:11px;font-weight:600;color:#10B981;background:rgba(16,185,129,.1);padding:2px 7px;border-radius:4px}
.u-pc .u-ab{width:100%;padding:12px;background:#F97316;color:#fff;border:none;border-radius:8px;font-size:13px;font-weight:700;font-family:'Inter',sans-serif;cursor:pointer;text-transform:uppercase;letter-spacing:.05em;transition:all .15s;display:flex;align-items:center;justify-content:center;gap:6px}
.u-pc .u-ab:hover{background:#FB923C;box-shadow:0 4px 16px rgba(249,115,22,.3)}
@media(max-width:1000px){.u-pg{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.u-pg{grid-template-columns:1fr}}

/* Category page 3-column grid */
.u-cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:991px){.u-cat-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:640px){.u-cat-grid{grid-template-columns:1fr}}
