:root {
  --color-primary: #1a1a2e;
  --color-accent: #c9a227;
  --color-accent-hover: #b08f1f;
  --color-bg: #fafaf8;
  --color-surface: #ffffff;
  --color-text: #1f2937;
  --color-muted: #6b7280;
  --color-success: #16a34a;
  --color-warning: #f59e0b;
  --color-danger: #dc2626;
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 26, 46, 0.12);
  --radius: 12px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.display-font {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}

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

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

/* Header */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--shadow-sm);
}

.site-header .navbar-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.site-header .navbar-brand span {
  color: var(--color-accent);
}

.site-logo {
  height: 36px;
  width: auto;
  display: block;
}

.site-logo-footer {
  height: 40px;
  filter: none;
}

.site-logo-hero {
  height: clamp(42px, 8vw, 64px);
  width: auto;
  margin-bottom: 0.25rem;
}

.btn-accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  font-weight: 600;
}

.btn-accent:hover,
.btn-accent:focus {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.btn-primary-dark {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.btn-primary-dark:hover {
  background: #12121f;
  border-color: #12121f;
  color: #fff;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2d2d4a 100%);
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.25), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* Cards */
.product-card {
  background: var(--color-surface);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card .card-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f4f6;
  position: relative;
}

.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.badge-promo {
  background: var(--color-danger);
  color: #fff;
}

.badge-stock-ok { background: rgba(22, 163, 74, 0.12); color: var(--color-success); }
.badge-stock-low { background: rgba(245, 158, 11, 0.12); color: var(--color-warning); }
.badge-stock-out { background: rgba(220, 38, 38, 0.12); color: var(--color-danger); }

.price-current {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
}

.price-old {
  text-decoration: line-through;
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Category pills */
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--color-surface);
  border: 1px solid rgba(26, 26, 46, 0.1);
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.category-pill:hover,
.category-pill.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* Cart drawer */
.cart-drawer .offcanvas-header {
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  background: #f3f4f6;
  flex-shrink: 0;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26, 26, 46, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  width: 32px;
  height: 32px;
  border: none;
  background: #f9fafb;
  color: var(--color-primary);
  font-weight: 600;
}

.qty-control span {
  min-width: 32px;
  text-align: center;
  font-weight: 600;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.5);
  z-index: 1040;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  padding-top: 5rem;
}

.search-overlay.show {
  display: flex;
}

.search-panel {
  background: var(--color-surface);
  border-radius: var(--radius);
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  cursor: pointer;
  transition: background 0.15s;
}

.search-result-item:hover {
  background: #f9fafb;
}

.search-result-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.85);
  margin-top: auto;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--color-accent);
}

/* WhatsApp intégré */
.wa-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1020;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wa-fab:hover {
  transform: scale(1.08);
  background: #20bd5a;
  color: #fff;
}

.wa-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-panel {
  position: fixed;
  bottom: 5.5rem;
  right: 1.25rem;
  z-index: 1030;
  width: min(380px, calc(100vw - 1.5rem));
  height: min(560px, calc(100vh - 7rem));
  background: #efeae2;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wa-panel-header {
  background: #075e54;
  color: #fff;
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wa-header-info {
  flex: 1;
  min-width: 0;
}

.wa-header-info strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.wa-header-info small {
  opacity: 0.85;
  font-size: 0.75rem;
}

.wa-header-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.25rem;
  opacity: 0.9;
}

.wa-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}

.wa-panel-footer {
  padding: 0.55rem 0.65rem;
  background: #f0f2f5;
}

.wa-welcome {
  text-align: center;
  margin: auto;
  padding: 1.5rem 1rem;
  color: #54656f;
}

.wa-welcome-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.wa-bubble {
  max-width: 82%;
  padding: 0.4rem 0.55rem 0.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.35;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  position: relative;
}

.wa-bubble-out {
  align-self: flex-end;
  background: #d9fdd3;
  border-top-right-radius: 2px;
}

.wa-bubble-in {
  align-self: flex-start;
  background: #fff;
  border-top-left-radius: 2px;
}

.wa-bubble-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.2rem;
  margin-top: 0.15rem;
  font-size: 0.65rem;
  color: #667781;
}

.wa-ticks {
  font-size: 0.85rem;
  color: #667781;
}

.wa-ticks.read {
  color: #53bdeb;
}

.wa-compose {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wa-input {
  flex: 1;
  width: 100%;
  border: none;
  border-radius: 24px;
  padding: 0.55rem 0.9rem;
  background: #fff;
  font-size: 0.9rem;
  outline: none;
  resize: none;
  margin-bottom: 0.4rem;
}

.wa-compose .wa-input {
  margin-bottom: 0;
}

.wa-start-form .wa-input:last-of-type {
  margin-bottom: 0.55rem;
}

.wa-send-round {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-send-full {
  width: 100%;
  border: none;
  border-radius: 24px;
  background: #25d366;
  color: #fff;
  padding: 0.55rem 1rem;
  font-weight: 600;
}

.wa-send-round:hover,
.wa-send-full:hover {
  background: #20bd5a;
}

/* Admin WhatsApp inbox */
.wa-admin-shell {
  display: flex;
  height: calc(100vh - 2rem);
  min-height: 520px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e9edef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.wa-admin-list {
  width: 340px;
  max-width: 40%;
  border-right: 1px solid #e9edef;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.wa-admin-list-head {
  background: #075e54;
  color: #fff;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-admin-search {
  padding: 0.5rem 0.75rem;
  background: #f0f2f5;
}

.wa-admin-search input {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  background: #fff;
  outline: none;
}

.wa-admin-threads {
  flex: 1;
  overflow-y: auto;
}

.wa-thread-item {
  width: 100%;
  border: none;
  background: #fff;
  text-align: left;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.75rem;
  border-bottom: 1px solid #f0f2f5;
  cursor: pointer;
}

.wa-thread-item:hover,
.wa-thread-item.active {
  background: #f0f2f5;
}

.wa-thread-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.wa-thread-body {
  flex: 1;
  min-width: 0;
}

.wa-thread-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}

.wa-thread-top strong {
  font-size: 0.95rem;
  color: #111b21;
}

.wa-thread-top span {
  font-size: 0.7rem;
  color: #667781;
  white-space: nowrap;
}

.wa-thread-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #667781;
  font-size: 0.82rem;
}

.wa-thread-preview p {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wa-unread-pill {
  background: #25d366;
  color: #fff;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.wa-admin-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #efeae2;
}

.wa-admin-chat-head {
  background: #f0f2f5;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #e9edef;
}

.wa-admin-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}

.wa-admin-compose {
  padding: 0.65rem 0.85rem;
  background: #f0f2f5;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.wa-admin-empty {
  margin: auto;
  text-align: center;
  color: #667781;
  padding: 2rem;
}

.wa-admin-empty i {
  font-size: 3rem;
  color: #25d366;
  display: block;
  margin-bottom: 0.75rem;
}

@media (max-width: 991.98px) {
  .wa-admin-shell {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .wa-admin-list {
    width: 100%;
    max-width: none;
    max-height: 280px;
  }

  .wa-admin-chat {
    min-height: 420px;
  }
}


/* Product page */
.product-gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #f3f4f6;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
}

.product-thumb.active,
.product-thumb:hover {
  border-color: var(--color-accent);
  opacity: 1;
}

.variant-btn {
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(26, 26, 46, 0.2);
  background: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem;
}

.variant-btn.active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.variant-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Checkout */
.checkout-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.checkout-step.active {
  color: var(--color-primary);
  font-weight: 600;
}

.checkout-step .step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.checkout-step.active .step-num {
  background: var(--color-accent);
  color: #fff;
}

.payment-option {
  border: 2px solid rgba(26, 26, 46, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.payment-option:hover,
.payment-option.selected {
  border-color: var(--color-accent);
  background: rgba(201, 162, 39, 0.05);
}

/* Status timeline */
.status-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.status-step {
  display: flex;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.status-step::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.status-step:last-child::before {
  display: none;
}

.status-step.done .status-dot {
  background: var(--color-success);
  border-color: var(--color-success);
}

.status-step.current .status-dot {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.status-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  background: #fff;
  flex-shrink: 0;
  z-index: 1;
}

/* Admin */
.admin-sidebar {
  background: var(--color-primary);
  min-height: 100vh;
  color: #fff;
}

.admin-sidebar .nav-link {
  color: rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  padding: 0.6rem 1rem;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ops-body {
  background: #eceae4;
}

.ops-app {
  display: flex;
  min-height: 100vh;
}

.ops-sidebar {
  width: 248px;
  flex-shrink: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ops-side-brand {
  padding: 1.15rem 1.1rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-side-logo {
  display: inline-flex;
  margin-bottom: 0.65rem;
}

.ops-side-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ops-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.ops-sidebar .ops-kicker {
  color: #c9a227;
}

.ops-node-id {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.ops-side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
  flex: 1;
}

.ops-nav-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
}

.ops-nav-link i {
  width: 1.1rem;
}

.ops-nav-code {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.38);
  width: 1.2rem;
}

.ops-nav-link:hover,
.ops-nav-link.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ops-nav-badge {
  margin-left: auto;
  background: #c9a227;
  color: #1a1a2e;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 1.25rem;
  text-align: center;
  padding: 0.05rem 0.35rem;
}

.ops-side-foot {
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ops-health-chip {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 0.45rem;
}

.ops-health-chip strong {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.ops-health-chip small {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.5);
}

.ops-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7280;
  box-shadow: 0 0 0 3px rgba(107, 114, 128, 0.2);
  flex-shrink: 0;
}

.ops-led[data-state="ok"] {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
}

.ops-led[data-state="warn"] {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.22);
}

.ops-led[data-state="down"] {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.22);
}

.ops-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.ops-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #1a1a2e;
  color: #fff;
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
}

.ops-topbar-left,
.ops-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ops-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.ops-topbar .ops-kicker {
  color: rgba(255, 255, 255, 0.5);
}

.ops-clock,
.ops-operator strong {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
}

.ops-operator {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.ops-status-pill {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ops-status-pill[data-state="ok"] {
  color: #86efac;
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.12);
}

.ops-status-pill[data-state="warn"] {
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.4);
  background: rgba(245, 158, 11, 0.12);
}

.ops-status-pill[data-state="down"] {
  color: #fca5a5;
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.12);
}

.ops-icon-btn {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.ops-canvas {
  padding: 1.25rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ops-kpi-grid,
.ops-grid,
.ops-grid-3 {
  display: grid;
  gap: 1rem;
}

.ops-kpi-grid {
  grid-template-columns: repeat(4, 1fr);
}

.ops-grid {
  grid-template-columns: 1.3fr 0.7fr;
}

.ops-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.ops-kpi,
.ops-panel {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(26, 26, 46, 0.04);
}

.ops-kpi {
  padding: 1rem 1.1rem 0.9rem;
}

.ops-kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
}

.ops-kpi-value {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
}

.ops-kpi-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: 0.7rem;
  color: var(--color-muted);
  font-size: 0.78rem;
}

.ops-spark {
  width: 88px;
  height: 28px;
  color: #c9a227;
  flex-shrink: 0;
}

.ops-delta {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
}

.ops-delta.is-up { color: #15803d; }
.ops-delta.is-down { color: #b91c1c; }
.ops-delta.is-flat { color: var(--color-muted); }

.ops-panel {
  padding: 1rem 1.1rem 1.05rem;
}

.ops-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.ops-panel h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.ops-link-btn {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: #1a1a2e;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 46, 0.2);
}

.ops-pipeline {
  display: grid;
  gap: 0.55rem;
}

.ops-pipe {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.ops-pipe-label {
  font-size: 0.82rem;
}

.ops-pipe-bar,
.ops-top .ops-pipe-bar {
  height: 6px;
  background: #f0eee8;
  border-radius: 99px;
  overflow: hidden;
  display: block;
}

.ops-pipe-bar i,
.ops-top .ops-pipe-bar i {
  display: block;
  height: 100%;
  background: #1a1a2e;
  border-radius: inherit;
}

.ops-pipe-count {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  min-width: 1.5rem;
  text-align: right;
}

.ops-row,
.ops-alert,
.ops-stock,
.ops-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  text-decoration: none;
  color: inherit;
}

.ops-row:last-child,
.ops-alert:last-child,
.ops-stock:last-child,
.ops-top:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.ops-row div:first-child,
.ops-stock div,
.ops-top .flex-grow-1 {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ops-row span,
.ops-stock span,
.ops-top span {
  color: var(--color-muted);
  font-size: 0.75rem;
}

.ops-row-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.ops-chip {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  background: #f3f1eb;
  color: #1a1a2e;
}

.ops-chip.is-nouvelle,
.ops-chip.is-warn { background: #fff4d6; color: #92400e; }
.ops-chip.is-livree,
.ops-chip.is-ok { background: #dcfce7; color: #166534; }
.ops-chip.is-annulee,
.ops-chip.is-crit { background: #fee2e2; color: #991b1b; }
.ops-chip.is-expediee,
.ops-chip.is-preparation,
.ops-chip.is-confirmee { background: #e0e7ff; color: #3730a3; }

.ops-alert {
  justify-content: flex-start;
}

.ops-stock img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
}

.ops-rank {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--color-muted);
}

.ops-top {
  align-items: center;
}

.ops-empty {
  color: var(--color-muted);
  font-size: 0.88rem;
  padding: 0.5rem 0;
}

.ops-empty.is-ok {
  color: #166534;
}

.ops-topology {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.ops-node-card {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 10px;
  background: #fafaf7;
  min-width: 0;
}

.ops-node-card small {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  color: var(--color-muted);
}

.ops-link {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  color: var(--color-muted);
}

.ops-telemetry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
}

.ops-telemetry div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ops-telemetry span {
  font-size: 0.68rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ops-telemetry strong {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 500;
}

@media (max-width: 1199.98px) {
  .ops-kpi-grid,
  .ops-grid,
  .ops-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .ops-kpi-grid,
  .ops-grid,
  .ops-grid-3 {
    grid-template-columns: 1fr;
  }

  .ops-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .ops-pipe {
    grid-template-columns: 1fr auto;
  }

  .ops-pipe-label {
    grid-column: 1 / -1;
  }

  .ops-canvas {
    padding: 1rem;
  }
}

.stat-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow: var(--shadow-sm);
}

.stat-card .stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-muted);
}

.empty-state i {
  font-size: 3rem;
  opacity: 0.4;
  margin-bottom: 1rem;
}

/* Mobile bottom nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  z-index: 1025;
  display: none;
  padding: 0.5rem 0;
}

.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.7rem;
  color: var(--color-muted);
  flex: 1;
  padding: 0.25rem;
}

.mobile-bottom-nav a.active {
  color: var(--color-accent);
}

.mobile-bottom-nav i {
  font-size: 1.25rem;
}

@media (max-width: 767.98px) {
  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 70px;
  }

  .whatsapp-fab,
  .wa-fab {
    bottom: 5rem;
  }

  .wa-panel {
    bottom: 9.5rem;
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    height: min(520px, calc(100vh - 11rem));
  }
}

/* Toast custom */
.toast-container {
  z-index: 1090;
}

/* Filters sidebar */
.filter-section {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(26, 26, 46, 0.06);
}

/* Testimonials */
.testimonial-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(26, 26, 46, 0.06);
  height: 100%;
}

.testimonial-card .stars {
  color: var(--color-accent);
}

/* Page layout */
.page-wrapper {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.section-title {
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
}

/* Modern refresh */
:root {
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-lg: 0 20px 50px rgba(26, 26, 46, 0.12);
  --gradient-hero: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 40%, #252545 100%);
  --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%);
}

body {
  background: linear-gradient(180deg, #fafaf8 0%, #f3f2ef 100%);
  -webkit-font-smoothing: antialiased;
}

.text-accent { color: var(--color-accent) !important; }

.hero-wrap { padding: 1.5rem 0 0; }

.hero-section {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  color: #e8c547;
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
  background: transparent;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.hero-trust i { color: var(--color-accent); margin-right: 0.35rem; }

.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-frame img { width: 100%; height: auto; display: block; }

.hero-visual { display: none; }

@media (min-width: 992px) {
  .hero-section { padding: 3.5rem 3rem; }
  .hero-visual { display: block; }
}

/* Home Accueil — full-bleed hero */
.home-hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0f0f18;
}

.home-hero-media {
  position: absolute;
  inset: 0;
}

.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.45s ease;
}

.home-hero-img.is-fading {
  opacity: 0;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 15, 24, 0.35) 0%, rgba(15, 15, 24, 0.55) 40%, rgba(15, 15, 24, 0.92) 100%),
    linear-gradient(90deg, rgba(15, 15, 24, 0.75) 0%, rgba(15, 15, 24, 0.2) 55%, transparent 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.5rem;
  animation: homeHeroIn 0.8s ease both;
}

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

.home-hero-brand {
  margin-bottom: 0.75rem;
}

.home-hero-brand::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 0.65rem;
  background: var(--color-accent);
}

.home-hero-title {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 18ch;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.home-hero-lead {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-sub {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.home-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(201, 162, 39, 0.18), transparent 50%),
    linear-gradient(180deg, #f4f1e8, #ebe6d8);
  border: 1px solid rgba(26, 26, 46, 0.06);
}

.home-promo-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a7018;
  margin-bottom: 0.5rem;
}

.home-promo-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.home-panel {
  display: block;
  height: 100%;
  padding: 1.5rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(26, 26, 46, 0.08);
  background: #fff;
  color: var(--color-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 26, 46, 0.08);
  color: var(--color-text);
}

.home-panel i {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.home-panel-chat {
  border: none;
  cursor: pointer;
}

.home-panel-chat i {
  color: #25d366;
}

@media (max-width: 767.98px) {
  .home-hero {
    min-height: 72vh;
  }

  .home-hero-inner {
    padding: 3rem 0 2.5rem;
  }
}


.section-block { padding: 2.5rem 0; }

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

.section-link {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.section-link:hover { color: var(--color-accent-hover); }

.category-card { display: block; text-align: center; }

.category-card-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover .category-card-img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-card-img img { width: 100%; height: 100%; object-fit: cover; }

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.5), transparent);
}

.category-card-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

.product-card {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.06);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-body { padding: 1rem 1.1rem 1.25rem; }

.product-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-weight: 600;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.35;
}

.badge-new {
  background: var(--color-primary) !important;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card:hover .product-card-overlay { opacity: 1; }

.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.img-fallback {
  object-fit: contain !important;
  padding: 1rem;
  background: #f3f4f6;
}

.promo-banner {
  background: var(--gradient-gold);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.25);
}

.promo-banner-tag {
  display: inline-block;
  background: rgba(0, 0, 0, 0.15);
  color: #1a1a2e;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.promo-banner h3 { color: #1a1a2e; font-size: 1.75rem; }

.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.testimonial-card {
  border: none;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.06);
}

.btn-accent {
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.product-gallery-main {
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 26, 46, 0.06);
}

/* Forum / Espace de discussion */
.forum-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
  color: #fff;
  border-radius: 16px;
}

.forum-hero .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
}

.forum-side-card {
  background: var(--color-surface);
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 14px;
  padding: 1.15rem;
}

.forum-topic-card {
  width: 100%;
  display: flex;
  gap: 0.9rem;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.forum-topic-card:hover {
  box-shadow: 0 8px 24px rgba(26, 26, 46, 0.08);
  transform: translateY(-1px);
}

.forum-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.forum-avatar-lg {
  width: 52px;
  height: 52px;
  font-size: 1rem;
}

.forum-topic-main {
  flex: 1;
  min-width: 0;
}

.forum-topic-title {
  color: var(--color-text);
  font-size: 1rem;
}

.forum-topic-excerpt {
  color: var(--color-muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.forum-topic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.forum-pin {
  background: rgba(201, 162, 39, 0.15);
  color: #8a7018;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.forum-post,
.forum-reply-form {
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 14px;
  padding: 1.25rem;
}

.forum-post-body {
  white-space: pre-wrap;
  line-height: 1.55;
}

.forum-reply {
  display: flex;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
}

.forum-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-muted);
  background: #fff;
  border-radius: 14px;
  border: 1px dashed rgba(26, 26, 46, 0.12);
}

.forum-empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

@media (max-width: 767.98px) {
  .mobile-bottom-nav a {
    font-size: 0.65rem;
  }

  .mobile-bottom-nav a i {
    font-size: 1.15rem;
  }
}

.admin-product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.admin-image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-image-card {
  width: 120px;
  background: #f8f8f6;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.admin-image-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.admin-image-actions {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.35rem;
}
