:root {
  --brown-bg: rgba(101,67,33,0.75); 
  --white-bg: rgba(255,255,255,0.85); 
  --primary-color: #5d4037;
  --accent-color: #ffcc80;
  --text-color: #333;
  --font-family: 'Poppins', sans-serif;
  --transition-speed: 0.4s;
}


.homepage,
.homepage * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}


body {
  display: flex;
  flex-direction: column;

  
  font-family: var(--font-family);
  color: var(--text-color);
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
              url('../../Images/Background.png') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}


body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--primary-color);
}


main {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
}


a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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


html {
  scroll-behavior: smooth;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}


.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}


.text-center {
  text-align: center;
}


body > main > section {
  padding-top: 0; 
  min-height: 100vh; 
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}


html {
  scrollbar-width: thin;
  overflow-y: scroll;
}

body {
  padding-right: 0 !important; 
}


.homepage {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.homepage-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brown-bg);
  z-index: 0;
  overflow: hidden;
}

.homepage-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.homepage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
  z-index: 1;
}

.homepage-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.homepage-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.homepage-title {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.homepage-subtitle {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.homepage-btn {
  background: rgba(101,67,33,0.9);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 16px 36px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}

.homepage-btn:hover,
.homepage-btn:focus,
.homepage-btn:active {
  background: rgba(101,67,33,1);
  color: #fff;
  box-shadow: none;
  border: none;
  outline: none;
}

.homepage-btn span {
  display: inline-block;
  transition: color 0.3s, letter-spacing 0.3s, text-shadow 0.3s;
  letter-spacing: 0;
}

.homepage-btn:hover span,
.homepage-btn:focus span {
  color: #ffcc80;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(255,204,128,0.25);
}


.feature-boxes-container {
  position: relative;
  width: 100%;
  background-color: #e8dccf;
  padding: 60px 0 40px;
  margin-top: auto;
  z-index: 3;
  position: relative;
}


.feature-boxes-container::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
  background-color: #3b2a20; 
  background-image: 
    
    linear-gradient(90deg, 
      rgba(0,0,0,0.3) 0%, 
      rgba(0,0,0,0) 15%, 
      rgba(0,0,0,0.1) 30%,
      rgba(0,0,0,0.2) 45%,
      rgba(0,0,0,0.1) 60%,
      rgba(0,0,0,0.05) 75%,
      rgba(0,0,0,0.2) 90%,
      rgba(0,0,0,0.3) 100%
    ),
    
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(0,0,0,0.1) 40px,
      rgba(0,0,0,0.1) 80px
    );
  box-shadow: 0 5px 10px rgba(0,0,0,0.4);
  z-index: 4;
}


.feature-boxes-container::after {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.1),
    transparent
  );
  z-index: 5;
}

.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-box {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: #f5f0e8;
  padding: 30px 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(93, 64, 55, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(30px);
  border: 1px solid rgba(93, 64, 55, 0.1);
}

.feature-box.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(93, 64, 55, 0.25);
  border-color: rgba(93, 64, 55, 0.15);
}

.feature-icon {
  font-size: 2.5rem;
  color: #3b2a20; 
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #3b2a20; 
}

.feature-box p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1000;
  overflow-y: auto;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-show {
  display: block;
  opacity: 1;
  overflow: hidden;
}

.modal-content {
  position: relative;
  background-color: #fff;
  max-width: 650px;
  margin: 80px auto;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(-50px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1001;
}

.modal-show .modal-content {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

.modal-header {
  background-color: rgba(101,67,33,0.9);
  padding: 20px 30px;
  position: relative;
}

.modal-header h3 {
  color: #fff;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  animation: fadeInDown 0.6s ease;
}

.modal-body {
  padding: 30px;
  color: var(--text-color);
}

.modal-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: left;
  animation: fadeInUp 0.6s ease;
  animation-delay: 0.2s;
  animation-fill-mode: both;
  white-space: pre-line;
}

.modal-cta {
  text-align: center;
  margin-top: 30px;
  animation: fadeInUp 0.6s ease;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.cta-button {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(93, 64, 55, 0.2);
}

.cta-button:hover {
  background-color: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(93, 64, 55, 0.3);
}

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

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

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.close-button:hover {
  color: #fff;
  transform: rotate(90deg);
}


@media (max-width: 768px) {
  .homepage-title {
    font-size: 2.5rem;
  }
  
  .homepage-subtitle {
    font-size: 1.2rem;
  }
  
  .feature-boxes {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-box {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .homepage-title {
    font-size: 2rem;
  }
  
  .homepage-subtitle {
    font-size: 1rem;
  }
}




.edit-modal-buttons {
  margin-top: 20px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.edit-modal-btn {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed);
}
.edit-modal-btn.confirm-btn {
  background-color: var(--primary-color);
  color: #fff;
}
.edit-modal-btn.confirm-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}
.edit-modal-btn.reset-btn {
  background-color: #f44336;
  color: #fff;
}
.edit-modal-btn.reset-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}
.edit-modal-btn.cancel-btn {
  background-color: #bbb;
  color: #333;
}
.edit-modal-btn.cancel-btn:hover {
  background-color: #999;
  transform: translateY(-2px);
}


body.is-editor [data-editable] {
  position: relative;
  cursor: pointer;
}
body.is-editor [data-editable]:hover::after {
  content: "✎";
  position: absolute;
  top: -8px;
  right: -18px;
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.custom-close-btn {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.custom-close-btn:hover,
.custom-close-btn:focus {
  background: #7a5230;
  color: #fff;
  outline: none;
  transform: scale(1.08) rotate(90deg);
}

.custom-close-btn span {
  display: block;
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
  pointer-events: none;
}


.admin-panel {
  padding: 40px 0;
  background-color: #f9f9f9;
  height: auto !important;
  min-height: unset !important;
  max-height: unset !important;
  overflow: visible !important;
}

.admin-panel h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.admin-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.tab-button {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s ease;
}

.tab-button:hover {
  color: #333;
}

.tab-button.active {
  color: #4a7c59;
  border-bottom-color: #4a7c59;
}

.tab-content {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.user-list, .cart-items {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.user-list th, .user-list td,
.cart-items th, .cart-items td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.user-list th, .cart-items th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.user-list tr:hover {
  background-color: #f9f9f9;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.edit-btn, .delete-btn {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.edit-btn {
  background-color: #4a7c59;
  color: white;
}

.edit-btn:hover {
  background-color: #3a6149;
}

.delete-btn {
  background-color: #e74c3c;
  color: white;
}

.delete-btn:hover {
  background-color: #c0392b;
}

.cart-selection {
  margin-bottom: 20px;
}

.cart-selection select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  max-width: 300px;
}

.cart-total {
  margin-top: 20px;
  text-align: right;
  font-size: 18px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-actions {
  margin-top: 20px;
  text-align: right;
}

.form-actions .btn {
  padding: 10px 20px;
  background-color: #4a7c59;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.form-actions .btn:hover {
  background-color: #3a6149;
}


.todo-form {
  display: flex;
  gap: 0.5em;
  margin-bottom: 1em;
}
.todo-form input[type="text"] {
  flex: 1;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.todo-form button {
  padding: 0.5em 1em;
}
.todo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.todo-item {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
  border-bottom: 1px solid #eee;
}
.todo-item.completed span {
  text-decoration: line-through;
  color: #888;
}

  margin-top: 1em;
  padding: 1em;
  background: #f5f0e8;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(93, 64, 55, 0.07);
  color: #333;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

  color: #4a7c59;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

  margin-bottom: 0.7em;
}

  color: #5d4037;
}

  color: #7b503b;
}

  background: #ececec;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.95em;
}


.day-content {
  display: none;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 15px;
  background: #f5f0e8;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.day-content.expanded {
  display: block;
  max-height: 1000px !important;
  overflow: visible !important;
}
.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-left: 10px;
  user-select: none;
}
.day-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.floating-cart {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s, background-color 0.3s;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.floating-cart:hover {
  transform: scale(1.08);
  background-color: #4b3329;
}
.floating-cart.hidden {
  display: none;
}
.cart-icon {
  position: relative;
  font-size: 1.5rem;
  color: #ffffff;
}
.cart-count {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: var(--accent-color);
  color: #333;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.cart-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}
.cart-modal.active {
  display: flex;
}
.cart-modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--primary-color);
  color: #fff;
}
.cart-modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
}
.close-cart {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.cart-items {
  padding: 20px;
  overflow-y: auto;
  max-height: 50vh;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  gap: 10px;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-image {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  border: 1px solid #eee;
  overflow: hidden;
}
.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-left: 5px;
}
.cart-item-name {
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 5px;
}
.cart-item-price {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}
.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quantity-btn {
  background-color: #eee;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
}
.quantity-btn:hover {
  background-color: #ddd;
}
.quantity-value {
  width: 30px;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #d32f2f;
  cursor: pointer;
  font-size: 1.1rem;
}
.cart-total {
  background-color: #f5f5f5;
  padding: 15px 20px;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
}
.cart-actions {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #eee;
}
.cart-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.3s;
}
.clear-cart {
  background-color: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
}
.clear-cart:hover {
  background-color: #eee;
}
.checkout-btn {
  background-color: var(--primary-color);
  color: #fff;
}
.checkout-btn:hover {
  background-color: #4b3329;
  transform: translateY(-2px);
}
.empty-cart-message {
  text-align: center;
  padding: 30px 0;
}
@media (max-width: 480px) {
  .floating-cart {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .cart-icon {
    font-size: 1.3rem;
  }
  .cart-count {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    top: -8px;
    right: -8px;
  }
}


.cart-item-fadeout {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}


.cart-item-updated {
  animation: cartItemHighlight 0.4s;
}

@keyframes cartItemHighlight {
  0% { background: #fffbe6; }
  100% { background: transparent; }
}


.order-card {
  background: var(--white-bg);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1.5px 4px rgba(93,64,55,0.08);
  margin-bottom: 24px;
  padding: 0 0 0 0;
  transition: box-shadow 0.2s;
  border: 1px solid #e0d7ce;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.order-card:hover {
  box-shadow: 0 4px 24px rgba(93,64,55,0.13), 0 2px 8px rgba(93,64,55,0.10);
}
.order-header {
  background: var(--primary-color);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 18px 24px;
  border-bottom: 1px solid #e0d7ce;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-header .expand-btn {
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  border-radius: 6px;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.order-header .expand-btn:hover {
  background: #ffe0b2;
}
.order-details {
  background: #fff;
  color: var(--text-color);
  padding: 18px 24px 18px 24px;
  font-size: 1rem;
  border-top: 1px solid #f3ede7;
  animation: fadeInDown 0.3s;
}
.order-details h4 {
  margin: 18px 0 8px 0;
  font-size: 1.08rem;
  color: var(--primary-color);
}
.order-details ul {
  margin: 0 0 10px 0;
  padding-left: 18px;
}
.order-details li {
  margin-bottom: 4px;
}
.mark-completed-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.mark-completed-btn:hover:not(:disabled) {
  background: #7b503b;
}
.mark-completed-btn:disabled {
  background: #bdbdbd;
  cursor: not-allowed;
}

  margin: 32px auto;
  border: 4px solid #f3ede7;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 700px) {
  .order-card {
    max-width: 98vw;
    font-size: 0.98rem;
  }
  .order-header, .order-details {
    padding: 14px 8vw 14px 8vw;
  }
}

/* Icon Picker Modal Styles */
.icon-picker-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.icon-picker-modal.modal-show {
  display: flex;
  opacity: 1;
}
.icon-picker-modal-content {
  background: #fff;
  border-radius: 10px;
  max-width: 500px;
  width: 95%;
  margin: 40px auto;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  position: relative;
  animation: fadeInUp 0.4s;
}
.icon-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(56px, 1fr));
  gap: 18px;
  margin-top: 18px;
  max-height: 320px;
  overflow-y: auto;
  padding: 8px 0;
}
.icon-picker-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  color: #5d4037;
  background: #f7f3ef;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border 0.2s, background 0.2s, color 0.2s;
  padding: 10px 0 4px 0;
}
.icon-picker-icon.selected,
.icon-picker-icon:hover {
  border: 2px solid #ffcc80;
  background: #fff8e1;
  color: #c47f00;
}
.icon-picker-icon-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 600px) {
  .icon-picker-modal-content {
    max-width: 98vw;
    padding: 12px 2vw 12px 2vw;
  }
  .icon-picker-grid {
    grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
    gap: 10px;
  }
  .icon-picker-icon {
    font-size: 1.5rem;
    padding: 7px 0 2px 0;
  }
} 