:root {
  --app-bg: #f6f6f6;
  --app-card: #ffffff;
  --app-text: #1f1f1f;
  --app-muted: #6c757d;
  --app-accent: #f0f0f0;
  --app-border: #dcdcdc;
}

body {
  background: var(--app-bg);
  color: var(--app-text);
}

.app-hero {
  background: #fff;
  border-bottom: 1px solid var(--app-border);
}

.app-card {
  border-radius: 6px;
  border: 1px solid var(--app-border);
  box-shadow: none;
  background: var(--app-card);
}

.filter-panel .form-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.product-card img {
  height: 190px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--app-accent);
}

.product-link {
  cursor: pointer;
}

.product-card .badge {
  background: #fff;
  color: var(--app-text);
  font-weight: 500;
  border-radius: 4px;
  padding: 4px 10px;
  border: 1px solid var(--app-border);
}

.product-card .quick-view-btn {
  border-radius: 4px;
  background: #f6f6f6;
  border: 1px solid var(--app-border);
}

.product-card .quick-view-btn:hover {
  background: #ededed;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.variant-card {
  border: 1px solid var(--app-border);
  border-radius: 4px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
}

.variant-card .input-group {
  width: 110px;
}

.cart-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cart-float .btn {
  width: 48px;
  height: 48px;
  border-radius: 4px;
}

.admin-sidebar .card {
  border-radius: 6px;
  border: 1px solid var(--app-border);
}

.table thead th {
  color: var(--app-muted);
  font-weight: 600;
}

.flash {
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.flash.success {
  background: #ecfdf3;
  color: #0f766e;
  border: 1px solid #bbf7d0;
}

.flash.error {
  background: #fef2f2;
  color: #b42318;
  border: 1px solid #fecaca;
}

.cart-list-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--app-accent);
}

.variant-pill {
  border: 1px solid var(--app-border);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.8rem;
  background: #fff;
}

.qv-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(31, 28, 25, 0);
  backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, opacity 0.3s ease;
}

.qv-backdrop.active {
  opacity: 1;
  pointer-events: auto;
  background: rgba(31, 28, 25, 0.35);
  backdrop-filter: blur(4px);
}

.qv-modal {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: var(--app-card);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.96);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.qv-backdrop.active .qv-modal {
  opacity: 1;
  transform: scale(1);
}

.qv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--app-border);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.qv-image {
  flex-shrink: 0;
  width: 40%;
  background: var(--app-accent);
}

.qv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qv-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.qv-header {
  padding: 20px;
  border-bottom: 1px solid var(--app-border);
}

.qv-brand {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--app-muted);
}

.qv-title {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 500;
}

.qv-desc {
  margin-top: 4px;
  font-size: 12px;
  color: var(--app-muted);
}

.qv-fragrances {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

.qv-section-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--app-muted);
  margin-bottom: 10px;
}

.qv-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border: 1px solid var(--app-border);
  border-radius: 6px;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.qv-row.active {
  background: var(--app-text);
  color: #fff;
}

.qv-row-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.qv-row-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}


.qv-stock-label {
  font-size: 11px;
  color: var(--app-muted);
}

.qv-row.out-of-stock {
  opacity: 0.8;
}

.qv-row.out-of-stock .qv-stock-label {
  color: #b42318;
  font-weight: 600;
}

.qv-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid var(--app-border);
  background: #fff;
  cursor: pointer;
}

.qv-row.active .qv-btn {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.qv-qty {
  min-width: 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}

.qv-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--app-border);
}

.qv-add-btn {
  width: 100%;
  border: none;
  border-radius: 6px;
  padding: 12px 16px;
  background: var(--app-text);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.qv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 600;
}

.qv-badge.hidden {
  display: none;
}

@media (max-width: 720px) {
  .qv-modal {
    flex-direction: column;
    max-height: 90vh;
  }

  .qv-image {
    width: 100%;
    height: 220px;
  }
}

.pd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(246, 246, 246, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--app-border);
}

.pd-header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pd-header-title {
  font-size: 18px;
  font-weight: 500;
}

.pd-header-brand {
  font-size: 12px;
  color: var(--app-muted);
  letter-spacing: 0.05em;
}

.pd-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1px solid var(--app-border);
  border-radius: 6px;
  background: var(--app-card);
  color: var(--app-text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.pd-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--app-border);
  border-radius: 6px;
  background: var(--app-card);
}

.pd-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--app-text);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.pd-product {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.pd-image-wrapper {
  flex-shrink: 0;
  width: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--app-accent);
}

.pd-image-wrapper img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.pd-info-brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--app-muted);
}

.pd-info-name {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 500;
}

.pd-info-price {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 600;
}

.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pd-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  background: var(--app-accent);
  font-size: 12px;
  font-weight: 500;
  color: var(--app-muted);
}

.pd-divider {
  width: 100%;
  height: 1px;
  background: var(--app-border);
  margin: 24px 0;
  border: none;
}

.pd-desc-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--app-muted);
  margin-bottom: 8px;
}

.pd-desc-text {
  font-size: 14px;
  color: var(--app-muted);
}

.pd-fragrances {
  margin-top: 48px;
}

.pd-fragrances-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--app-border);
}

.pd-fragrances-header-left h3 {
  font-size: 20px;
  font-weight: 500;
}

.pd-fragrances-header-left p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--app-muted);
}

.pd-variant-count strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.pd-variant-count span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--app-muted);
}

.pd-frag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pd-frag-card {
  display: flex;
  flex-direction: column;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--app-card);
  border: 1px solid var(--app-border);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.pd-frag-card.active {
  background: var(--app-text);
  border-color: var(--app-text);
  color: #fff;
}

.pd-frag-card.out-of-stock {
  opacity: 0.45;
  pointer-events: none;
}

.pd-frag-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.pd-frag-controls {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: auto;
}

.pd-frag-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  background: var(--app-accent);
}

.pd-frag-card.active .pd-frag-btn {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.pd-frag-qty {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
}

.pd-frag-stock {
  margin-top: 10px;
  font-size: 11px;
  color: var(--app-muted);
}

.pd-frag-stock.zero {
  color: #a3845c;
}

.pd-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  background: rgba(246, 246, 246, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--app-border);
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.pd-sticky-footer.visible {
  transform: translateY(0);
}

.pd-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  gap: 20px;
}

.pd-sticky-summary {
  font-size: 14px;
  color: var(--app-muted);
}

.pd-sticky-summary strong {
  color: var(--app-text);
  font-weight: 600;
}

.pd-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  background: var(--app-text);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.pd-add-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 700;
}

.pd-add-badge.hidden {
  display: none;
}

@media (max-width: 800px) {
  .pd-header {
    padding: 14px 20px;
  }

  .pd-main {
    padding: 24px 20px 100px;
  }

  .pd-product {
    flex-direction: column;
    gap: 24px;
  }

  .pd-image-wrapper {
    width: 100%;
  }

  .pd-info-name {
    font-size: 24px;
  }

  .pd-info-price {
    font-size: 20px;
  }

  .pd-frag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pd-sticky-footer {
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .pd-frag-grid {
    grid-template-columns: 1fr;
  }

  .pd-back-btn span {
    display: none;
  }

  .pd-header-title {
    font-size: 15px;
  }
}

.adm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: rgba(246, 246, 246, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--app-border);
}

.adm-header-left small {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--app-muted);
}

.adm-header-left h1 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 2px;
}

.adm-header-left p {
  font-size: 13px;
  color: var(--app-muted);
  margin-top: 2px;
}

.adm-logout {
  padding: 9px 20px;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: var(--app-card);
  color: var(--app-text);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.adm-layout {
  display: flex;
  min-height: calc(100vh - 90px);
}

.adm-sidebar {
  width: 320px;
  flex-shrink: 0;
  border-right: 1px solid var(--app-border);
  background: var(--app-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.adm-sidebar-head {
  padding: 20px;
  border-bottom: 1px solid var(--app-border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.adm-sidebar-head h2 {
  font-size: 16px;
  font-weight: 600;
}

.adm-sidebar-head p {
  font-size: 12px;
  color: var(--app-muted);
  margin-top: 2px;
}

.adm-count {
  font-size: 12px;
  color: var(--app-muted);
}

.adm-create-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: var(--app-text);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.adm-filters {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-bottom: 1px solid var(--app-border);
}

.adm-field-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--app-muted);
  margin-bottom: 5px;
}

.adm-input,
.adm-select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: var(--app-bg);
  color: var(--app-text);
  font-size: 13px;
  font-family: inherit;
}

.adm-product-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.adm-product-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 10px;
  cursor: pointer;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.adm-product-item:hover {
  background: var(--app-accent);
}

.adm-product-item.selected {
  background: var(--app-text);
  color: #fff;
}

.adm-pi-brand {
  font-size: 11px;
  color: var(--app-muted);
  margin-top: 2px;
}

.adm-product-item.selected .adm-pi-brand {
  color: rgba(255, 255, 255, 0.5);
}

.adm-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.adm-badge.active {
  background: #e8f5ee;
  color: #2a7a4b;
}

.adm-badge.bajado {
  background: #fdf4e0;
  color: #b07d10;
}

.adm-detail {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
}

.adm-detail-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--app-muted);
  font-size: 14px;
}

.adm-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.adm-detail-head-left small {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--app-muted);
}

.adm-detail-head-left h2 {
  font-size: 26px;
  font-weight: 500;
  margin-top: 4px;
}

.adm-detail-meta {
  margin-top: 4px;
  font-size: 12px;
  color: var(--app-muted);
}

.adm-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.adm-form-group.full {
  grid-column: 1 / -1;
}

.adm-image-section {
  grid-column: 1 / -1;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border: 1px dashed var(--app-border);
  border-radius: 10px;
  background: var(--app-accent);
  margin-top: 4px;
}

.adm-image-preview {
  width: 140px;
  height: 105px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--app-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--app-muted);
}

.adm-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.adm-textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  background: var(--app-card);
  color: var(--app-text);
  font-size: 13px;
  font-family: inherit;
}

.adm-frag-section {
  margin-top: 40px;
  border-top: 1px solid var(--app-border);
  padding-top: 28px;
}

.adm-frag-header h3 {
  font-size: 18px;
  font-weight: 500;
}

.adm-frag-header p {
  font-size: 12px;
  color: var(--app-muted);
  margin-top: 2px;
}

.adm-frag-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.adm-frag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--app-card);
  border: 1px solid var(--app-border);
  gap: 12px;
}

.adm-frag-row-name {
  font-size: 13px;
  font-weight: 600;
  flex: 1;
  min-width: 0;
  text-transform: capitalize;
}

.adm-frag-row-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adm-frag-select {
  padding: 5px 28px 5px 10px;
  border: 1px solid var(--app-border);
  border-radius: 6px;
  background: var(--app-bg);
  color: var(--app-text);
  font-size: 12px;
  appearance: none;
}


.adm-select-add-option {
  color: #198754;
  font-weight: 600;
}

.adm-modal-form {
  grid-template-columns: 1fr 1fr;
}

.adm-frag-edit-btn {
  padding: 5px 12px;
  border: 1px solid var(--app-border);
  border-radius: 6px;
  background: transparent;
  color: var(--app-muted);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 900px) {
  .adm-layout {
    flex-direction: column;
  }
  .adm-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--app-border);
    max-height: 50vh;
  }
  .adm-detail {
    padding: 24px 20px;
  }
  .adm-form {
    grid-template-columns: 1fr;
  }
  .adm-header {
    padding: 16px 20px;
  }
}

.cart-toast-root {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-toast-card {
  width: 330px;
  min-height: 80px;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 10px 15px;
  background-color: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 15px;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast-card.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-toast-wave {
  position: absolute;
  transform: rotate(90deg);
  left: -31px;
  top: 32px;
  width: 80px;
  fill: #04e4003a;
}

.cart-toast-icon-container {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #04e40048;
  border-radius: 50%;
  margin-left: 8px;
}

.cart-toast-icon {
  width: 17px;
  height: 17px;
  color: #269b24;
}

.cart-toast-message-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 1;
  min-width: 0;
}

.cart-toast-message-text,
.cart-toast-sub-text {
  margin: 0;
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.cart-toast-message-text {
  color: #269b24;
  font-size: 16px;
  font-weight: 700;
}

.cart-toast-sub-text {
  font-size: 14px;
  color: #555;
}

.cart-toast-cross-icon {
  width: 18px;
  height: 18px;
  color: #555;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
}

.cart-toast-cross-icon svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 576px) {
  .cart-toast-root {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .cart-toast-card {
    width: 100%;
  }
}

.brand-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.brand-mosaic-tile {
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 12px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.brand-mosaic-tile img {
  width: 100%;
  max-height: 110px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.brand-mosaic-tile span {
  font-weight: 600;
  color: #1f1f1f;
}

.adm-mosaic-panel {
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.adm-config-tabs .nav-link {
  color: var(--app-text);
  border-color: var(--app-border);
}

.adm-config-tabs .nav-link.active {
  background: #fff;
  font-weight: 600;
}
