@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:400,700);
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.delivery-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 5px;
  border-radius: 12px;
}
.delivery-selector .delivery-option {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.delivery-selector .delivery-option svg {
  opacity: 0.6;
}
.delivery-selector .delivery-option.active {
  background: #2c2c2e;
  color: #ff9f0a;
}
.delivery-selector .delivery-option.active svg {
  color: #ff9f0a;
  opacity: 1;
}
.delivery-selector .delivery-option.active {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-input {
  border: 2px solid rgba(255, 159, 10, 0.2) !important;
  background: rgba(255, 159, 10, 0.05) !important;
}

.info-text {
  font-size: 0.85rem;
  color: #ff9f0a;
  background: rgba(255, 159, 10, 0.1);
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
}

.toast-overlay {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 9999;
  animation: slideIn 0.5s ease-out;
}
.toast-overlay.fade-out {
  animation: slideOut 0.5s ease-in forwards;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border-radius: 12px;
  background: #1a1a1a;
  border-left: 5px solid;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: white;
  min-width: 300px;
}
.toast-content.toast-success {
  border-color: #28a745;
}
.toast-content.toast-success .toast-icon {
  color: #28a745;
}
.toast-content.toast-error {
  border-color: #dc3545;
}
.toast-content.toast-error .toast-icon {
  color: #dc3545;
}
.toast-content .toast-icon {
  font-size: 1.2rem;
  font-weight: bold;
}
.toast-content .toast-body p {
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
}
.toast-content .toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}
.toast-content .toast-close:hover {
  color: white;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.birria-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.birria-modal.show {
  display: flex;
}
.birria-modal .modal-content {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: modalSlide all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 768px) {
  .birria-modal .modal-content {
    padding: 3rem;
  }
}
.birria-modal .modal-content .close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}
.birria-modal .modal-content .close-modal:hover {
  color: #ffffff;
  transform: rotate(90deg);
}
.birria-modal .modal-content .modal-body .icon-box {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.birria-modal .modal-content .modal-body h2 {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .birria-modal .modal-content .modal-body h2 {
    font-size: 2rem;
  }
}
.birria-modal .modal-content .modal-body p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.birria-modal .modal-content .modal-body p strong {
  color: #ff9f0a;
  font-weight: 700;
}
.birria-modal .modal-content .modal-body .status-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 159, 10, 0.1);
  color: #ff9f0a;
  border: 1px solid #ff9f0a;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}
.birria-modal .modal-content .modal-body hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 1.5rem 0;
}
.birria-modal .modal-content .modal-body .suggestion {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.birria-modal .modal-content .modal-body .btn-primary {
  text-decoration: none;
  color: #ff9f0a;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}
.birria-modal .modal-content .modal-body .btn-primary:hover {
  color: #e08b00;
  border-bottom: 2px solid #e08b00;
}

@keyframes modalSlide {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.main-footer {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 4rem;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
.main-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.main-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .main-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .main-footer .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}
.main-footer .footer-col h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-footer .footer-col ul li {
  margin-bottom: 12px;
}
.main-footer .footer-col ul li:last-child {
  margin-bottom: 0;
}
.main-footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.main-footer .footer-col ul li a:hover {
  color: #ff9f0a;
  padding-left: 5px;
}
.main-footer .footer-col .contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.main-footer .footer-col .contact-info li svg {
  color: #ff9f0a;
  flex-shrink: 0;
  margin-top: 3px;
}
.main-footer .brand-col .logo {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 15px;
}
.main-footer .brand-col .logo span {
  color: #ff9f0a;
}
.main-footer .brand-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}
.main-footer .brand-col .social-links {
  display: flex;
  gap: 15px;
}
.main-footer .brand-col .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.2s ease;
}
.main-footer .brand-col .social-links a:hover {
  background-color: #ff9f0a;
  color: #000000;
  border-color: #ff9f0a;
  transform: translateY(-3px);
}
.main-footer .footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  font-size: 0.85rem;
}
@media (min-width: 768px) {
  .main-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.main-footer .footer-bottom p {
  margin: 0;
}
.main-footer .footer-bottom .dev-credits {
  color: rgba(255, 255, 255, 0.4);
}
.main-footer .footer-bottom .dev-credits a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}
.main-footer .footer-bottom .dev-credits a:hover {
  color: #ff9f0a;
}

.main-nav {
  background-color: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}
.main-nav .logo {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}
.main-nav .logo span {
  color: #ff9f0a;
}
.main-nav {
  /* Checkbox oculto para la hamburguesa */
}
.main-nav .menu-toggle-checkbox {
  display: none;
}
.main-nav .hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}
.main-nav .hamburger span {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .main-nav .hamburger {
    display: none;
  }
}
.main-nav .nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.main-nav .nav-links > a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}
.main-nav .nav-links > a:hover {
  color: #ff9f0a;
}
.main-nav .nav-links .auth-buttons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  width: 90%;
  margin-bottom: 1.5rem;
}
.main-nav .nav-links .auth-buttons > a {
  text-align: center;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
.main-nav .nav-links .auth-buttons .btn-login {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.main-nav .nav-links .auth-buttons .btn-register {
  background-color: #ff9f0a;
  color: #000000;
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown {
  position: relative;
  width: 100%;
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .btn-user-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 16px;
  border-radius: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .main-nav .nav-links .auth-buttons .user-profile-dropdown .btn-user-trigger {
    width: auto;
  }
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .btn-user-trigger span {
  color: #ff9f0a;
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .btn-user-trigger .chevron {
  transition: all 0.2s ease;
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .btn-user-trigger:hover {
  border-color: #ff9f0a;
  background-color: rgba(255, 159, 10, 0.05);
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .main-nav .nav-links .auth-buttons .user-profile-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 159, 10, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    border-radius: 12px;
  }
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .dropdown-menu a {
  padding: 12px 16px;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-align: center;
  font-weight: 400 !important;
}
@media (min-width: 768px) {
  .main-nav .nav-links .auth-buttons .user-profile-dropdown .dropdown-menu a {
    text-align: left;
    font-size: 0.9rem;
  }
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ff9f0a !important;
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .dropdown-menu a.logout {
  color: #f44336 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4px;
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown .dropdown-menu a.logout:hover {
  background-color: rgba(244, 67, 54, 0.1);
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown.active .dropdown-menu {
  display: flex;
}
.main-nav .nav-links .auth-buttons .user-profile-dropdown.active .chevron {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .main-nav .nav-links {
    position: static;
    width: auto;
    flex-direction: row;
    max-height: none;
    overflow: visible;
  }
  .main-nav .nav-links .auth-buttons {
    flex-direction: row;
    width: auto;
    margin-bottom: 0;
  }
}
.main-nav {
  /* Animación Menú Móvil */
}
.main-nav .menu-toggle-checkbox:checked ~ .nav-links {
  max-height: 500px;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main-nav .menu-toggle-checkbox:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.main-nav .menu-toggle-checkbox:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}
.main-nav .menu-toggle-checkbox:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.selection-screen {
  background-color: #000000;
}

.split-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  position: relative;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  .split-container {
    flex-direction: row;
  }
}
.split-container .choice {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  text-decoration: none;
}
.split-container .choice.alitas {
  background-color: #000000;
  color: #ffffff;
}
.split-container .choice.alitas .btn {
  border: 2px solid #ffffff;
  color: #ffffff;
}
.split-container .choice.alitas .btn:hover {
  background-color: #ffffff;
  color: #000000;
}
.split-container .choice.birria {
  background-color: #ffffff;
  color: #000000;
}
.split-container .choice.birria .btn {
  border: 2px solid #000000;
  color: #000000;
}
.split-container .choice.birria .btn:hover {
  background-color: #000000;
  color: #ffffff;
}
@media (min-width: 768px) {
  .split-container .choice:hover {
    flex: 1.2;
  }
}
.split-container .choice .content {
  z-index: 10;
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}
.split-container .choice .content h2 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.split-container .choice .content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.split-container .choice .content .btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.menu-page {
  background-color: #000000;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.menu-header h1 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu-header .user-points {
  font-size: 0.9rem;
  background-color: rgba(255, 159, 10, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #ff9f0a;
  color: #ffffff;
}
.menu-header .user-points span {
  font-weight: 700;
  color: #ff9f0a;
  margin-left: 5px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.food-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  }
}
.food-card .food-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: #2c2c2e;
}
.food-card .food-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.food-card .food-info h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}
.food-card .food-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem 0;
  flex: 1;
}
.food-card .food-info .price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #ff9f0a;
  margin-bottom: 1rem;
}
.food-card .food-info .btn-add {
  width: 100%;
  background-color: #ff9f0a;
  color: #000000;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.food-card .food-info .btn-add:hover {
  background-color: #e08b00;
}
.food-card .food-info .package-selector {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 2rem;
  width: 100%;
}
.food-card .food-info .package-selector .pkg-radio {
  flex: 1;
  cursor: pointer;
  user-select: none;
}
.food-card .food-info .package-selector .pkg-radio input[type=radio] {
  display: none;
}
.food-card .food-info .package-selector .pkg-radio .pkg-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem 2px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.2s ease;
}
.food-card .food-info .package-selector .pkg-radio .pkg-content .qty {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px 0;
  line-height: 1;
}
.food-card .food-info .package-selector .pkg-radio .pkg-content .price {
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}
.food-card .food-info .package-selector .pkg-radio input[type=radio]:checked + .pkg-content {
  background-color: rgba(255, 159, 10, 0.08);
  border-color: #ff9f0a;
}
.food-card .food-info .package-selector .pkg-radio input[type=radio]:checked + .pkg-content .qty {
  color: #ffffff;
  font-weight: 700;
}
.food-card .food-info .package-selector .pkg-radio input[type=radio]:checked + .pkg-content .price {
  color: #ff9f0a;
}
.food-card .food-info .package-selector .pkg-radio:hover input[type=radio]:not(:checked) + .pkg-content {
  border-color: rgba(255, 255, 255, 0.4);
}

.cart-floating-btn {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 90%;
  max-width: 400px;
}
.cart-floating-btn a {
  display: block;
  text-align: center;
  background-color: #ff9f0a;
  color: #000000;
  padding: 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(255, 159, 10, 0.4);
  transition: all 0.3s ease;
}
.cart-floating-btn a:hover {
  background-color: #e08b00;
  transform: scale(1.03);
}

.menu-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  z-index: 10;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .menu-action-bar {
    position: relative;
    bottom: auto;
    left: auto;
    background-color: transparent;
    backdrop-filter: none;
    border-top: none;
    padding: 1.5rem 2rem;
    box-shadow: none;
    display: flex;
    justify-content: flex-end;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
}
.menu-action-bar .menu-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .menu-action-bar .menu-stats {
    width: auto;
    background-color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  }
}
.menu-action-bar .menu-stats .user-points {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.menu-action-bar .menu-stats .user-points span {
  color: #ff9f0a;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
}
.menu-action-bar .menu-stats .btn-view-order {
  background-color: #ff9f0a;
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
}
.menu-action-bar .menu-stats .btn-view-order:hover {
  background-color: #e08b00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 159, 10, 0.3);
}
.menu-action-bar .menu-stats .btn-view-order:active {
  transform: translateY(0);
}
.menu-action-bar .menu-stats .btn-view-order .badge {
  background-color: #000000;
  color: #ff9f0a;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-footer-action {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.menu-footer-action .btn-finalize {
  display: block;
  width: 90%;
  max-width: 400px;
  padding: 18px;
  background-color: #ff9f0a;
  color: #000000;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.1rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(255, 159, 10, 0.3);
}
.menu-footer-action .btn-finalize:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 159, 10, 0.4);
  background-color: #e08b00;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
}
.modal-overlay.active {
  display: block;
}
.modal-overlay.active .cart-modal {
  transform: translateX(0);
}

.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background-color: #121212;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 25px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cart-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}
.cart-modal .modal-header h2 {
  color: #ff9f0a;
  font-weight: 900;
  margin: 0;
}
.cart-modal .modal-header .close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
.cart-modal #cart-items-container {
  flex: 1;
  overflow-y: auto;
}
.cart-modal #cart-items-container .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.cart-modal #cart-items-container .cart-item .item-info {
  display: flex;
  flex-direction: column;
}
.cart-modal #cart-items-container .cart-item .item-info strong {
  color: white;
  font-size: 1rem;
  margin-bottom: 4px;
}
.cart-modal #cart-items-container .cart-item .item-info span {
  color: #ff9f0a;
  font-size: 0.9rem;
  font-weight: bold;
}
.cart-modal #cart-items-container .cart-item .btn-remove {
  background: rgba(255, 59, 48, 0.1);
  border: none;
  color: #ff3b30;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.cart-modal #cart-items-container .cart-item .btn-remove:hover {
  background: #ff3b30;
  color: white;
}
.cart-modal .cart-total {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-modal .cart-total span:first-child {
  color: #aaa;
}
.cart-modal .cart-total #cart-total-amount {
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
}
.cart-modal .btn-primary {
  background-color: #ff9f0a;
  color: #000;
  padding: 18px;
  border-radius: 12px;
  border: none;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: 0.3s;
}
.cart-modal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 159, 10, 0.3);
}

.delivery-banner-container {
  max-width: 1200px;
  margin: 1.5rem auto 3rem;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .delivery-banner-container {
    padding: 0 2rem;
  }
}

.delivery-banner {
  background: linear-gradient(135deg, rgba(255, 159, 10, 0.15) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid rgba(255, 159, 10, 0.4);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .delivery-banner {
    flex-direction: row;
    text-align: left;
    padding: 20px 30px;
    justify-content: flex-start;
  }
}
.delivery-banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .delivery-banner .banner-content {
    flex-direction: row;
    gap: 20px;
  }
}
.delivery-banner .banner-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 4px rgba(255, 159, 10, 0.4));
}
.delivery-banner .banner-text .banner-title {
  color: #ff9f0a;
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .delivery-banner .banner-text .banner-title {
    font-size: 1.25rem;
  }
}
.delivery-banner .banner-text .banner-subtitle {
  color: #ffffff;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.auth-page {
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  font-family: "Roboto", sans-serif;
}
.auth-page .auth-container {
  background-color: #1a1a1a;
  padding: 3rem;
  border-radius: 20px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.auth-page .auth-header {
  margin-bottom: 3rem;
}
.auth-page .auth-header .logo {
  font-size: 2.2rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.auth-page .auth-header .logo span {
  color: #ff9f0a;
}
.auth-page .auth-header h1 {
  font-size: 1.8rem;
  margin: 0 0 8px 0;
  color: #ffffff;
  font-weight: 700;
}
.auth-page .auth-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}
.auth-page .auth-form {
  text-align: left;
}
.auth-page .auth-form .input-group {
  margin-bottom: 1.5rem;
}
.auth-page .auth-form .input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}
.auth-page .auth-form .input-group input {
  width: 100%;
  padding: 14px;
  background-color: #2c2c2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.auth-page .auth-form .input-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.auth-page .auth-form .input-group input:focus {
  border-color: #ff9f0a;
  outline: none;
  background-color: rgba(44, 44, 46, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 159, 10, 0.2);
}
.auth-page .btn-primary {
  display: block;
  width: 100%;
  padding: 14px;
  background-color: #ff9f0a;
  color: #000000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.auth-page .btn-primary:hover {
  background-color: #e08b00;
  transform: translateY(-2px);
}
.auth-page .auth-footer {
  margin-top: 2rem;
}
.auth-page .auth-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.auth-page .auth-footer p a {
  color: #ff9f0a;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}
.auth-page .auth-footer p a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.auth-page .success, .auth-page .error {
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.auth-page .success {
  color: #4caf50;
  background-color: rgba(76, 175, 80, 0.1);
}
.auth-page .error {
  color: #f44336;
  background-color: rgba(244, 67, 54, 0.1);
}
.auth-page .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn all 0.3s ease;
}
.auth-page .modal-overlay .modal-content {
  background-color: #1a1a1a;
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 159, 10, 0.3);
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.auth-page .modal-overlay .modal-content .icon-container {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background-color: rgba(255, 159, 10, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff9f0a;
}
.auth-page .modal-overlay .modal-content .icon-container svg {
  width: 35px;
  height: 35px;
}
.auth-page .modal-overlay .modal-content h2 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.auth-page .modal-overlay .modal-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.auth-page .modal-overlay .modal-content p strong {
  color: #ff9f0a;
}
.auth-page .modal-overlay .modal-content .btn-primary {
  margin-top: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.profile-page {
  background-color: #000000;
  color: #ffffff;
  padding-bottom: 4rem;
}
.profile-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.profile-page .profile-header-banner {
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .profile-page .profile-header-banner {
    text-align: left;
  }
}
.profile-page .profile-header-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: -1px;
}
.profile-page .profile-header-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  font-size: 1.1rem;
}
.profile-page .profile-header-banner p span {
  color: #ff9f0a;
  font-weight: 700;
}
.profile-page .profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .profile-page .profile-grid {
    grid-template-columns: 350px 1fr;
    align-items: start;
  }
}
.profile-page .stats-card {
  background-color: #1a1a1a;
  padding: 40px 3rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 159, 10, 0.1);
  position: sticky;
  top: 100px;
  transition: all 0.2s ease;
}
.profile-page .stats-card:hover {
  border-color: rgba(255, 159, 10, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.profile-page .stats-card .points-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.profile-page .stats-card .points-badge svg {
  width: 50px;
  height: 50px;
  color: #ff9f0a;
  filter: drop-shadow(0 0 10px rgba(255, 159, 10, 0.3));
}
.profile-page .stats-card .points-badge .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.profile-page .stats-card .points-badge .value {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.profile-page .stats-card .stats-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}
.profile-page .stats-card .btn-menu-link {
  color: #ff9f0a;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: 0.3s;
}
.profile-page .stats-card .btn-menu-link:hover {
  text-decoration: underline;
  filter: brightness(1.2);
}
.profile-page .settings-card {
  background-color: #1a1a1a;
  padding: 35px;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.profile-page .settings-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  border-left: 4px solid #ff9f0a;
  padding-left: 15px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-page .settings-card .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .profile-page .settings-card .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.profile-page .input-group {
  position: relative;
}
.profile-page .input-group label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}
.profile-page .input-group input {
  width: 100%;
  padding: 14px 16px;
  background-color: #2c2c2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.profile-page .input-group input:focus {
  outline: none;
  border-color: #ff9f0a;
  box-shadow: 0 0 0 4px rgba(255, 159, 10, 0.1);
}
.profile-page .input-group input[readonly], .profile-page .input-group input.input-disabled {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
}
.profile-page .input-group .lock-icon {
  position: absolute;
  right: 15px;
  bottom: 14px;
  color: #ff3b30;
  font-size: 0.9rem;
  opacity: 0.6;
}
.profile-page .input-group small {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}
.profile-page .btn-primary {
  background-color: #ff9f0a;
  color: #000000;
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .profile-page .btn-primary {
    width: auto;
    min-width: 200px;
  }
}
.profile-page .btn-primary:hover {
  background-color: #e08b00;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 159, 10, 0.2);
}
.profile-page .btn-outline {
  background-color: transparent;
  border: 2px solid #ff9f0a;
  color: #ff9f0a;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .profile-page .btn-outline {
    width: auto;
  }
}
.profile-page .btn-outline:hover {
  background-color: rgba(255, 159, 10, 0.1);
  transform: translateY(-2px);
}

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #000000;
}

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

.admin-page {
  background-color: #000000;
  min-height: 100vh;
  color: #ffffff;
  padding-bottom: 3rem;
  font-family: "Roboto", sans-serif;
}
.admin-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .admin-page .container {
    padding: 0 2rem;
  }
}
.admin-page .admin-header-banner {
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .admin-page .admin-header-banner {
    text-align: left;
    padding: 40px 0;
    margin-bottom: 3rem;
  }
}
.admin-page .admin-header-banner h1 {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .admin-page .admin-header-banner h1 {
    font-size: 2.2rem;
  }
}
.admin-page .admin-header-banner p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
  font-size: 0.8rem;
}
.admin-page .admin-header-banner p span {
  color: #ff9f0a;
  font-weight: 700;
}
.admin-page .admin-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .admin-page .admin-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
    align-items: start;
  }
}
@media (min-width: 768px) {
  .admin-page .admin-sidebar {
    position: sticky;
    top: 20px;
  }
}
.admin-page .admin-sidebar .admin-nav-menu {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.admin-page .admin-sidebar .admin-nav-menu::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .admin-page .admin-sidebar .admin-nav-menu {
    flex-direction: column;
    padding-bottom: 0;
  }
}
.admin-page .admin-sidebar .admin-nav-menu .nav-item {
  flex: 0 0 auto;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.admin-page .admin-sidebar .admin-nav-menu .nav-item svg {
  width: 16px;
  height: 16px;
}
.admin-page .admin-sidebar .admin-nav-menu .nav-item.active {
  background: rgba(255, 159, 10, 0.15);
  color: #ff9f0a;
  border-color: #ff9f0a;
}
.admin-page .admin-main .section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .admin-page .admin-main .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.admin-page .admin-main .section-header h2 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 900;
}
.admin-page .admin-main .section-header .btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  background-color: #ff9f0a;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.admin-page .admin-main .admin-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px;
}
@media (min-width: 768px) {
  .admin-page .admin-main .admin-card {
    padding: 2rem;
    border-radius: 20px;
  }
}
.admin-page .admin-main .table-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .admin-page .admin-main .table-controls {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.admin-page .admin-main .table-controls .search-input {
  width: 100%;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .admin-page .admin-main .table-controls .search-input {
    max-width: 350px;
  }
}
.admin-page .admin-main .table-controls .search-input:focus {
  outline: none;
  border-color: #ff9f0a;
}
.admin-page .admin-main .table-controls .btn-delete-alt {
  width: 100%;
  padding: 12px;
  text-align: center;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #ff3b30;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .admin-page .admin-main .table-controls .btn-delete-alt {
    width: auto;
  }
}
.admin-page .admin-main .table-controls .btn-delete-alt:hover {
  background: #ff3b30;
  color: #ffffff;
}
.admin-page .admin-main .pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-page .admin-main .pagination-controls button {
  background: #2c2c2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
}
.admin-page .admin-main .pagination-controls button:hover:not(:disabled) {
  background: #ff9f0a;
  color: black;
}
.admin-page .admin-main .pagination-controls button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.admin-page .admin-main .pagination-controls span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.admin-page .admin-main .admin-table {
  width: 100%;
  border-collapse: collapse;
  display: block;
}
@media (min-width: 768px) {
  .admin-page .admin-main .admin-table {
    display: table;
  }
}
.admin-page .admin-main .admin-table thead {
  display: none;
}
@media (min-width: 768px) {
  .admin-page .admin-main .admin-table thead {
    display: table-header-group;
  }
}
.admin-page .admin-main .admin-table thead th {
  text-align: left;
  padding: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-page .admin-main .admin-table tbody {
  display: block;
}
@media (min-width: 768px) {
  .admin-page .admin-main .admin-table tbody {
    display: table-row-group;
  }
}
.admin-page .admin-main .admin-table tr {
  display: block;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 10px;
}
@media (min-width: 768px) {
  .admin-page .admin-main .admin-table tr {
    display: table-row;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
  }
}
.admin-page .admin-main .admin-table td {
  display: block;
  position: relative;
  padding: 12px 10px 12px 110px;
  min-height: 40px;
  text-align: left;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}
.admin-page .admin-main .admin-table td:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .admin-page .admin-main .admin-table td {
    display: table-cell;
    position: static;
    padding: 15px 12px;
    text-align: left;
    border-bottom: none;
  }
}
.admin-page .admin-main .admin-table td::before {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  top: 14px;
  width: 90px;
  text-align: left;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .admin-page .admin-main .admin-table td::before {
    display: none;
  }
}
.admin-page .admin-main .admin-table td img {
  max-width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.admin-page .admin-main .admin-table td strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.admin-page .admin-main .admin-table td small {
  display: block;
  color: #aaa;
  font-size: 0.8rem;
  margin-top: 4px;
}
.admin-page .admin-main .admin-table td ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.admin-page .admin-main .admin-table td ul li {
  margin-bottom: 4px;
  font-size: 0.85rem;
  color: #e0e0e0;
}
.admin-page .admin-main .admin-table td .table-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}
.admin-page .admin-main .pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-page .admin-main .pagination-controls button {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
}
.admin-page .admin-main .pagination-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.table-actions .btn-icon {
  width: 36px;
  height: 36px;
  background: #2c2c2e;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}
.status-badge.entregado {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}
.status-badge.cancelado {
  background: rgba(255, 59, 48, 0.2);
  color: #ff3b30;
}
.status-badge.pendiente {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}
.status-badge.preparando {
  background: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 15px;
}
.modal-overlay.active {
  display: flex;
}

.admin-modal {
  background: #1a1a1a;
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  padding: 20px;
}
.admin-modal.modal-sm {
  max-width: 400px;
}
.admin-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.admin-modal .modal-header h2 {
  margin: 0;
  color: #ff9f0a;
  font-size: 1.3rem;
}
.admin-modal .modal-header .close-modal {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}
.admin-modal .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 768px) {
  .admin-modal .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.admin-modal .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
.admin-modal .input-group label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.admin-modal .input-group input, .admin-modal .input-group select {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px;
  border-radius: 8px;
}
.admin-modal .admin-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.admin-modal .btn-primary {
  background: #ff9f0a;
  color: black;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
}

.table-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  width: 100%;
}
@media (min-width: 768px) {
  .table-actions {
    justify-content: flex-start;
    width: auto;
  }
}
.table-actions .btn-icon {
  width: 36px;
  height: 36px;
  background: #2c2c2e;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}
.table-actions .btn-icon.edit:hover {
  background: rgba(255, 159, 10, 0.2);
  color: #ff9f0a;
}
.table-actions .btn-icon.delete:hover {
  background: rgba(255, 59, 48, 0.2);
  color: #ff3b30;
}

.status-badge {
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  justify-self: end;
}
@media (min-width: 768px) {
  .status-badge {
    justify-self: start;
  }
}
.status-badge.pendiente {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}
.status-badge.preparando {
  background: rgba(23, 162, 184, 0.15);
  color: #17a2b8;
  border: 1px solid rgba(23, 162, 184, 0.3);
}
.status-badge.entregado {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}
.status-badge.cancelado {
  background: rgba(255, 59, 48, 0.15);
  color: #ff3b30;
  border: 1px solid rgba(255, 59, 48, 0.3);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 15px;
}
.modal-overlay.active {
  display: flex;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
}
.modal-overlay.active {
  display: flex;
}

.admin-modal {
  background-color: #1a1a1a;
  width: 100%;
  max-width: 550px;
  border-radius: 20px;
  border: 1px solid rgba(255, 159, 10, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  animation: modalAppear 0.4s all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 768px) {
  .admin-modal {
    padding: 3rem;
  }
}
.admin-modal.modal-sm {
  max-width: 420px;
}
.admin-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-modal .modal-header h2 {
  color: #ff9f0a;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0;
}
.admin-modal .modal-header .close-modal {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-modal .modal-header .close-modal:hover {
  color: #ffffff;
}
.admin-modal .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
.admin-modal .input-group label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 700;
}
.admin-modal .input-group input, .admin-modal .input-group select, .admin-modal .input-group textarea {
  width: 100%;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.admin-modal .input-group input:focus, .admin-modal .input-group select:focus, .admin-modal .input-group textarea:focus {
  outline: none;
  border-color: #ff9f0a;
  box-shadow: 0 0 0 3px rgba(255, 159, 10, 0.15);
}
.admin-modal .input-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff9f0a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}
.admin-modal .input-group select option {
  background-color: #1a1a1a;
  color: #ffffff;
}
.admin-modal .form-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
.admin-modal .form-grid .input-group {
  margin-bottom: 0;
  grid-column: span 6;
}
.admin-modal .form-grid .input-group.price-input {
  grid-column: span 6;
}
@media (min-width: 768px) {
  .admin-modal .form-grid .input-group.price-input {
    grid-column: span 2;
  }
}
.admin-modal .admin-form-actions {
  display: grid;
  grid-template-columns: 1fr 60px;
  gap: 10px;
  margin-top: 3rem;
  align-items: stretch;
}
.admin-modal .admin-form-actions .btn-primary {
  height: 52px;
  margin: 0;
  background-color: #ff9f0a;
  color: #000000;
  border: none;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-modal .admin-form-actions .btn-primary:hover {
  background-color: #e08b00;
  transform: translateY(-2px);
}
.admin-modal .admin-form-actions .btn-delete-alt {
  height: 52px;
  background: rgba(255, 59, 48, 0.1);
  border: 2px solid rgba(255, 59, 48, 0.3);
  color: #ff3b30;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.admin-modal .admin-form-actions .btn-delete-alt:hover {
  background: #ff3b30;
  color: #ffffff;
  border-color: #ff3b30;
}

.admin-modal {
  background-color: #1a1a1a;
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  border: 1px solid rgba(255, 159, 10, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .admin-modal {
    padding: 3rem;
  }
}
.admin-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-modal .modal-header h2 {
  color: #ff9f0a;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
}
.admin-modal .modal-header .close-modal {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-modal .modal-header .close-modal:hover {
  color: #ffffff;
}
.admin-modal .admin-form .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media (min-width: 768px) {
  .admin-modal .admin-form .form-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}
.admin-modal .admin-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .admin-modal .admin-form .input-group {
    grid-column: span 3;
  }
  .admin-modal .admin-form .input-group.price-input {
    grid-column: span 2;
  }
  .admin-modal .admin-form .input-group:last-child {
    grid-column: span 6;
  }
}
.admin-modal .admin-form .input-group label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.admin-modal .admin-form .input-group input {
  width: 100%;
  box-sizing: border-box;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 15px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.admin-modal .admin-form .input-group input:focus {
  outline: none;
  border-color: #ff9f0a;
  box-shadow: 0 0 0 3px rgba(255, 159, 10, 0.15);
}
.admin-modal .admin-form .input-group input[type=file] {
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.admin-modal .admin-form .input-group input[type=file]::file-selector-button {
  background-color: rgba(255, 159, 10, 0.1);
  color: #ff9f0a;
  border: 1px solid #ff9f0a;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 15px;
  transition: all 0.2s ease;
}
.admin-modal .admin-form .input-group input[type=file]::file-selector-button:hover {
  background-color: #ff9f0a;
  color: #000000;
}
.admin-modal .admin-form .btn-primary {
  background-color: #ff9f0a;
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Roboto", sans-serif;
  background-color: #ff9f0a !important;
  color: #000000 !important;
}
.admin-modal .admin-form .btn-primary:hover {
  background-color: #e08b00 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 159, 10, 0.3);
}

.selection-container {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.choice {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: flex 0.8s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease;
  cursor: pointer;
  overflow: hidden;
}
.choice.alitas {
  background-color: #000;
  color: #fff;
}
.choice.birria {
  background-color: #fff;
  color: #000;
}
.choice .choice-content {
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.choice.expanding {
  flex: 100;
  z-index: 10;
  cursor: default;
}
.choice.expanding .choice-content {
  opacity: 0;
  transform: scale(1.2);
}
.choice.shrinking {
  flex: 0.0001;
  opacity: 0;
  pointer-events: none;
}

.checkout-page {
  background-color: #000000;
  min-height: 100vh;
  color: #ffffff;
  padding: 2rem 0 4rem;
  font-family: "Roboto", sans-serif;
}
.checkout-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .checkout-page .container {
    padding: 0 2rem;
  }
}
.checkout-page .checkout-header {
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .checkout-page .checkout-header {
    text-align: left;
    margin-bottom: 2rem;
  }
}
.checkout-page .checkout-header h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  .checkout-page .checkout-header h1 {
    font-size: 2.2rem;
  }
}
.checkout-page .checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .checkout-page .checkout-grid {
    grid-template-columns: 1fr 360px;
    gap: 3rem;
  }
}
.checkout-page .checkout-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .checkout-page .checkout-main {
    gap: 2rem;
  }
}
.checkout-page .checkout-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .checkout-page .checkout-card {
    padding: 2rem;
    border-radius: 20px;
  }
}
.checkout-page .checkout-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.checkout-page .checkout-card .card-header svg {
  color: #ff9f0a;
}
.checkout-page .checkout-card .card-header h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}
.checkout-page .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
.checkout-page .input-group:last-child {
  margin-bottom: 0;
}
.checkout-page .input-group label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.checkout-page .input-group input, .checkout-page .input-group textarea {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 14px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  transition: all 0.2s ease;
  font-size: 1rem;
}
.checkout-page .input-group input:focus, .checkout-page .input-group textarea:focus {
  outline: none;
  border-color: #ff9f0a;
  box-shadow: 0 0 0 3px rgba(255, 159, 10, 0.15);
}
.checkout-page .input-group input.input-readonly, .checkout-page .input-group textarea.input-readonly {
  background-color: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}
.checkout-page .input-group input.input-readonly:focus, .checkout-page .input-group textarea.input-readonly:focus {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.checkout-page .input-group textarea {
  resize: vertical;
  min-height: 80px;
}
.checkout-page .points-section {
  border-color: rgba(255, 159, 10, 0.3);
  background-color: rgba(255, 159, 10, 0.03);
}
.checkout-page .checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.checkout-page .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkout-page .checkbox-container input:checked ~ .checkmark {
  background-color: #ff9f0a;
  border-color: #ff9f0a;
}
.checkout-page .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkout-page .checkbox-container .checkmark {
  height: 24px;
  width: 24px;
  background-color: #000000;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  margin-top: 3px;
}
.checkout-page .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #000000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkout-page .checkbox-container .points-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkout-page .checkbox-container .points-content .points-title {
  font-weight: 900;
  font-size: 1.1rem;
  color: #ffffff;
}
.checkout-page .checkbox-container .points-content .points-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.checkout-page .checkbox-container .points-content .points-subtitle small {
  font-weight: 700;
}
.checkout-page .checkout-sidebar .payment-card {
  background-color: #2c2c2e;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .checkout-page .checkout-sidebar .payment-card {
    padding: 2rem;
    border-radius: 20px;
    position: sticky;
    top: 20px;
  }
}
.checkout-page .checkout-sidebar .payment-card h3 {
  color: #ff9f0a;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 900;
}
.checkout-page .checkout-sidebar .payment-card .price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
.checkout-page .checkout-sidebar .payment-card .price-breakdown .total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.checkout-page .checkout-sidebar .payment-card .price-breakdown .total-line.discount {
  color: #4cd964;
  font-weight: 700;
}
.checkout-page .checkout-sidebar .payment-card .price-breakdown .total-line.final {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
}
.checkout-page .checkout-sidebar .payment-card .payment-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.checkout-page .checkout-sidebar .payment-card .payment-info p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkout-page .checkout-sidebar .payment-card .payment-info p svg {
  color: #ff9f0a;
}
.checkout-page .checkout-sidebar .payment-card .btn-order-final {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 900;
  border-radius: 12px;
  margin-bottom: 15px;
  border: none;
  background-color: #ff9f0a;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease;
}
.checkout-page .checkout-sidebar .payment-card .btn-order-final:hover {
  background-color: #e08b00;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 159, 10, 0.3);
}
.checkout-page .checkout-sidebar .payment-card .btn-order-final:disabled {
  background-color: #555;
  color: #888;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.checkout-page .checkout-sidebar .payment-card .safe-checkout {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 0;
}

#map-container {
  height: 300px;
  width: 100%;
  margin-top: 15px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background-color: #121212;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1;
}
#map-container .leaflet-bar {
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}
#map-container .leaflet-bar a {
  background-color: #1e1e1e !important;
  color: var(--color-primary) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
#map-container .leaflet-bar a:hover {
  background-color: #2a2a2a !important;
}
#map-container .leaflet-marker-icon {
  filter: drop-shadow(0 0 5px var(--color-primary));
}

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}
.delivery-options .delivery-option {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-light-muted);
}
.delivery-options .delivery-option i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.delivery-options .delivery-option span {
  font-weight: 600;
  font-size: 0.9rem;
}
.delivery-options .delivery-option:hover {
  border-color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.05);
}
.delivery-options .delivery-option.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.3);
}
.delivery-options .delivery-option.active i, .delivery-options .delivery-option.active span {
  color: #fff;
}

.address-fields {
  margin-top: 15px;
}
.address-fields .input-group {
  margin-bottom: 15px;
}
.address-fields .input-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.85rem;
  color: var(--text-light-muted);
}
.address-fields .input-group input {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
}
.address-fields .input-group input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.address-fields .input-group input[readonly] {
  opacity: 0.7;
  cursor: not-allowed;
}

.confirmation-page {
  background-color: #000000;
  padding: 3rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.confirmation-page .confirmation-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  border: 1px solid rgba(255, 159, 10, 0.1);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .confirmation-page .confirmation-card {
    padding: 4rem;
  }
}
.confirmation-page .confirmation-card .success-icon {
  margin-bottom: 2rem;
  display: inline-block;
}
.confirmation-page .confirmation-card .success-icon svg {
  filter: drop-shadow(0 0 15px rgba(76, 217, 100, 0.3));
  animation: popIn 0.6s all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.confirmation-page .confirmation-card h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .confirmation-page .confirmation-card h1 {
    font-size: 3rem;
  }
}
.confirmation-page .confirmation-card .order-number {
  font-size: 1.1rem;
  color: #ff9f0a;
  margin-bottom: 3rem;
  background: rgba(255, 159, 10, 0.1);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
}
.confirmation-page .confirmation-card .next-steps {
  margin-bottom: 3rem;
}
.confirmation-page .confirmation-card .next-steps p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.confirmation-page .confirmation-card .next-steps p strong {
  color: #ffffff;
}
.confirmation-page .confirmation-card .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .confirmation-page .confirmation-card .action-buttons {
    flex-direction: row;
    gap: 2rem;
  }
}
.confirmation-page .confirmation-card .action-buttons .btn-primary {
  background-color: #ff9f0a;
  color: #000000;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.confirmation-page .confirmation-card .action-buttons .btn-primary:hover {
  background-color: #e08b00;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 159, 10, 0.3);
}
.confirmation-page .confirmation-card .action-buttons .btn-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.confirmation-page .confirmation-card .action-buttons .btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.mis-pedidos-page {
  background-color: #000000;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 4rem;
  font-family: "Roboto", sans-serif;
}
.mis-pedidos-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .mis-pedidos-page .container {
    padding: 0 2rem;
  }
}
.mis-pedidos-page .page-header {
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .mis-pedidos-page .page-header {
    text-align: left;
  }
}
.mis-pedidos-page .page-header h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  .mis-pedidos-page .page-header h1 {
    font-size: 2.5rem;
  }
}
.mis-pedidos-page .page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}
.mis-pedidos-page .empty-state-card {
  background-color: #1a1a1a;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 50px 20px;
  text-align: center;
}
.mis-pedidos-page .empty-state-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.mis-pedidos-page .empty-state-card .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
}
.mis-pedidos-page .pedidos-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mis-pedidos-page .pedido-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .mis-pedidos-page .pedido-card {
    padding: 2rem;
  }
}
.mis-pedidos-page .pedido-card:hover {
  border-color: rgba(255, 159, 10, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.mis-pedidos-page .pedido-card .pedido-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
}
.mis-pedidos-page .pedido-card .pedido-header h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 900;
  color: #ffffff;
}
.mis-pedidos-page .pedido-card .pedido-header h3 span {
  color: #ff9f0a;
  font-weight: 400;
}
.mis-pedidos-page .pedido-card .pedido-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.mis-pedidos-page .pedido-card .pedido-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}
.mis-pedidos-page .pedido-card .pedido-items li:last-child {
  border-bottom: none;
}
.mis-pedidos-page .pedido-card .pedido-items li .item-name {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.mis-pedidos-page .pedido-card .pedido-items li .item-qty {
  background: rgba(255, 159, 10, 0.1);
  color: #ff9f0a;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}
.mis-pedidos-page .pedido-card .pedido-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .mis-pedidos-page .pedido-card .pedido-footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-total span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-total strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions {
  text-align: right;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .btn-cancelar-pedido {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 59, 48, 0.5);
  color: #ff3b30;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .btn-cancelar-pedido {
    width: auto;
    padding: 10px 20px;
  }
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .btn-cancelar-pedido:hover {
  background: #ff3b30;
  color: #ffffff;
  border-color: #ff3b30;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .status-message {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .status-message .main-status {
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .status-message .main-status.preparando {
  color: #17a2b8;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .status-message .main-status.entregado {
  color: #28a745;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .status-message .main-status.cancelado {
  color: #ff3b30;
}
.mis-pedidos-page .pedido-card .pedido-footer .pedido-actions .status-message small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-top: 4px;
}

.legal-page {
  background-color: #000000;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 4rem;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
.legal-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .legal-page .container {
    padding: 0 2rem;
  }
}
.legal-page .legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-page .legal-header h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #ff9f0a;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
@media (min-width: 768px) {
  .legal-page .legal-header h1 {
    font-size: 2.8rem;
  }
}
.legal-page .legal-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.legal-page .legal-content {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .legal-page .legal-content {
    padding: 3rem;
    border-radius: 20px;
  }
}
.legal-page .legal-content section {
  margin-bottom: 3rem;
}
.legal-page .legal-content section:last-child {
  margin-bottom: 0;
}
.legal-page .legal-content section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
  border-left: 4px solid #ff9f0a;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .legal-page .legal-content section h2 {
    font-size: 1.4rem;
  }
}
.legal-page .legal-content section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .legal-page .legal-content section p {
    font-size: 1rem;
  }
}
.legal-page .legal-content section p strong {
  color: #ffffff;
}

.contacto-page {
  background-color: #000000;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 4rem;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
.contacto-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .contacto-page .container {
    padding: 0 2rem;
  }
}
.contacto-page .contacto-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .contacto-page .contacto-header {
    margin-bottom: 4rem;
  }
}
.contacto-page .contacto-header h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.contacto-page .contacto-header h1 span {
  color: #ff9f0a;
}
@media (min-width: 768px) {
  .contacto-page .contacto-header h1 {
    font-size: 3.2rem;
  }
}
.contacto-page .contacto-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.contacto-page .contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contacto-page .contacto-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}
.contacto-page .contacto-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacto-page .contacto-info .info-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s ease;
}
.contacto-page .contacto-info .info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 159, 10, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.contacto-page .contacto-info .info-card:hover .icon-wrapper {
  background-color: #ff9f0a;
  color: #000000;
}
.contacto-page .contacto-info .info-card .icon-wrapper {
  background-color: rgba(255, 159, 10, 0.1);
  color: #ff9f0a;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contacto-page .contacto-info .info-card .icon-wrapper svg {
  width: 24px;
  height: 24px;
}
.contacto-page .contacto-info .info-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 5px;
}
.contacto-page .contacto-info .info-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contacto-page .contacto-info .info-card p a {
  color: #ff9f0a;
  text-decoration: none;
  font-weight: 700;
}
.contacto-page .contacto-info .info-card p a:hover {
  text-decoration: underline;
}
.contacto-page .contacto-info .info-card p small {
  color: rgba(255, 255, 255, 0.4);
}
.contacto-page .contacto-form-section .form-container {
  background-color: #2c2c2e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .contacto-page .contacto-form-section .form-container {
    padding: 3rem;
  }
}
.contacto-page .contacto-form-section .form-container h2 {
  color: #ff9f0a;
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 2rem;
}
.contacto-page .contacto-form-section .form-container .bior-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacto-page .contacto-form-section .form-container .bior-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contacto-page .contacto-form-section .form-container .bior-form .input-group label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contacto-page .contacto-form-section .form-container .bior-form .input-group input, .contacto-page .contacto-form-section .form-container .bior-form .input-group textarea {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.contacto-page .contacto-form-section .form-container .bior-form .input-group input::placeholder, .contacto-page .contacto-form-section .form-container .bior-form .input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contacto-page .contacto-form-section .form-container .bior-form .input-group input:focus, .contacto-page .contacto-form-section .form-container .bior-form .input-group textarea:focus {
  outline: none;
  border-color: #ff9f0a;
  box-shadow: 0 0 0 3px rgba(255, 159, 10, 0.15);
}
.contacto-page .contacto-form-section .form-container .bior-form .input-group textarea {
  resize: vertical;
}
.contacto-page .contacto-form-section .form-container .bior-form .w-100 {
  width: 100%;
}
.contacto-page .contacto-form-section .form-container .bior-form .btn-primary {
  margin-top: 10px;
  padding: 16px;
  font-size: 1.05rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contacto-page .contacto-form-section .form-container .bior-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 159, 10, 0.3);
}

.nosotros-page {
  background-color: #000000;
  min-height: 100vh;
  padding-top: 80px;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}
.nosotros-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .nosotros-page .container {
    padding: 0 2rem;
  }
}
.nosotros-page .nosotros-hero {
  background: linear-gradient(180deg, rgba(255, 159, 10, 0.05) 0%, #000000 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nosotros-page .nosotros-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.nosotros-page .nosotros-hero .hero-content h1 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.nosotros-page .nosotros-hero .hero-content h1 span {
  color: #ff9f0a;
}
@media (min-width: 768px) {
  .nosotros-page .nosotros-hero .hero-content h1 {
    font-size: 3.5rem;
  }
}
.nosotros-page .nosotros-hero .hero-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin: 0;
}
@media (min-width: 768px) {
  .nosotros-page .nosotros-hero .hero-content p {
    font-size: 1.3rem;
  }
}
.nosotros-page .nosotros-historia {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .nosotros-page .nosotros-historia {
    padding: 4rem 0;
  }
}
.nosotros-page .nosotros-historia .historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .nosotros-page .nosotros-historia .historia-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}
.nosotros-page .nosotros-historia .historia-text h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
.nosotros-page .nosotros-historia .historia-text h2 span {
  color: #ff9f0a;
}
.nosotros-page .nosotros-historia .historia-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.nosotros-page .nosotros-historia .historia-text p strong {
  color: #ffffff;
}
.nosotros-page .nosotros-historia .historia-image .image-placeholder {
  width: 100%;
  height: 350px;
  background-color: #1a1a1a;
  border: 2px dashed rgba(255, 159, 10, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: rgba(255, 159, 10, 0.5);
}
.nosotros-page .nosotros-historia .historia-image .image-placeholder svg {
  width: 60px;
  height: 60px;
}
.nosotros-page .nosotros-historia .historia-image .image-placeholder span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nosotros-page .nosotros-valores {
  background-color: #1a1a1a;
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.nosotros-page .nosotros-valores .valores-header {
  text-align: center;
  margin-bottom: 3rem;
}
.nosotros-page .nosotros-valores .valores-header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .nosotros-page .nosotros-valores .valores-header h2 {
    font-size: 2.5rem;
  }
}
.nosotros-page .nosotros-valores .valores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nosotros-page .nosotros-valores .valores-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nosotros-page .nosotros-valores .valor-card {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.nosotros-page .nosotros-valores .valor-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 159, 10, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.nosotros-page .nosotros-valores .valor-card .valor-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.nosotros-page .nosotros-valores .valor-card h3 {
  color: #ff9f0a;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
}
.nosotros-page .nosotros-valores .valor-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

#configuracion .config-preventas-card {
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 159, 10, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  #configuracion .config-preventas-card {
    max-width: 650px;
    padding: 3rem;
  }
}
#configuracion .config-preventas-card .current-status-box {
  background-color: rgba(255, 159, 10, 0.05);
  border-left: 4px solid #ff9f0a;
  padding: 15px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
}
#configuracion .config-preventas-card .current-status-box small {
  color: #ff9f0a;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 5px;
}
#configuracion .config-preventas-card .current-status-box p {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
}
#configuracion .config-preventas-card .admin-form .input-group {
  margin-bottom: 1.5rem;
}
#configuracion .config-preventas-card .admin-form .input-group label {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  font-size: 0.95rem;
}
#configuracion .config-preventas-card .admin-form .input-group input[type=date] {
  width: 100%;
  box-sizing: border-box;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 15px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
  color-scheme: dark;
}
#configuracion .config-preventas-card .admin-form .input-group input[type=date]:focus {
  outline: none;
  border-color: #ff9f0a;
  box-shadow: 0 0 0 3px rgba(255, 159, 10, 0.15);
}
#configuracion .config-preventas-card .admin-form .input-group input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
}
#configuracion .config-preventas-card .admin-form .input-group input[type=date]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  filter: invert(60%) sepia(80%) saturate(300%) hue-rotate(350deg);
}
#configuracion .config-preventas-card .admin-form .input-group .help-text {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 10px;
  display: block;
}
#configuracion .config-preventas-card .admin-form .btn-submit-config {
  background-color: #ff9f0a !important;
  color: #000000 !important;
  border: none;
  width: 100%;
  height: auto;
  padding: 16px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1.5rem;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 768px) {
  #configuracion .config-preventas-card .admin-form .btn-submit-config {
    margin-top: 2rem;
  }
}
#configuracion .config-preventas-card .admin-form .btn-submit-config:hover {
  background-color: #e08b00 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 159, 10, 0.3);
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background-color: #000000;
}

/*# sourceMappingURL=style.css.map */
