:root {
  --product-card-height: 500px; /* Общая высота карточки товара - измените это значение для регулировки высоты всех карточек */
}

body { font-family: system-ui, -apple-system, sans-serif; margin: 0; padding: 0; background: #f5f5f5; }
.container { max-width: 1400px; margin: 0 auto; padding: 20px; position: relative; }
.main-content { max-width: 1100px; margin: 0 auto; }
.cart-sidebar {
  position: fixed;
  right: 20px;
  top: 140px; /* Moved further down to avoid header overlap */
  width: 300px;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  height: fit-content;
  display: none;
}

.cart-sidebar.open {
  display: block;
}

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-sidebar-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.cart-close-btn:hover {
  background: #f3f4f6;
  color: #111827;
}
h1 { margin-bottom: 10px; text-align: center; }
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 24px; align-items: start; }
.product { background: #fff; 
  padding: 20px;
  border-radius:8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative; transition: all 0.3s ease;
  outline: 2px solid transparent; 
  outline-offset: -2px; 
  display: flex; flex-direction: column; 
  height: var(--product-card-height);
  overflow: hidden; }
.product:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); outline-color: #10b981; }
/* Специальный стиль для заголовка товара в карточке - отдельный класс чтобы не конфликтовать с другими стилями */
.product-title-in-card {
  margin: 0 0 4px !important; 
  font-size: 19px !important; 
  font-weight: 600 !important; 
  flex-shrink: 0 !important;
  line-height: 1.2 !important;
  height: 2.4em !important; /* Фиксированная высота: 1.2em * 2 = 2.4em */
  max-height: 2.4em !important; /* Максимум 2 строки: 1.2em * 2 = 2.4em */
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  padding: 0 !important;
  min-height: 0 !important;
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box !important;
  width: 100%;
  text-overflow: ellipsis;
}

/* Также применяем к h2 внутри product-link для обратной совместимости */
.product .product-link > h2 {
  margin: 0 0 4px !important; 
  font-size: 19px !important; 
  font-weight: 600 !important; 
  flex-shrink: 0 !important;
  line-height: 1.2 !important;
  height: 2.4em !important; /* Фиксированная высота: 1.2em * 2 = 2.4em */
  max-height: 2.4em !important; /* Максимум 2 строки: 1.2em * 2 = 2.4em */
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  padding: 0 !important;
  min-height: 0 !important;
  word-wrap: break-word;
  word-break: break-word;
  box-sizing: border-box !important;
  width: 100%;
  text-overflow: ellipsis;
}

/* Общий стиль для h2 в продуктах (для других мест, если нужно) */
.product h2 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 600;
}
.product p { margin: 0 0 8px; font-size: 14px; color: #444; }

.product .description { 
  margin: 4px 0 2px 0; 
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
  flex: 0 1 auto;
  min-height: 0;
  display: block;
}

.product .description.markdown-content {
  line-height: 1.4;
}

.product .description.markdown-content p {
  margin: 0.3em 0;
}

.product .description.markdown-content ul,
.product .description.markdown-content ol {
  margin: 0.3em 0;
}

.product .description.markdown-content li {
  margin-bottom: 0.1em;
}

.product:hover .description {
  opacity: 0.9;
}

.product .description::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.9));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.product:hover .description::after {
  opacity: 0.8;
}

.product .see-more {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #3b82f6;
  font-weight: bold;
}

.price { font-weight: 600; margin-bottom: 0; }
.stock { font-size: 13px; color: #555; margin-bottom: 0; }
.product-bottom-section {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 8px;
  flex-shrink: 0;
  flex-grow: 0;
}
.product-price-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.product-price-status .out-of-stock {
  margin-top: 0;
  margin-bottom: 0;
}
.actions { 
  display: flex; 
  flex-direction: column; 
  gap: 6px; 
  flex-shrink: 0;
}
.product-options {
  flex-shrink: 0;
  max-height: 150px;
  overflow-y: auto;
}
.product-actions-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.qty-controls { 
  display: inline-flex; 
  align-items: center; 
  gap: 0;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.qty-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  color: #6b7280;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  user-select: none;
  position: relative;
  border-radius: 0;
}
.qty-btn:hover {
  color: #111827;
  background: #f9fafb;
  transform: none;
}
.qty-btn:active {
  background: #f3f4f6;
  transform: scale(0.95);
}
.qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.qty-minus {
  border-right: 1px solid #e5e7eb;
}
.qty-plus {
  border-left: 1px solid #e5e7eb;
}
.qty-input { 
  width: 50px; 
  height: 32px;
  padding: 0; 
  text-align: center; 
  border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  border-radius: 0;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  transition: background 0.2s ease;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-input:focus {
  outline: none;
  background: #f9fafb;
}
.qty-controls:focus-within {
  border-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}
.field { margin-bottom: 12px; }
.field label { display: block; font-size: 14px; margin-bottom: 4px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 8px; border-radius: 6px; border: 1px solid #ccc; font-size: 14px; box-sizing: border-box;
  background: #fff;
  transition: border-color 0.3s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.1);
}
.field select {
  cursor: pointer;
}
.field select:disabled {
  background: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
}
.field textarea { resize: vertical; min-height: 60px; }
.field small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}
button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: #111827;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

button:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
button:disabled { opacity: .5; cursor: default; transform: none; box-shadow: none; }
.top-note { font-size: 14px; color: #555; margin-bottom: 16px; text-align: center; }
.footer { margin-top: 24px; font-size: 12px; color: #777; text-align: center; }
.cart-summary { display: none; }
.cart-items { margin-bottom: 16px; }
.cart-item { 
  display: flex; 
  flex-direction: column;
  padding: 12px 0; 
  border-bottom: 1px solid #eee; 
}
.cart-item > div:first-child {
  margin-bottom: 8px;
}
.cart-item .qty-controls {
  width: fit-content;
  margin: 8px 0;
}
.cart-item .item-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.cart-total { font-weight: bold; font-size: 18px; text-align: right; padding: 16px 0; }
.remove-btn { background: #ef4444; padding: 4px 8px; font-size: 12px; border-radius: 4px; transition: background-color 0.3s ease; }
.remove-btn:hover { 
  background: #dc2626; 
}
.add-to-cart-btn { background: #10b981; padding: 6px 12px; font-size: 14px; transition: background-color 0.3s ease; }
.add-to-cart-btn:hover { 
  background: #0da271; 
}
.checkout-btn { background: #3b82f6; width: 100%; margin-top: 10px; transition: background-color 0.3s ease; }
.checkout-btn:hover { 
  background: #2563eb; 
}
.empty-cart-message { text-align: center; padding: 20px; }
.out-of-stock { color: #ef4444; font-weight: bold; margin-top: 0; transition: all 0.3s ease; }
.out-of-stock:hover { opacity: 0.8; }
@media (max-width: 768px) {
  .cart-sidebar { position: relative; right: auto; top: auto; width: auto; margin: 20px 0; }
}

/* Product link styles */
.product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  margin: -10px -10px 2px -10px;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  flex: 0 1 auto;
  min-height: 0;
  gap: 0;
  align-items: flex-start;
}

.product-link:hover,
.product-link:focus {
  background-color: #f8f9fa;
}

/* Make entire product card appear clickable */
.product {
  cursor: pointer;
}

/* Product detail page styles */
.product-detail {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 800px;
  margin: 0 auto;
}

.product-detail h1 {
  margin-top: 0;
  font-size: 28px;
  font-weight: 600;
}

.product-detail .product-info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.back-button {
  display: block;
  background: #10b981;
  color: white;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin: 20px auto;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.back-button:hover {
  background: #059669;
}

/* Checkout specific styles */
.cart-review { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.05); margin-bottom: 20px; }


/* Markdown content styles */
.markdown-content h1, .markdown-content h2, .markdown-content h3, .markdown-content h4, .markdown-content h5, .markdown-content h6 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.markdown-content h1 { font-size: 1.5em; }
.markdown-content h2 { font-size: 1.3em; }
.markdown-content h3 { font-size: 1.1em; }

.markdown-content ul, .markdown-content ol {
  padding-left: 1.5em;
  margin: 0.5em 0;
}

.markdown-content li {
  margin-bottom: 0.2em;
}

.markdown-content p {
  margin: 0.5em 0;
}

.markdown-content code {
  background-color: #f0f0f0;
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-family: monospace;
}

.markdown-content pre {
  background-color: #f0f0f0;
  padding: 0.5em;
  border-radius: 5px;
  overflow-x: auto;
}

.markdown-content pre code {
  background: none;
  padding: 0;
}

.markdown-content blockquote {
  border-left: 3px solid #ccc;
  margin: 0.5em 0;
  padding-left: 1em;
  color: #666;
}

.markdown-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 10px 0;
}

/* Video styles */
.video-wrapper {
  margin: 16px 0;
}

.video-wrapper video {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.markdown-content {
  line-height: 1.6;
}

/* Spoiler styles */
.markdown-content details {
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.markdown-content summary {
  cursor: pointer;
  font-weight: bold;
  padding: 0.5rem;
  margin: -0.5rem;
  border-radius: 4px;
  background-color: #eee;
  transition: background-color 0.3s ease;
}

.markdown-content summary:hover {
  background-color: #e0e0e0;
}

.markdown-content details[open] summary {
  border-bottom: 1px solid #ddd;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Preorder styles */
.preorder-info {
  color: #3b82f6;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 13px;
}
.product-price-status .preorder-info {
  margin-bottom: 0;
}

.preorder-btn {
  background: #3b82f6;
}

.preorder-btn:hover {
  background: #2563eb;
}

/* Header styles */
.site-header {
  background: #fff;
  color: #111827;
  padding: 16px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-title-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.site-title-link:hover .site-title {
  opacity: 0.8;
}

.site-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.user-menu {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  font-size: 20px;
  color: #64748b;
  position: relative;
}

.user-icon:hover {
  background: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cart-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  font-size: 20px;
  color: #64748b;
  position: relative;
}

.cart-icon:hover {
  background: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.unread-messages-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #dc3545;
  color: white;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  padding: 0 4px;
  box-sizing: border-box;
  vertical-align: middle;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.dropdown-menu {
  position: absolute;
  top: 50px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  width: 280px;
  z-index: 100;
  display: none;
  border: 1px solid #e2e8f0;
  animation: fadeIn 0.2s ease;
  overflow: hidden;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  padding: 20px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.dropdown-header h3 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}

.dropdown-header p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.dropdown-content {
  padding: 8px 0;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: #f1f5f9;
}

.dropdown-item i {
  margin-right: 12px;
  font-size: 18px;
  width: 20px;
  text-align: center;
  color: #64748b;
}

.dropdown-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 8px 0;
}

.dropdown-footer {
  padding: 16px 20px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.btn-login, .btn-logout, .btn-dashboard {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  border: none;
}

.btn-login {
  background: #3b82f6;
  color: white;
}

.btn-login:hover {
  background: #2563eb;
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.btn-dashboard {
  background: #10b981;
  color: white;
  text-decoration: none;
  display: block;
}

.btn-dashboard:hover {
  background: #059669;
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}

.btn-logout {
  background: #ef4444;
  color: white;
}

.btn-logout:hover {
  background: #dc2626;
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Login modal */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.login-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  padding: 24px 24px 20px;
  width: 100%;
  max-width: 360px;
  position: relative;
}

.login-modal-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}

.login-field {
  margin-bottom: 12px;
}

.login-field label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #4b5563;
}

.login-field input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  box-sizing: border-box;
}

.login-field input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.login-submit-btn {
  width: 100%;
  margin-top: 8px;
  background: #3b82f6;
}

.login-submit-btn:hover {
  background: #2563eb;
}

.login-error-message {
  margin-top: 8px;
  font-size: 13px;
  color: #b91c1c;
  min-height: 18px;
  text-align: center;
}

.login-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6b7280;
  box-shadow: none;
}

.login-modal-close:hover {
  background: #f3f4f6;
}

.login-switch {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.login-switch a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.login-switch a:hover {
  color: #2563eb;
  text-decoration: underline;
}

/* Message modals (success, error, warning) */
.message-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  animation: fadeIn 0.2s ease;
}

.message-modal-overlay.show {
  display: flex;
}

.message-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  padding: 32px 24px 24px;
  width: 100%;
  max-width: 420px;
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}

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

.message-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 16px;
  color: #fff;
}

.message-modal-success .message-modal-icon {
  background: #10b981;
}

.message-modal-error .message-modal-icon {
  background: #ef4444;
}

.message-modal-warning .message-modal-icon {
  background: #f59e0b;
}

.message-modal-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.message-modal-text {
  margin: 0 0 24px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
}

.message-modal-text a {
  color: #3b82f6;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.message-modal-text a:hover {
  color: #2563eb;
  text-decoration: none;
}

.message-modal-button {
  width: 100%;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #3b82f6;
  color: white;
}

.message-modal-button:hover {
  background: #2563eb;
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.message-modal-success .message-modal-button {
  background: #10b981;
}

.message-modal-success .message-modal-button:hover {
  background: #059669;
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}

.message-modal-error .message-modal-button {
  background: #ef4444;
}

.message-modal-error .message-modal-button:hover {
  background: #dc2626;
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.2);
}

.message-modal-warning .message-modal-button {
  background: #f59e0b;
}

.message-modal-warning .message-modal-button:hover {
  background: #d97706;
  box-shadow: 0 4px 8px rgba(245, 158, 11, 0.2);
}

