:root {
  --ink: #171717;
  --sun: #d9622c;
  --cream: #f6f3ee;
  --border: rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  flex: 1;
}

button {
  font: inherit;
  cursor: pointer;
}

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-header .inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mark {
  display: block;
  padding: 0.25rem 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-mark:active {
  transform: scale(0.94);
}

.logo-mark img {
  height: 52px;
  width: auto;
  display: block;
}

.cart-button {
  position: relative;
  border: none;
  background: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cart-button:active {
  background: rgba(0, 0, 0, 0.05);
  transform: scale(0.9);
}

.cart-count {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--sun);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  animation: popIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at 50% 0%, #262220 0%, var(--ink) 65%);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem 3.5rem;
  overflow: hidden;
}

.hero-inner {
  max-width: 32rem;
  margin: 0 auto;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 0.75rem;
  animation: heroLogoIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both, floatY 5s ease-in-out 0.9s infinite;
  filter: drop-shadow(0 0 28px rgba(217, 98, 44, 0.35));
}

.hero h1 {
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.hero .btn {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both,
    btnGlow 2.6s ease-in-out 1.1s infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  padding: 0.9rem 1.75rem;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--sun);
  color: #fff;
  animation: btnGlow 2.6s ease-in-out infinite;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    75deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: btnShine 3.2s ease-in-out infinite;
  animation-delay: 1s;
}

.btn-primary:hover {
  box-shadow: 0 8px 26px rgba(217, 98, 44, 0.5);
}

@keyframes btnGlow {
  0%,
  100% {
    box-shadow: 0 6px 20px rgba(217, 98, 44, 0.35);
  }
  50% {
    box-shadow: 0 6px 28px rgba(217, 98, 44, 0.6);
  }
}

@keyframes btnShine {
  0% {
    left: -60%;
  }
  35%,
  100% {
    left: 130%;
  }
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  opacity: 0.85;
  transform: translateY(0) scale(0.97);
}

.btn-block {
  width: 100%;
  padding: 1.05rem;
}

/* ── Keyframes ────────────────────────────────────────── */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── Product grid ─────────────────────────────────────── */
.shop-section {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.shop-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.shop-heading h2 {
  font-size: 1.15rem;
  margin: 0;
}

.shop-heading .count {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}

.category-filter {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.9rem;
  margin-bottom: 0.4rem;
  scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
  display: none;
}

.category-pill {
  flex-shrink: 0;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.82rem;
  font-weight: 500;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.category-pill:hover {
  border-color: rgba(217, 98, 44, 0.45);
  color: var(--ink);
}

.category-pill:active {
  transform: scale(0.94);
}

.category-pill.selected {
  border-color: var(--sun);
  background: rgba(217, 98, 44, 0.08);
  color: var(--sun);
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(217, 98, 44, 0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 0.75rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.product-card.in-view {
  animation-play-state: running;
}

.product-card .thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #faf8f4, var(--cream));
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  padding: 0.65rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover .thumb {
  box-shadow: 0 16px 28px -12px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

/* Soft vignette so photos with busy or dark real-world backgrounds
   (lifestyle shots, not flat mockups) fade toward the card's own
   background at the edges instead of showing a hard rectangle of
   whatever was behind the product when it was photographed. */
.product-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0.65rem var(--cream);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 70%, black 100%);
  mask-image: radial-gradient(ellipse at center, transparent 70%, black 100%);
  pointer-events: none;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .thumb img {
  transform: scale(1.06);
}

.product-card:active .thumb img {
  transform: scale(1.02);
}

.product-card .info {
  padding: 0.6rem 0.1rem 0;
}

.product-card .name {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}

.product-card .price {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.15rem;
}

/* ── Product detail ───────────────────────────────────── */
.product-detail {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem 1rem 4rem;
}

.product-detail .grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .product-detail .grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.product-detail .main-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #faf8f4, var(--cream));
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-detail .main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1.25rem var(--cream);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 68%, black 100%);
  mask-image: radial-gradient(ellipse at center, transparent 68%, black 100%);
  pointer-events: none;
}

.product-detail > .grid > div:last-child {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.product-detail .main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-detail h1 {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.product-detail .price {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 1rem;
}

.product-detail .desc {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.size-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.size-btn {
  min-width: 44px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.size-btn:active {
  transform: scale(0.92);
}

.size-btn.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: scale(1.05);
}

#add-to-bag {
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, opacity 0.2s ease;
}

#add-to-bag:active {
  transform: scale(0.97);
}

#add-to-bag.added {
  background: #1f7a3f;
}

.perks {
  margin-top: 1.5rem;
  padding-left: 1.1rem;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.9;
}

.related-heading {
  font-size: 1rem;
  font-weight: 600;
  margin: 3rem 0 1rem;
}

/* ── Cart drawer ──────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  pointer-events: none;
}

.cart-overlay.open {
  visibility: visible;
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cart-overlay.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-overlay.open .cart-panel {
  transform: translateX(0);
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-panel-header h2 {
  font-size: 1rem;
  margin: 0;
}

.icon-btn {
  border: none;
  background: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.icon-btn:active {
  background: rgba(0, 0, 0, 0.05);
}

.cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1rem;
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
}

.cart-line {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  animation: fadeUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cart-line:last-child {
  border-bottom: none;
}

.cart-line .thumb {
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 0.6rem;
  overflow: hidden;
  background: var(--cream);
}

.cart-line .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-line .details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-line .name {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}

.cart-line .size {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
}

.cart-line .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

.qty-control button {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  font-size: 0.9rem;
  transition: transform 0.12s ease;
}

.qty-control button:active {
  transform: scale(0.85);
}

.qty-control span {
  width: 22px;
  text-align: center;
  font-size: 0.85rem;
}

.cart-line .remove {
  border: none;
  background: none;
  align-self: flex-start;
  color: rgba(0, 0, 0, 0.3);
  padding: 0;
}

.cart-panel-footer {
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cart-shipping-note {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.75rem;
}

/* ── Checkout ─────────────────────────────────────────── */
.checkout-page {
  max-width: 48rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 4rem;
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.checkout-page h1 {
  font-size: 1.3rem;
  margin: 0 0 1.25rem;
}

.order-summary {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 2rem;
}

.order-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.order-line:first-child {
  padding-top: 0;
}

.order-line:last-child {
  border-bottom: none;
}

.order-line .thumb {
  width: 48px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--cream);
}

.order-line .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-line .info {
  flex: 1;
  font-size: 0.85rem;
}

.order-line .meta {
  color: rgba(0, 0, 0, 0.5);
}

.order-totals {
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  font-size: 0.85rem;
}

.order-totals .row {
  display: flex;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.6);
  padding: 0.15rem 0;
}

.order-totals .row.total {
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  padding-top: 0.4rem;
}

.form-section {
  margin-bottom: 1.5rem;
}

.form-section h2 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  margin: 0 0 0.75rem;
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.35rem;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
  padding: 0.8rem 0.9rem;
  font-size: 1rem;
  background: #fff;
  font-family: inherit;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--ink);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 2.75rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: rgba(0, 0, 0, 0.55);
  cursor: pointer;
  padding: 0.4rem;
  line-height: 0;
}

.password-toggle:hover {
  color: var(--ink);
}

.form-error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 0.7rem 0.9rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.form-hint {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
  margin-top: 0.6rem;
}

/* ── Order status page ────────────────────────────────── */
.order-status {
  max-width: 30rem;
  margin: 0 auto;
  padding: 4.5rem 1rem;
  text-align: center;
  animation: fadeIn 0.4s ease both;
}

.status-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  background: var(--cream);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.status-icon.error {
  background: #fef2f2;
}

.order-status h1 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.order-status p {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.order-status .btn {
  margin-top: 2rem;
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.4);
}

.site-footer p {
  margin: 0.15rem 0;
}

.admin-link {
  color: inherit;
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.admin-link:hover {
  opacity: 0.65;
}

/* ── Admin pages ──────────────────────────────────────── */
.admin-page {
  max-width: 26rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
  animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.admin-page h1 {
  font-size: 1.3rem;
  margin: 0 0 1.25rem;
}

.admin-page-wide {
  max-width: 42rem;
}

.admin-catalog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-catalog-header h1 {
  margin: 0;
}

.admin-catalog-actions {
  display: flex;
  gap: 0.6rem;
}

.catalog-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.catalog-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

.catalog-row-thumb {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.6rem;
  overflow: hidden;
  background: var(--cream);
}

.catalog-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-row-info {
  flex: 1;
  min-width: 0;
}

.catalog-row-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.catalog-row-meta {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.55);
  text-transform: capitalize;
}

.catalog-row-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.catalog-delete-btn {
  color: #b91c1c;
}

.product-form-panel {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.product-form-panel h2 {
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.image-upload {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.image-upload img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.6rem;
  object-fit: cover;
  background: var(--cream);
}

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
