:root {
  --ink: #1c1917;
  --muted: #78716c;
  --paper: #faf7f2;
  --card: #ffffff;
  --accent: #c45c26;
  --accent-dark: #9a4318;
  --line: #e7e0d6;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
}
h1, h2, h3, .navbar-brand, .uk-brand {
  font-family: Fraunces, Georgia, serif;
}
.uk-topbar { background: #2a211c; color: #f5efe6; }
.uk-nav { background: #fff; border-bottom: 1px solid var(--line); }
.navbar-brand { font-size: 1.45rem; color: var(--ink) !important; }
.uk-search { min-width: 180px; background: var(--paper); border-color: var(--line); }
.uk-icon-link { color: var(--ink); font-size: 1.2rem; text-decoration: none; position: relative; }
.uk-badge {
  position: absolute; top: -8px; right: -10px;
  background: var(--accent); color: #fff; border-radius: 99px;
  font-size: 10px; min-width: 16px; text-align: center; line-height: 16px;
}
.uk-btn { background: var(--accent); color: #fff; border: 0; }
.uk-btn:hover { background: var(--accent-dark); color: #fff; }
.uk-btn-outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.uk-hero { padding: 4rem 0 2rem; }
.uk-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
.uk-kicker { letter-spacing: .16em; text-transform: uppercase; font-size: .75rem; color: var(--accent); }
.uk-hero-img { width: 100%; height: 420px; object-fit: cover; border-radius: 24px; }
.uk-cat {
  display: flex; justify-content: space-between; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1.25rem 1.4rem; color: inherit; text-decoration: none; font-weight: 600;
}
.uk-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; position: relative; }
.uk-card-img { display: block; aspect-ratio: 4/5; overflow: hidden; background: #eee; }
.uk-card-img img { width: 100%; height: 100%; object-fit: cover; }
.uk-price { font-weight: 700; }
.uk-mrp { text-decoration: line-through; color: var(--muted); font-weight: 400; margin-left: .35rem; }
.uk-pdp-img { width: 100%; border-radius: 20px; object-fit: cover; max-height: 560px; }
.uk-cart-row {
  display: flex; gap: 1rem; align-items: center; background: #fff;
  border: 1px solid var(--line); border-radius: 16px; padding: 1rem; margin-bottom: .75rem;
}
.uk-cart-row img { width: 72px; height: 90px; object-fit: cover; border-radius: 8px; }
.uk-summary { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1.25rem; }
.uk-footer { background: #2a211c; color: #f5efe6; }
.uk-footer a { color: #e7d5c4; text-decoration: none; }
.uk-steps { display: flex; gap: 1rem; padding-left: 1rem; }
.uk-steps li { color: var(--muted); }
.uk-steps li.active { color: var(--accent); font-weight: 700; }
.uk-prose p { color: #444; }
.list-group-item.active { background: var(--accent); border-color: var(--accent); }

.uk-admin { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.uk-aside { background: #1c1917; color: #f5efe6; padding: 1.5rem 1rem; }
.uk-aside a { color: #e7d5c4; text-decoration: none; display: block; padding: .45rem .7rem; border-radius: 8px; }
.uk-aside a:hover, .uk-aside a.active { background: #3f332c; color: #fff; }
.uk-admin-main { padding: 1.5rem; }

@media (max-width: 991px) {
  .uk-admin { grid-template-columns: 1fr; }
  .uk-hero-img { height: 240px; }
  .uk-cart-row { flex-wrap: wrap; }
}
