*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --green: #25d366;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --sidebar-w: 240px;
  --topbar-h: 64px;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1);
}

body { font-family: 'Inter', sans-serif; background: var(--gray-50); color: var(--gray-800); }

/* ===== LOGIN ===== */
.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, #0f3460 100%);
  padding: 20px;
}

.login-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 1rem;
}

.login-logo span { font-size: 1.8rem; }
.login-logo strong { font-size: 1.3rem; font-weight: 800; color: var(--primary); }

.login-card h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.login-card > p { color: var(--gray-600); font-size: .9rem; margin-bottom: 28px; }

.btn-login {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
  margin-top: 4px;
}

.btn-login:hover { background: #c73652; }
.btn-login:disabled { opacity: .6; cursor: not-allowed; }

/* ===== ADMIN APP LAYOUT ===== */
.admin-app {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: var(--sidebar-w);
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 50;
  transition: transform .3s;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 1rem;
}

.sidebar-logo span { font-size: 1.5rem; }
.sidebar-logo strong { font-size: 1.1rem; font-weight: 800; }

.sidebar-nav {
  padding: 16px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: all .15s;
}

.nav-item:hover { background: rgba(255,255,255,.08); color: var(--white); }
.nav-item.active { background: var(--accent); color: var(--white); }

.nav-icon { font-size: 1rem; width: 20px; text-align: center; }

.sidebar-user {
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  word-break: break-all;
}

.btn-logout {
  margin: 8px 12px 16px;
  padding: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font-size: .85rem;
  font-family: 'Inter', sans-serif;
  transition: all .15s;
}

.btn-logout:hover { background: rgba(233,69,96,.3); color: var(--white); }

/* MAIN */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* TOPBAR */
.topbar {
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 40;
}

.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--gray-600);
}

.sidebar-toggle:hover { background: var(--gray-100); }

.topbar-title { font-size: 1.1rem; font-weight: 700; flex: 1; }

/* PAGES */
.page { display: none; padding: 28px 24px; }
.page.active { display: block; }

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.page-header h2 { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.page-header p { color: var(--gray-400); font-size: .85rem; margin-top: 4px; }

/* TABLE TOOLBAR */
.table-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.search-input, .select-filter {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .15s;
  background: var(--white);
}

.search-input { flex: 1; min-width: 200px; }
.search-input:focus, .select-filter:focus { border-color: var(--accent); }

/* PRODUCTS TABLE */
.products-table { overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

th {
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--gray-200);
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .9rem;
  vertical-align: middle;
}

tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-50); }

.td-emoji { font-size: 1.5rem; text-align: center; }

.td-name strong { display: block; font-weight: 600; font-size: .9rem; }
.td-name small { color: var(--gray-400); font-size: .78rem; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.badge-laliga { background: #fff3e0; color: #e65100; }
.badge-premier { background: #e8f5e9; color: #1b5e20; }
.badge-ligue1 { background: #e3f2fd; color: #0d47a1; }
.badge-selecciones { background: #f3e5f5; color: #6a1b9a; }
.badge-local { background: #e0f2f1; color: #00695c; }

.status-on { color: #10b981; font-weight: 600; font-size: .82rem; }
.status-off { color: var(--gray-400); font-weight: 600; font-size: .82rem; }

.td-actions { display: flex; gap: 8px; }

.btn-edit, .btn-delete {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all .15s;
}

.btn-edit { background: var(--gray-100); color: var(--gray-800); }
.btn-edit:hover { background: var(--gray-200); }

.btn-delete { background: #fee2e2; color: #dc2626; }
.btn-delete:hover { background: #fecaca; }

.btn-sm-action {
  padding: 6px 12px; border-radius: 7px; font-size: .8rem; font-weight: 600;
  cursor: pointer; border: none; font-family: inherit;
  background: #2d4a6b; color: #e2e8f0; transition: background .15s;
}
.btn-sm-action:hover { background: #3a5f8a; }
.btn-sm-danger { background: #7f1d1d; color: #fca5a5; }
.btn-sm-danger:hover { background: #991b1b; }
.btn-sm-outline { background: transparent; border: 1px solid #4b6a8a; color: #94a3b8; }
.btn-sm-outline:hover { background: #1e3a5f; }

.td-check { width: 36px; text-align: center; }
.td-check input[type=checkbox] { width: 15px; height: 15px; cursor: pointer; accent-color: #2563eb; }
tr.row-selected { background: #0d2240 !important; }

.loading {
  text-align: center;
  padding: 60px;
  color: var(--gray-400);
  font-size: .95rem;
}

/* SETTINGS */
.settings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.settings-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.settings-card.full-width { grid-column: 1 / -1; }

.settings-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

.color-picker-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-picker-row input[type="color"] {
  width: 44px;
  height: 36px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  padding: 2px;
}

.color-picker-row span {
  font-size: .85rem;
  color: var(--gray-600);
  font-weight: 600;
  font-family: monospace;
}

.settings-preview {
  margin-top: 20px;
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.preview-header span { font-size: 1.2rem; }

.preview-badge {
  padding: 8px 16px;
  font-size: .8rem;
  color: var(--gray-400);
  background: var(--gray-50);
  text-align: center;
}

.link-display {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 10px;
}

.link-display span {
  flex: 1;
  font-size: .85rem;
  color: var(--gray-600);
  word-break: break-all;
  font-family: monospace;
}

.btn-copy {
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: background .15s;
}

.btn-copy:hover { background: #2d2d4e; }

.hint { font-size: .82rem; color: var(--gray-400); }

/* COMMON FIELDS */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-600);
}

.field input, .field textarea, .field select {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .15s;
  background: var(--white);
  color: var(--gray-800);
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
}

.field small { font-size: .78rem; color: var(--gray-400); }

/* BUTTONS */
.btn-primary {
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .15s;
  white-space: nowrap;
}

.btn-primary:hover { background: #c73652; }
.btn-primary:disabled { opacity: .6; cursor: not-allowed; }

.btn-secondary {
  padding: 10px 20px;
  background: var(--gray-100);
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .15s;
}

.btn-secondary:hover { background: var(--gray-200); }

.btn-danger {
  padding: 10px 20px;
  background: #dc2626;
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background .15s;
}

.btn-danger:hover { background: #b91c1c; }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn .2s ease;
}

.product-form-modal { max-width: 600px; }
.confirm-modal { max-width: 380px; padding: 32px; text-align: center; }
.confirm-modal h3 { font-size: 1.1rem; margin-bottom: 10px; }
.confirm-modal p { color: var(--gray-600); font-size: .9rem; margin-bottom: 24px; }

@keyframes modalIn {
  from { transform: scale(.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 { font-size: 1.1rem; font-weight: 700; }

.modal-close {
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}

.modal-close:hover { background: var(--gray-200); }

/* PRODUCT FORM */
.product-form { padding: 24px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.form-grid .field.span-2 { grid-column: 1 / -1; }

.sizes-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all .15s;
  user-select: none;
}

.size-toggle:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.size-toggle input { display: none; }

.toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-input {
  width: 18px !important;
  height: 18px !important;
  cursor: pointer;
  accent-color: var(--accent);
}

.toggle-label { font-size: .9rem; cursor: pointer; }

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  margin-top: 8px;
}

.error-msg {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .85rem;
  margin-bottom: 14px;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gray-800);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  z-index: 200;
  animation: toastIn .25s ease;
  box-shadow: var(--shadow-lg);
}

.toast.success { background: #059669; }
.toast.error { background: #dc2626; }

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .sidebar-toggle { display: flex; }
  .settings-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .field.span-2 { grid-column: 1; }
  .page { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .table-toolbar { flex-direction: column; }
  .search-input { min-width: unset; }
}

/* CUSTOM CATEGORIES */
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  min-height: 24px;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f4ff;
  border: 1px solid #c7d2fe;
  color: #3730a3;
  border-radius: 20px;
  padding: 4px 10px 4px 12px;
  font-size: 13px;
  font-weight: 500;
}

.category-chip button {
  background: none;
  border: none;
  cursor: pointer;
  color: #6366f1;
  font-size: 12px;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
}

.category-chip button:hover { opacity: 1; }

.add-category-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.add-category-row input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}

.add-category-row input:focus {
  outline: none;
  border-color: #e94560;
}

/* IMAGE UPLOAD */
.image-upload-area {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  transition: border-color .15s;
}

.image-upload-area:hover { border-color: var(--accent); }

.image-upload-area img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  display: block;
}

#imageUploadPlaceholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray-400);
  padding: 24px;
  text-align: center;
}

#imageUploadPlaceholder span { font-size: 2rem; }
#imageUploadPlaceholder p { font-size: .85rem; font-weight: 500; margin: 0; }
#imageUploadPlaceholder small { font-size: .75rem; }

.btn-remove-image {
  margin-top: 6px;
  background: none;
  border: none;
  color: #dc2626;
  font-size: .8rem;
  cursor: pointer;
  padding: 2px 0;
  font-family: 'Inter', sans-serif;
}

.btn-remove-image:hover { text-decoration: underline; }

.td-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
  background: #f9fafb;
}

/* MULTI-IMAGE GRID */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.image-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  flex-shrink: 0;
  background: #f9fafb;
}

.image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-thumb-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  background: rgba(0,0,0,.65);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.thumb-primary-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(233,69,96,.85);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  padding: 2px 0;
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* About point rows */
.about-point-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.about-point-row:last-of-type { border-bottom: none; }
.about-point-emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 60px;
}
.about-point-emoji label { font-size: .75rem; color: #9ca3af; text-align: center; }
.emoji-trigger {
  font-size: 1.6rem;
  background: var(--surface, #f9fafb);
  border: 2px solid var(--border, #e5e7eb);
  border-radius: 10px;
  width: 52px;
  height: 52px;
  cursor: pointer;
  transition: border-color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emoji-trigger:hover { border-color: var(--accent, #e94560); }
.about-point-fields {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* Emoji picker popup */
.emoji-picker {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  width: 272px;
  box-sizing: border-box;
}
.emoji-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 2px;
}
.emoji-opt {
  font-size: 1.15rem;
  text-align: center;
  cursor: pointer;
  padding: 5px 2px;
  border-radius: 6px;
  transition: background .1s;
  line-height: 1;
}
.emoji-opt:hover { background: #f3f4f6; }

/* Gallery editor */
.gallery-editor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-editor-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-img-upload {
  aspect-ratio: 1;
  border: 2px dashed #e5e7eb;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s;
}
.gallery-img-upload:hover { border-color: var(--accent, #e94560); }
.gallery-preview-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}
.gallery-title-input {
  font-size: .85rem;
  padding: 6px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.gallery-title-input:focus { border-color: var(--accent, #e94560); }
@media (max-width: 768px) {
  .gallery-editor-grid { grid-template-columns: repeat(2, 1fr); }
  .about-point-fields { grid-template-columns: 1fr; }
}

/* Plan enforcement */
.plan-locked {
  opacity: 0.45;
  cursor: not-allowed !important;
  pointer-events: none;
}
.plan-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(2px);
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  text-align: center;
  padding: 24px;
}
.plan-lock-overlay span { font-size: 2rem; }
.plan-lock-overlay p { font-size: .9rem; color: #374151; margin: 0; }
.plan-lock-overlay .plan-lock-btn {
  margin-top: 4px;
  background: var(--accent, #e94560);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}
.plan-lock-overlay .plan-lock-btn:hover { opacity: .88; }
#btnAddProduct:disabled {
  background: #9ca3af !important;
  cursor: not-allowed;
}
