/* ===== GLOBAL RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-primary: #f5f5f5;
  --bg-secondary: #fff;
  --bg-tertiary: #000;
  --text-primary: #333;
  --text-secondary: #666;
  --text-light: #999;
  --border-color: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.08);
  --accent: #ff6b9d;
  --hover-bg: #f9f9f9;
}

html.dark-mode {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2d2d2d;
  --bg-tertiary: #fff;
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --text-light: #808080;
  --border-color: #444;
  --shadow: rgba(0, 0, 0, 0.3);
  --accent: #ff6b9d;
  --hover-bg: #3a3a3a;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: var(--bg-secondary);
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px var(--shadow);
  transition: background-color 0.3s, border-color 0.3s;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.logo:hover {
  opacity: 0.7;
}

nav {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

.search-box {
  flex: 1;
  max-width: 400px;
}

.search-box form {
  display: flex;
  gap: 0;
}

.search-box input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 25px 0 0 25px;
  font-size: 13px;
  background-color: var(--hover-bg);
  color: var(--text-primary);
  transition: all 0.3s;
}

.search-box input::placeholder {
  color: var(--text-light);
}

.search-box input:focus {
  outline: none;
  background-color: var(--bg-secondary);
  border-color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

html.dark-mode .search-box input:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-btn {
  padding: 12px 16px;
  background-color: var(--text-primary);
  color: var(--bg-secondary);
  border: 2px solid var(--text-primary);
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: none;
}

.search-btn:hover {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  transform: rotate(20deg);
}

.nav-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-action {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.nav-action:hover {
  color: #000;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
/* ===== BUTTONS ===== */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #000;
  color: #fff;
}

.btn-primary:hover {
  background-color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn-secondary:hover {
  background-color: #000;
  color: #fff;
}

.btn-danger {
  background-color: #8B0000;
  color: #fff;
}

.btn-danger:hover {
  background-color: #660000;
}

.btn-account {
  background-color: #fff;
  color: #000;
  border: 2px solid #000;
}

.btn-account:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

/* ===== FORMS ===== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
  background-color: #f9f9f9;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #000;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.required {
  color: #ff6b6b;
}

/* ===== STATUS BADGES ===== */
.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending {
  background-color: #fff3e0;
  color: #e65100;
}

.status-paid {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-ready,
.status-ready-to-ship {
  background-color: #e3f2fd;
  color: #1565c0;
}

.status-delivery-fee-paid {
  background-color: #ede7f6;
  color: #4527a0;
}

.status-shipped {
  background-color: #e0f2f1;
  color: #00695c;
}

.status-delivered {
  background-color: #c8e6c9;
  color: #1b5e20;
}

.status-cancelled {
  background-color: #ffebee;
  color: #c62828;
}

/* ===== ERROR & SUCCESS MESSAGES ===== */
.error-message {
  background-color: #ffebee;
  color: #c62828;
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  border-left: 4px solid #c62828;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
}

.alert {
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    gap: 20px;
  }

  nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }

  .search-box {
    order: 2;
    max-width: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== MOBILE PHONE STYLES (< 480px) ===== */
@media (max-width: 480px) {
  /* Header */
  .header-content {
    padding: 12px 16px;
    gap: 10px;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    height: 36px;
  }

  .search-box {
    order: 2;
    width: 100%;
  }

  .search-box form {
    width: 100%;
  }

  .search-box input {
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 20px 0 0 20px;
  }

  .search-btn {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 0 20px 20px 0;
  }

  nav {
    order: 3;
    gap: 12px;
    padding: 10px 0;
  }

  nav a {
    font-size: 11px;
    padding: 6px 8px;
  }

  .nav-actions {
    gap: 12px;
  }

  .nav-action {
    font-size: 11px;
    padding: 6px 8px;
  }

  .cart-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -6px;
    right: -8px;
  }

  .theme-toggle {
    font-size: 18px;
    padding: 6px;
  }

  /* Main Content */
  main {
    padding: 20px 16px;
  }

  .page-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .hero {
    padding: 40px 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  /* Breadcrumb */
  .breadcrumb {
    font-size: 11px;
    margin-bottom: 20px;
  }

  /* Category Header */
  .category-header {
    margin-bottom: 30px;
  }

  .category-header h1 {
    font-size: 28px;
  }

  .category-header p {
    font-size: 14px;
  }

  /* Products Grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }

  .product-card {
    border-radius: 4px;
  }

  .product-image {
    max-height: 120px;
  }

  .product-info {
    padding: 8px;
  }

  .product-title {
    font-size: 10px;
    min-height: 24px;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .product-price {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .product-actions {
    flex-direction: column;
    gap: 4px;
  }

  .product-actions a {
    padding: 6px 4px;
    font-size: 9px;
  }

  /* Cart */
  .cart-container {
    gap: 20px;
  }

  .cart-summary {
    padding: 20px;
  }

  .summary-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .summary-row {
    padding: 10px 0;
    font-size: 13px;
  }

  .summary-total {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .cart-summary .btn-secondary {
    padding: 12px 16px;
    font-size: 12px;
  }

  /* Cart Table Mobile */
  .cart-table tbody tr {
    padding: 12px;
    margin-bottom: 10px;
    gap: 8px;
  }

  .cart-product-image {
    width: 48px;
    height: 48px;
  }

  .cart-product-title {
    font-size: 12px;
  }

  .cart-product-meta {
    font-size: 11px;
  }

  .cart-product-price {
    font-size: 12px;
  }

  .qty-input {
    width: 36px;
    padding: 6px 8px;
    font-size: 12px;
  }

  .qty-btn {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  .remove-btn {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .cart-cell-size .size-select-cart {
    max-width: 100px;
    padding: 6px 8px;
    font-size: 12px;
  }

  /* Product Details */
  .product-container {
    padding: 16px;
  }

  .product-grid {
    gap: 20px;
  }

  .product-details h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .product-description {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .product-price {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .price-label {
    font-size: 12px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .quantity-input,
  .size-select {
    padding: 10px 12px;
    font-size: 13px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
    padding: 12px;
    font-size: 12px;
  }

  .info-section {
    padding-top: 16px;
    margin-top: 20px;
  }

  .info-section h3 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .info-section p {
    font-size: 13px;
  }

  /* Cart Toast */
  .cart-toast {
    bottom: 60px;
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(20px);
    padding: 12px 16px;
    font-size: 13px;
    border-radius: 6px;
  }

  .cart-toast.show {
    transform: translateX(0) translateY(0);
  }

  /* Empty State */
  .empty-state {
    padding: 40px 20px;
  }

  .empty-state-icon {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .empty-state p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .empty-state a {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* Wishlist */
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Search */
  .search-header {
    margin-bottom: 30px;
  }

  .search-header h1 {
    font-size: 24px;
    margin-top: 40px;
  }

  .search-header p {
    font-size: 14px;
  }

  .results-count {
    font-size: 12px;
    margin-bottom: 20px;
  }

  /* Policy Pages */
  .policy-section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .policy-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .policy-section p {
    font-size: 14px;
    line-height: 1.6;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .step-card {
    padding: 16px;
  }

  .step-card h3 {
    font-size: 14px;
  }

  .step-card p {
    font-size: 13px;
  }

  .highlight-box {
    padding: 16px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* About Page */
  .about-title {
    font-size: 24px;
  }

  .about-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .about-content p {
    font-size: 14px;
    text-align: left;
  }

  /* Buttons - Touch Friendly */
  .btn {
    padding: 14px 20px;
    font-size: 13px;
    min-height: 25px;
  }

  /* Forms */
  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 8px;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  textarea,
  select {
    padding: 10px 12px;
    font-size: 14px;
    min-height: 44px;
  }

  /* Status Badges */
  .status-badge {
    padding: 4px 8px;
    font-size: 10px;
  }

  /* Messages */
  .error-message,
  .success-message {
    padding: 12px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  .alert {
    padding: 12px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  footer {
    padding: 30px 16px;
  }

  .footer-newsletter h3,
  .footer-section h3,
  .social-icons h4,
  .footer-contact h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-newsletter p {
    font-size: 13px;
  }

  .footer-newsletter input {
    padding: 10px 12px;
    font-size: 13px;
    width: 100%;
    margin-bottom: 10px;
  }

  .footer-newsletter button {
    padding: 10px 16px;
    font-size: 12px;
    width: 100%;
  }

  .footer-section a {
    font-size: 13px;
    display: block;
    padding: 4px 0;
  }

  .social-links {
    justify-content: flex-start;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-contact p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding-top: 16px;
    font-size: 12px;
  }
}

/* ===== UNIFIED MODAL STYLES ===== */
/* Modal Overlay */
.modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active,
.modal-overlay.is-open {
  display: flex;
}

/* Simple Modal (for modals using .modal class) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: block;
}

/* Modal Card (for modal-overlay style) */
.modal-card {
  background-color: var(--bg-secondary);
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  position: relative;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Modal Content (legacy support) */
.modal-content {
  background-color: var(--bg-secondary);
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  position: relative;
}

/* Modal Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2,
.modal-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

/* Modal Close Button */
.modal-close,
.close-modal,
.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover,
.close-modal:hover,
.close-modal-btn:hover {
  color: var(--text-primary);
}

/* Modal Body */
.modal-body {
  padding: 10px 0;
}

/* Modal Footer */
.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* Modal Actions */
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Modal Buttons */
.modal-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-btn.primary {
  background-color: #000;
  color: #fff;
}

.modal-btn.primary:hover {
  background-color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-btn.secondary {
  background-color: var(--hover-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.modal-btn.secondary:hover {
  background-color: var(--border-color);
}

.modal-btn.danger {
  background-color: #8B0000;
  color: #fff;
}

.modal-btn.danger:hover {
  background-color: #660000;
}

/* Modal Form Elements */
.modal-body .form-group {
  margin-bottom: 18px;
}

.modal-body .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Modal Title */
.modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

/* Modal Message */
.modal-message {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Modal Icon */
.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.modal-icon.success {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
}

.modal-icon.error {
  background: linear-gradient(135deg, #f44336, #c62828);
  color: white;
}

.modal-icon.info {
  background: linear-gradient(135deg, #2196f3, #1565c0);
  color: white;
}

/* Loading State */
.modal-loading {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Error State */
.modal-error {
  text-align: center;
  padding: 30px 20px;
  color: #c62828;
  background-color: #ffebee;
  border-radius: 8px;
  font-size: 14px;
}

/* Success State */
.modal-success-message {
  text-align: center;
  padding: 20px;
  background-color: #d4edda;
  color: #155724;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Dark Mode Support for Modals */
html.dark-mode .modal-card,
html.dark-mode .modal-content {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

html.dark-mode .modal-header {
  border-bottom-color: var(--border-color);
}

html.dark-mode .modal-header h2,
html.dark-mode .modal-header h3,
html.dark-mode .modal-title {
  color: var(--text-primary);
}

html.dark-mode .modal-message,
html.dark-mode .modal-loading {
  color: var(--text-secondary);
}

html.dark-mode .modal-close,
html.dark-mode .close-modal {
  color: var(--text-secondary);
}

html.dark-mode .modal-close:hover,
html.dark-mode .close-modal:hover {
  color: var(--text-primary);
}

html.dark-mode .modal-btn.secondary {
  background-color: var(--hover-bg);
  color: var(--text-primary);
  border-color: var(--border-color);
}

html.dark-mode .modal-btn.secondary:hover {
  background-color: var(--border-color);
}

html.dark-mode .modal-footer {
  border-top-color: var(--border-color);
}

/* Responsive Modal */
@media (max-width: 600px) {
  .modal-card,
  .modal-content {
    width: 95%;
    padding: 20px;
    margin: 10% auto;
    max-height: 85vh;
  }

  .modal-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .modal-header h2,
  .modal-header h3 {
    font-size: 18px;
  }

  .modal-close,
  .close-modal {
    top: 12px;
    right: 12px;
    font-size: 24px;
  }

  .modal-footer,
  .modal-actions {
    flex-direction: column;
    gap: 10px;
  }

  .modal-btn {
    width: 100%;
    padding: 14px;
  }
}
