/* Main */
body {
  background: #F6F1EC;
}
[data-bs-theme="dark"] body {
  background: #1E1E1E;
}

/* Buscador estilo moderno */


/* Botón principal */
.btn-primary {
  background-color: #F24E2E;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
}

.btn-primary:hover {
  background-color: #D84326;
}

/* Botón secundario */
.btn-outline-secondary {
  border-radius: 999px;
}

/* 🌙 DARK MODE */


/* Navbar */
[data-bs-theme="dark"] .navbar {
  background-color: #2A2A2A !important;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.4);
          box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Texto */
[data-bs-theme="dark"] .navbar-brand,
[data-bs-theme="dark"] .nav-link {
  color: #F5F5F5 !important;
}


/* Botón primario */
[data-bs-theme="dark"] .btn-primary {
  background-color: #F24E2E;
  border: none;
}

[data-bs-theme="dark"] .btn-primary:hover {
  background-color: #D84326;
}

/* Botón secundario */
[data-bs-theme="dark"] .btn-outline-secondary {
  color: #F5F5F5;
  border-color: #444;
}

[data-bs-theme="dark"] .btn-outline-secondary:hover {
  background-color: #3A3A3A;
  border-color: #555;
}

/* Toggle icon (hamburger) */
[data-bs-theme="dark"] .navbar-toggler {
  border-color: #444;
}

[data-bs-theme="dark"] .navbar-toggler-icon {
  -webkit-filter: invert(1);
          filter: invert(1);
}


/* Contenedor */
/* Wrapper */
.search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 500px;
  width: 100%;
  background: transparent;
  border: 1px solid #e5ded8;
  border-radius: 999px;
  overflow: hidden;
}

/* Input */
.search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  outline: none;
  color: #1E1E1E;
}

.search-input::-webkit-input-placeholder {
  color: #BDBDBD;
}

.search-input::-moz-placeholder {
  color: #BDBDBD;
}

.search-input:-ms-input-placeholder {
  color: #BDBDBD;
}

.search-input::-ms-input-placeholder {
  color: #BDBDBD;
}

.search-input::placeholder {
  color: #BDBDBD;
}

/* Botón outline */
.search-btn {
  background: transparent;
  color: #F24E2E;
  padding: 10px 18px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border: none;
  border-left: 1px solid #e5ded8;
}

/* Hover elegante */
.search-btn:hover {
  background: #FFE6DE;
}

/* Focus (clave 🔥) */
.search-wrapper:focus-within {
  border-color: #F24E2E;
  -webkit-box-shadow: 0 0 0 2px rgba(242, 78, 46, 0.15);
          box-shadow: 0 0 0 2px rgba(242, 78, 46, 0.15);
}

/* Wrapper */
[data-bs-theme="dark"] .search-wrapper {
  border: 1px solid #3a3a3a;
}

/* Input */
[data-bs-theme="dark"] .search-input {
  color: #FFFFFF;
}

[data-bs-theme="dark"] .search-input::-webkit-input-placeholder {
  color: #BDBDBD;
}

[data-bs-theme="dark"] .search-input::-moz-placeholder {
  color: #BDBDBD;
}

[data-bs-theme="dark"] .search-input:-ms-input-placeholder {
  color: #BDBDBD;
}

[data-bs-theme="dark"] .search-input::-ms-input-placeholder {
  color: #BDBDBD;
}

[data-bs-theme="dark"] .search-input::placeholder {
  color: #BDBDBD;
}

/* Botón */
[data-bs-theme="dark"] .search-btn {
  color: #F24E2E;
  border-left: 1px solid #3a3a3a;
}

/* Hover */
[data-bs-theme="dark"] .search-btn:hover {
  background: rgba(242, 78, 46, 0.15);
}

/* Focus */
[data-bs-theme="dark"] .search-wrapper:focus-within {
  border-color: #F24E2E;
  -webkit-box-shadow: 0 0 0 2px rgba(242, 78, 46, 0.25);
          box-shadow: 0 0 0 2px rgba(242, 78, 46, 0.25);
}

/* LOGIN */ 

.login-page {
  min-height: 100vh;
  background: #F6F1EC;
  padding: 70px 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: Inter, system-ui, sans-serif;
}

.login-hero {
  text-align: center;
  margin-bottom: 55px;
}

.login-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 28px;
  border-radius: 28px;
  background: #F8EDE6;
  color: #F24E2E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 34px;
  -webkit-box-shadow: 0 18px 45px rgba(242, 78, 46, 0.15);
          box-shadow: 0 18px 45px rgba(242, 78, 46, 0.15);
}

.login-hero h1 {
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
  color: #1E1E1E;
  margin-bottom: 18px;
}

.login-hero p {
  font-size: 22px;
  line-height: 1.45;
  color: #7A7A7A;
  margin: 0;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.login-card h2 {
  font-size: 22px;
  /* font-weight: 800; */
  color: #1E1E1E;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #7A7A7A;
  margin-bottom: 6px;
}

.input-box {
  height: 48px;
  border-radius: 12px;
  background: #F2EAE4;
  border: 2px solid #e5ded8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 14px;
  gap: 14px;
}

.input-box i {
  color: #9E9E9E;
  font-size: 16px;
}

.input-box input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #1E1E1E;
}

.input-box input::-webkit-input-placeholder {
  color: #BDBDBD;
}

.input-box input::-moz-placeholder {
  color: #BDBDBD;
}

.input-box input:-ms-input-placeholder {
  color: #BDBDBD;
}

.input-box input::-ms-input-placeholder {
  color: #BDBDBD;
}

.input-box input::placeholder {
  color: #BDBDBD;
}

.input-eye {
  margin-left: auto;
}

.forgot-link {
  display: block;
  text-align: right;
  color: #F24E2E;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  margin-top: -8px;
  margin-bottom: 18px;
}

.login-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: #F24E2E;
  color: #FFFFFF;
  font-size: 16px;
  /* font-weight: 800; */
  -webkit-box-shadow: 0 14px 30px rgba(242, 78, 46, 0.25);
          box-shadow: 0 14px 30px rgba(242, 78, 46, 0.25);
}

.login-btn:hover {
  background: #D84326;
}

.login-separator {
  width: 100%;
  max-width: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin: 44px 0 28px;
  color: #BDBDBD;
}

.login-separator span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #EAE3DD;
}

.google-btn {
  width: 100%;
  max-width: 420px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid #e5ded8;
  background: #FFFFFF;
  color: #1E1E1E;
  font-size: 15px;
  /* font-weight: 700; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}

.google-btn strong {
  font-size: 30px;
}

[data-bs-theme="dark"] .login-page {
  background: #171412;
}

[data-bs-theme="dark"] .login-hero h1,
[data-bs-theme="dark"] .login-card h2,
[data-bs-theme="dark"] .input-box input,
[data-bs-theme="dark"] .google-btn {
  color: #F8F4F0;
}

[data-bs-theme="dark"] .login-hero p,
[data-bs-theme="dark"] .form-group label {
  color: #B8AEA7;
}

[data-bs-theme="dark"] .login-card,
[data-bs-theme="dark"] .google-btn {
  background: #211D1A;
  border-color: #3A302A;
}

[data-bs-theme="dark"] .input-box {
  background: #2A241F;
  border-color: #3A302A;
}

[data-bs-theme="dark"] .login-separator span {
  background: #3A302A;
}

/* INDEX */
.deals-web-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  background: #F6F1EC;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
}

.deals-sidebar {
  position: sticky;
  top: 24px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #FFFFFF;
  border: 1px solid #e5ded8;
  border-radius: 20px;
  padding: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.deals-sidebar h3 {
  margin: 0 0 20px;
  color: #1E1E1E;
  font-size: 22px;
}

.filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-group label {
  font-size: 14px;
  font-weight: 700;
  color: #1E1E1E;
}

.filter-group input,
.filter-group select {
  width: 100%;
  border: 1px solid #e5ded8;
  background: #F2EAE4;
  color: #1E1E1E;
  border-radius: 999px;
  padding: 12px 14px;
  outline: none;
}

.filter-chip {
  border: 1px solid #e5ded8;
  background: #FFFFFF;
  color: #1E1E1E;
  border-radius: 999px;
  padding: 10px 14px;
  text-align: left;
  cursor: pointer;
}

.filter-chip.active {
  background: #FFE6DE;
  border-color: #F24E2E;
  color: #F24E2E;
  font-weight: 700;
}

.deals-content {
  min-width: 0;
}

.business-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 16px;
  border: 1px solid #e5ded8;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}

.business-cover {
  position: relative;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;

  background-size: cover;
  background-position: center;
}


/* .business-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
} */

.business-cover-overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(rgba(0,0,0,0.2)),
    to(rgba(0,0,0,0.7))
  );
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.7)
  );
}
.business-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;

  border: 3px solid #ffffff;
  background: #FFFFFF;

  /* efecto flotante */
  -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.25);
          box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.business-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.business-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.business-info h2 {
  margin: 0 0 4px;
  font-size: 28px;
  font-weight: 800;
}

.business-info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #F24E2E;
  font-size: 14px;
  font-weight: 700;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  grid-template-rows: 1fr auto;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #eae3dd;
  border-radius: 18px;
  padding: 12px;
}

.product-card img {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  grid-row: span 2;
}

.product-info h4 {
  margin: 0 0 4px;
  color: #1E1E1E;
  font-size: 16px;
}

.product-info p {
  margin: 0 0 8px;
  color: #7A7A7A;
  font-size: 14px;
  line-height: 1.35;
}

.product-info strong {
  color: #1E1E1E;
  font-size: 18px;
}

.product-card button {
  justify-self: end;
  -ms-flex-item-align: end;
      align-self: end;
  border: 1px solid #f24e2e;
  color: #F24E2E;
  background: #FFFFFF;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  cursor: pointer;
}

.product-card button:hover {
  background: #FFE6DE;
}

[data-bs-theme="dark"] .deals-web-layout {
  background: #171412;
}

[data-bs-theme="dark"] .deals-sidebar,
[data-bs-theme="dark"] .business-card,
[data-bs-theme="dark"] .product-card {
  background: #211D1A;
  border-color: #3A332F;
}

[data-bs-theme="dark"] .deals-sidebar h3,
[data-bs-theme="dark"] .filter-group label,
[data-bs-theme="dark"] .filter-chip,
[data-bs-theme="dark"] .product-info h4,
[data-bs-theme="dark"] .product-info strong {
  color: #F5F1ED;
}

[data-bs-theme="dark"] .filter-group input,
[data-bs-theme="dark"] .filter-group select {
  background: #2B2521;
  border-color: #3A332F;
  color: #F5F1ED;
}

[data-bs-theme="dark"] .filter-chip {
  background: #211D1A;
  border-color: #3A332F;
}

[data-bs-theme="dark"] .filter-chip.active {
  background: rgba(242, 78, 46, 0.16);
  border-color: #F24E2E;
  color: #FF8A70;
}

[data-bs-theme="dark"] .product-info p {
  color: #B8ADA5;
}

[data-bs-theme="dark"] .product-card button {
  background: transparent;
  color: #FF8A70;
  border-color: #F24E2E;
}

[data-bs-theme="dark"] .product-card button:hover {
  background: rgba(242, 78, 46, 0.16);
}

@media (max-width: 991px) {
  .deals-web-layout {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .deals-sidebar {
    position: static;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .business-cover {
    height: 120px;
  }
}

/* PRODUCTO */
.product-container {
  width: 100%;
  max-width: 610px; /* 👈 clave (podés subir a 520 si querés más ancho) */
}
.product-page {
  min-height: 100vh;
  background: #F6F1EC;
  padding: 20px;
  color: #1E1E1E;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
            justify-content: center;

}

.product-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.product-header h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.product-header p {
  font-size: 14px;
  color: #7A7A7A;
  margin: 4px 0 0;
}

.product-back {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #FFFFFF;
  color: #F24E2E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-card,
.send-options-card,
.schedule-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-image {
  height: 150px;
  border-radius: 18px;
  background: #FFE6DE;
  color: #F24E2E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 46px;
  margin-bottom: 16px;
}

.product-info h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.producto-info p {
  font-size: 14px;
  color: #7A7A7A;
  margin-bottom: 14px;
}

.product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.product-meta span {
  font-size: 13px;
  color: #7A7A7A;
}

.product-meta i {
  color: #F24E2E;
  margin-right: 6px;
}

.send-options-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

.send-option {
  background: #F2EAE4;
  border-radius: 16px;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.send-option div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.send-option i {
  color: #F24E2E;
  font-size: 18px;
}

.send-option span {
  font-size: 15px;
  font-weight: 500;
}

.send-option input {
  width: 20px;
  height: 20px;
  accent-color: #F24E2E;
}

.schedule-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.schedule-card .form-control {
  border-radius: 14px;
  border: 1px solid #e5ded8;
  background: #F2EAE4;
  padding: 12px 14px;
}

.product-submit-btn {
  width: 100%;
  border: none;
  border-radius: 18px;
  background: #F24E2E;
  color: #FFFFFF;
  padding: 15px;
  font-weight: 700;
  font-size: 16px;
}

.product-submit-btn:hover {
  background: #D84326;
}
[data-bs-theme="dark"] .product-page {
  background: #171412;
  color: #FFFFFF;
}

[data-bs-theme="dark"] .product-back,
[data-bs-theme="dark"] .product-card,
[data-bs-theme="dark"] .send-options-card,
[data-bs-theme="dark"] .schedule-card {
  background: #221E1B;
}

[data-bs-theme="dark"] .product-header p,
[data-bs-theme="dark"] .product-info p,
[data-bs-theme="dark"] .product-meta span {
  color: #BDBDBD;
}

[data-bs-theme="dark"] .product-image {
  background: rgba(242, 78, 46, 0.14);
}

[data-bs-theme="dark"] .send-option,
[data-bs-theme="dark"] .schedule-card .form-control {
  background: #2D2723;
  border-color: #3A332E;
  color: #FFFFFF;
}

/* ORDEN */

.orders-wrapper {
  max-width: 88%;   /* 🔥 ajustá esto: 520, 600, 680 según gusto */
  margin: 0 auto;     /* centra horizontal */
  padding: 16px;      /* aire en mobile */
}
.order-card {
  background: #ffffff;
  border: 1px solid #e5ded8;
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.04);
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.order-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.order-header h5 {
  margin: 8px 0 4px;
  color: #1e1e1e;
  font-weight: 700;
}

.order-header p {
  margin: 0;
  color: #7a7a7a;
  font-size: 14px;
}

.order-header strong {
  color: #1e1e1e;
  white-space: nowrap;
}

.order-status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.order-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #7a7a7a;
  font-size: 14px;
}

.order-meta i {
  color: #f24e2e;
  width: 18px;
}

.btn-order-pay {
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  padding: 13px 16px;
  background: #f24e2e;
  color: #ffffff;
  font-weight: 700;
}

.btn-order-pay:hover {
  background: #d84326;
}

.order-pending .order-status {
  background: #ffe6de;
  color: #f24e2e;
}

.order-paid .order-status {
  background: #e6f4ea;
  color: #4caf50;
}

.order-redeemed .order-status {
  background: #f1edfa;
  color: #8e7cc3;
}

.order-expired {
  background: #f5f5f5;
}

.order-expired .order-status {
  background: #eeeeee;
  color: #7a7a7a;
}

.redeem-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.redeem-code span {
  width: 38px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f3e8df;
  border: 1px solid #e0d3c8;
  color: #f24e2e;
  font-weight: 800;
  font-size: 18px;
}

/* Dark mode */
[data-bs-theme="dark"] .order-card {
  background: #1f1f1f;
  border-color: #333333;
  -webkit-box-shadow: none;
          box-shadow: none;
}

[data-bs-theme="dark"] .order-header h5,
[data-bs-theme="dark"] .order-header strong {
  color: #f5f5f5;
}

[data-bs-theme="dark"] .order-header p,
[data-bs-theme="dark"] .order-meta {
  color: #bdbdbd;
}

[data-bs-theme="dark"] .order-expired {
  background: #252525;
}

[data-bs-theme="dark"] .redeem-code span {
  background: #332620;
  border-color: #4a382f;
}















/* Test */
 .form-control{

  border-radius: 14px;
  border: 1px solid #e5ded8;
  background: #F2EAE4;
  padding: 12px 14px;
}
 .style1 {
  padding-left: 15px;
}
 .style2 {
  padding-left: 15px;
}