* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #892520;
  min-height: 100vh;
  color: #1a1a1a;
}

body.rtl {
  direction: rtl;
  text-align: right;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.screen {
  display: none;
  min-height: 100vh;
  animation: fadeIn 0.3s ease-in;
}

.screen.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.logo-container {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.header-title {
  flex: 1;
  font-size: 24px;
  color: #d97706;
}

.back-icon-btn {
  background: #f97316;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.back-icon-btn:hover {
  background: #ea580c;
  transform: scale(1.1);
}

.title {
  font-size: 32px;
  font-weight: bold;
  color: #d97706;
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  color: #78716c;
  text-align: center;
  margin-bottom: 30px;
}

.language-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.language-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px;
  background: white;
  border: 3px solid #f97316;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #f97316;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-btn:hover {
  background: #f97316;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.language-icon {
  font-size: 48px;
}

.language-name {
  font-size: 24px;
  font-weight: 700;
}

.language-toggle {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto 30px;
  background: #6b1810;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    direction: ltr;
}

.lang-btn {
  flex: 1;
  padding: 15px 30px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn.active {
  background: #f97316;
  color: white;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

.lang-btn:hover:not(.active) {
  color: white;
}

.subtitle-arabic {
  color: white;
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: white;
  border: 2px solid #f97316;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  color: #f97316;
  cursor: pointer;
  transition: all 0.3s;
}

.location-btn:hover {
  background: #f97316;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.location-icon {
  font-size: 24px;
}

.selected-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #fed7aa;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #9a3412;
}

.location-text {
  text-align: left;
  flex: 1;
}

.location-name-en {
  font-size: 16px;
  margin-bottom: 4px;
}

.location-name-ar {
  font-size: 14px;
  opacity: 0.8;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 20px;
  background: white;
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu-card:hover {
  border-color: #f97316;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.2);
}

.menu-icon {
  font-size: 40px;
}

.menu-label {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
}

.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 20px;
  padding: 10px 0;
}

.tab-btn {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e7e5e4;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #78716c;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

.tab-btn:hover {
  border-color: #f97316;
  color: #f97316;
}

.tab-btn.active {
  background: #f97316;
  border-color: #f97316;
  color: white;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.menu-item-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.menu-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.menu-item-content {
  padding: 15px;
}

.menu-item-names {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.menu-item-name-arabic {
  font-size: 16px;
  font-weight: 600;
  color: #d97706;
  text-align: right;
  margin: 0;
}

body:not(.rtl) .menu-item-name-arabic,
body:not(.rtl) .menu-item-description-arabic,
body:not(.rtl) .item-name-arabic,
body:not(.rtl) .location-name-ar,
body:not(.rtl) .subtitle-arabic {
  display: none;
}

body.rtl .location-name-en {
  display: none;
}

.menu-item-description {
  font-size: 14px;
  color: #78716c;
  margin-bottom: 12px;
  line-height: 1.4;
}

.menu-item-description-arabic {
  font-size: 13px;
  color: #d97706;
  margin-bottom: 8px;
  line-height: 1.4;
  text-align: right;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-item-price {
  font-size: 18px;
  font-weight: bold;
  color: #f97316;
}

.add-btn {
  padding: 8px 16px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.add-btn:hover {
  background: #ea580c;
}

.cart-btn {
  position: relative;
  background: #f97316;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.cart-btn:hover {
  background: #ea580c;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #dc2626;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.cart-count-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #dc2626;
  color: white;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #e7e5e4;
  flex-wrap: wrap;
  gap: 10px;
}

.modal-header h2 {
  font-size: 22px;
  color: #1a1a1a;
  margin: 0;
}

.dialog-title-arabic {
  font-size: 20px;
  color: #d97706;
  text-align: right;
  margin: 0;
  flex: 1;
  min-width: 100%;
}

.close-btn {
  background: none;
  border: none;
  font-size: 32px;
  color: #78716c;
  cursor: pointer;
  line-height: 1;
}

.close-btn:hover {
  color: #1a1a1a;
}

.modal-body {
  padding: 20px;
}

.dialog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: none;
}

.modal-item-info {
  background: #fed7aa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid #f97316;
  border-right: 4px solid #d97706;
}

.dialog-names-section {
  background: #fed7aa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid #f97316;
}

.dialog-title-main {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
}

.dialog-title-main-arabic {
  font-size: 24px;
  font-weight: 700;
  color: #d97706;
  text-align: right;
  margin: 0;
}

.dialog-descriptions-section {
  background: #faf8f5;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 4px solid #d97706;
}

.dialog-description-en {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.dialog-description-ar {
  font-size: 15px;
  color: #d97706;
  line-height: 1.6;
  margin: 0;
  text-align: right;
}

.dialog-name-bilingual {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  padding: 12px;
  background: #fef3c7;
  border-radius: 8px;
}

.name-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dialog-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.dialog-name-arabic {
  font-size: 18px;
  font-weight: 600;
  color: #d97706;
  text-align: right;
  margin: 0;
}

.dialog-description {
  color: #78716c;
  margin-bottom: 10px;
  line-height: 1.5;
}

.dialog-price {
  font-size: 24px;
  font-weight: bold;
  color: #f97316;
  margin-bottom: 20px;
}

.form-section {
  margin-bottom: 20px;
}

.section-label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.section-label-small {
  display: block;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-size: 14px;
}

.drink-selection-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.drink-dropdown-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Added styles for Family Wrap drink dropdowns */
.drink-dropdown {
  width: 100%;
  padding: 12px;
  border: 2px solid #e7e5e4;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.drink-dropdown:focus {
  outline: none;
  border-color: #f97316;
}

.drink-dropdown:hover {
  border-color: #f97316;
}

.select-input {
  width: 100%;
  padding: 10px;
  border: 2px solid #e7e5e4;
  border-radius: 6px;
  font-size: 14px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #e7e5e4;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}

.quantity-section {
  margin-top: 20px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.qty-btn:hover {
  background: #ea580c;
}

#quantity-display {
  font-size: 20px;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.modal-footer {
  padding: 20px;
  border-top: 1px solid #e7e5e4;
}

.add-to-cart-btn {
  width: 100%;
  padding: 15px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart-btn:hover {
  background: #ea580c;
}

.order-summary {
  background: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.order-summary h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e7e5e4;
}

.checkout-item:last-child {
  border-bottom: none;
}

.item-details {
  flex: 1;
}

.item-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.item-name-arabic {
  font-size: 14px;
  color: #d97706;
  margin-bottom: 4px;
}

.item-customizations {
  font-size: 12px;
  color: #78716c;
}

.item-price {
  font-weight: 600;
  color: #f97316;
  margin-right: 15px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f5f4;
  border-radius: 6px;
  padding: 4px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover {
  background: #ea580c;
}

.cart-qty-display {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.remove-item-btn {
  background: #dc2626;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.remove-item-btn:hover {
  background: #b91c1c;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 16px;
}

.summary-row.total {
  border-top: 2px solid #e7e5e4;
  margin-top: 10px;
  padding-top: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #f97316;
}

.checkout-form {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e7e5e4;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f97316;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  margin: 15px 0;
  border: 2px solid #e7e5e4;
}

.distance-info {
  background: #fef3c7;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.distance-info p {
  margin-bottom: 8px;
}

.distance-info p:last-child {
  margin-bottom: 0;
}

.error-message {
  background: #fee2e2;
  color: #dc2626;
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.help-text {
  color: #78716c;
  font-size: 14px;
  margin-bottom: 10px;
}

.delivery-section,
.dining-section {
  margin-top: 20px;
}

.delivery-section h3,
.dining-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #ea580c;
}

.text-center {
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.message {
  font-size: 16px;
  color: #78716c;
  margin-bottom: 30px;
}

.primary-btn {
  padding: 15px 40px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.primary-btn:hover {
  background: #ea580c;
}

.back-btn {
  width: 100%;
  padding: 15px;
  background: white;
  color: #f97316;
  border: 2px solid #f97316;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.back-btn:hover {
  background: #f97316;
  color: white;
}

.floating-cart {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
  transition: all 0.3s;
  z-index: 999;
  animation: pulse 2s infinite;
  position: relative;
}

.floating-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.6);
}

.floating-cart .cart-icon {
  font-size: 32px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.invoice-section {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin: 30px auto;
  max-width: 600px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: left;
}

body.rtl .invoice-section {
  text-align: right;
}

.invoice-title {
  font-size: 22px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #fed7aa;
  padding-bottom: 10px;
}

.invoice-details {
  color: #1a1a1a;
}

.invoice-customer-info {
  background: #fef3c7;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #fde68a;
}

.invoice-row:last-child {
  border-bottom: none;
}

.invoice-label {
  font-weight: 600;
  color: #78716c;
}

.invoice-value {
  font-weight: 500;
  color: #1a1a1a;
}

.invoice-items-section {
  margin-bottom: 20px;
}

.invoice-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e7e5e4;
}

.invoice-item {
  background: #f5f5f4;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 12px;
  border-left: 4px solid #f97316;
}

body.rtl .invoice-item {
  border-left: none;
  border-right: 4px solid #f97316;
}

.invoice-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.invoice-item-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
}

.invoice-item-price {
  font-weight: 700;
  color: #f97316;
  font-size: 16px;
}

.invoice-item-details {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #78716c;
  margin-bottom: 8px;
}

.invoice-item-addons {
  background: white;
  padding: 10px;
  border-radius: 6px;
  margin-top: 8px;
}

.invoice-addon {
  font-size: 13px;
  color: #78716c;
  padding: 4px 0;
  line-height: 1.5;
}

.invoice-summary {
  background: #fed7aa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.invoice-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
}

.invoice-summary-label {
  font-weight: 600;
  color: #78716c;
}

.invoice-summary-value {
  font-weight: 600;
  color: #1a1a1a;
}

.invoice-total {
  border-top: 2px solid #f97316;
  margin-top: 10px;
  padding-top: 12px;
  font-size: 20px;
}

.invoice-total .invoice-summary-label,
.invoice-total .invoice-summary-value {
  color: #f97316;
  font-weight: 700;
}

/* Added styles for invoice action buttons */
.invoice-action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 25px 0;
  flex-wrap: wrap;
}

.invoice-btn {
  padding: 12px 24px;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.invoice-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.download-btn {
  background: #1f2937;
}

.download-btn:hover {
  background: #111827;
}

.share-btn {
  background: #059669;
}

.share-btn:hover {
  background: #047857;
}
