@charset "UTF-8";
.error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.select-type input[type=radio] {
  display: none;
}

.select-type label {
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-right: 1rem;
  cursor: pointer;
}

.select-type input[type=radio]:checked + label {
  border-color: var(--color-border-dark, #e2b16d);
  background-color: #fdf5e6;
}

.btn-register {
  background-color: var(--color-button-bg, #EDB059);
  color: var(--color-button-text, #ffffff);
  border: 1px solid var(--color-button-border, #EDB059);
}

.btn-register:hover {
  background-color: var(--color-button-hover, #d09d50);
  color: var(--color-button-hover-text, #ffffff);
  border-color: var(--color-button-hover-border, #d09d50);
}

.form-check-label a {
  color: var(--color-border-dark, #e2b16d);
  text-decoration: none;
}

.form-control:focus {
  border-color: var(--color-primary, #edb059);
  box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.25);
}

.custom-input .input-group-text {
  background-color: #f5f7fb;
  border: none;
  border-right: 1px solid #ccc;
  border-radius: 0;
}

.custom-input .form-control {
  border-left: none;
  border-radius: 0;
}

.sign-in-btn {
  background-color: var(--color-button-bg, #EDB059) !important;
  border: 1px solid var(--color-button-border, #EDB059) !important;
  color: var(--color-button-text, #ffffff) !important;
}

.sign-in-btn:hover {
  background-color: var(--color-button-hover, #d09d50) !important;
  border-color: var(--color-button-hover-border, #d09d50) !important;
  color: var(--color-button-hover-text, #ffffff) !important;
}

.profile-wrapper * {
  box-sizing: border-box;
}

.profile-wrapper {
  color: #333;
  background-color: #f4f4f4;
}

.profile-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #fff;
  border-right: 1px solid #ddd;
  padding: 30px 20px;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.05);
}

.avatar-wrapper {
  text-align: center;
}
.avatar-wrapper .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0 auto 10px;
  border: 3px solid var(--color-primary, #edb059);
  box-shadow: 0 0 0 4px #fff;
}
.avatar-wrapper .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.avatar-wrapper .avatar-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.menu {
  list-style: none;
  padding: 0;
}

.menu li {
  margin: 12px 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

.menu li a {
  display: block;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

.menu li:hover a,
.menu li.active a {
  background-color: var(--color-primary, #edb059);
  color: white;
}

.profile-content {
  flex: 1;
  padding: 40px;
  background-color: #fff;
}

.profile-content h2 {
  margin-top: 0;
}

input[type=checkbox] {
  accent-color: var(--color-primary, #edb059);
}

.mobile-header {
  display: none;
  background-color: #fff;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.small-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid var(--color-primary, #edb059);
  box-shadow: 0 0 0 3px #fff;
}
.small-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mobile-menu {
  display: none;
  padding: 20px;
  background-color: #fff;
  min-height: 100vh;
}

.mobile-menu h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.mobile-menu .menu li {
  text-align: left;
  padding: 15px;
  border: 1px solid #eee;
}

.mobile-back {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  font-size: 16px;
  align-items: center;
  gap: 10px;
}

.mobile-back i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
  .profile-content {
    padding: 20px;
  }
  .mobile-header,
  .mobile-back {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .profile-wrapper {
    background-color: #fff;
  }
}
.orders-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.order-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-left: 6px solid var(--color-primary, #edb059);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  gap: 15px;
  transition: box-shadow 0.3s ease;
}

.order-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.order-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1;
}

.info-item {
  min-width: 120px;
}

.info-label {
  font-weight: 600;
  font-size: 13px;
  color: #555;
}

.info-value {
  font-size: 14px;
  color: #333;
}

.button:hover {
  background-color: #d09d50 !important;
  text-decoration: none;
  color: white !important;
}

.no-underline-link {
  text-decoration: none;
  color: inherit;
}

.no-underline-link:hover {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 600px) {
  .order-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .details-button {
    align-self: flex-end;
  }
}
.details-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
  color: #333;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
}

.details-table td {
  padding: 10px 5px;
  vertical-align: top;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.details-table td:first-child {
  font-weight: 600;
  color: #444;
  width: 180px;
}

.details-table td:last-child {
  color: #555;
}

.status {
  display: inline-block;
  background-color: #d4edda;
  color: #155724 !important;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 14px !important;
  white-space: nowrap;
  width: auto;
}

.responsive-section {
  overflow-x: auto;
}

@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
  .details-table td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .details-table td:first-child {
    font-weight: bold;
    color: #333;
  }
  .details-table tr {
    display: block;
    margin-bottom: 12px;
  }
  .details-table {
    display: block;
    width: 100%;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
.pagination .page-item .page-link {
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
}
.pagination .page-item .page-link:hover {
  background: #f0f0f0;
}
.pagination .page-item.active .page-link {
  background: #e0e0e0;
  font-weight: 600;
  cursor: default;
}
.pagination .page-item.disabled .page-link {
  color: #aaa;
  pointer-events: none;
  border-color: #eee;
  background: #f9f9f9;
}

h2 {
  font-size: 24px;
  white-space: nowrap;
}
@media (max-width: 450px) {
  h2 {
    white-space: normal;
    text-align: center;
  }
}

.toggle-btn {
  background-color: var(--color-primary, #edb059) !important;
  border: 1px solid #dba351 !important;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
}

.map-container {
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
}

.map-section {
  max-width: 900px;
  width: 100%;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.custom-radio {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 12px 20px;
  margin-right: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 2px solid var(--color-border, #e0e0e0);
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  color: var(--color-text-primary, #333);
  font-size: 14px;
}
.custom-radio:hover {
  border-color: var(--color-primary, #EDB059);
  background: rgba(237, 176, 89, 0.05);
  box-shadow: 0 4px 12px rgba(237, 176, 89, 0.15);
}
@media (max-width: 480px) {
  .custom-radio {
    padding: 10px 16px;
    margin-right: 8px;
    font-size: 13px;
  }
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-radio .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-border, #ccc);
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.custom-radio .checkmark::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-primary, #EDB059);
  border-radius: 50%;
  display: none;
  transition: all 0.2s ease;
}

.custom-radio input:checked ~ .checkmark {
  border-color: var(--color-primary, #EDB059);
  background: rgba(237, 176, 89, 0.1);
  box-shadow: 0 0 0 4px rgba(237, 176, 89, 0.1);
}

.custom-radio input:checked ~ .checkmark::after {
  display: block;
}

.custom-radio input:checked ~ span {
  color: var(--color-primary, #EDB059);
  font-weight: 600;
}

.custom-radio input:checked ~ .checkmark {
  border-color: var(--color-primary, #EDB059);
}

.custom-radio:has(input:checked) {
  border-color: var(--color-primary, #EDB059);
  background: linear-gradient(135deg, rgba(237, 176, 89, 0.1) 0%, rgba(237, 176, 89, 0.05) 100%);
  color: var(--color-primary, #EDB059);
  box-shadow: 0 4px 12px rgba(237, 176, 89, 0.2);
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}
.custom-dropdown .dropdown-toggle {
  background-color: var(--color-primary, #edb059) !important;
  border: 1px solid #dba351 !important;
  color: white !important;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 4px;
}
.custom-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background-color: white;
  border: 1px solid #ccc;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.custom-dropdown .dropdown-menu .dropdown-item {
  padding: 10px;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.custom-dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #d19845 !important;
  color: white;
}
.custom-dropdown.show .dropdown-menu {
  display: block;
}

.auth-wrapper {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.auth-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--color-primary, #EDB059) 10%, transparent) 0%, transparent 50%), radial-gradient(circle at 80% 80%, color-mix(in srgb, var(--color-primary, #EDB059) 5%, transparent) 0%, transparent 50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .auth-wrapper {
    padding: 60px 20px;
  }
}
.auth-wrapper .auth-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1200px;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .auth-wrapper .auth-container {
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }
}
.auth-wrapper .auth-animation {
  display: none;
  background: linear-gradient(135deg, var(--color-primary, #EDB059) 0%, var(--color-secondary, #d09d50) 100%);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .auth-wrapper .auth-animation {
    display: flex;
  }
}
.auth-wrapper .auth-animation::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, color-mix(in srgb, white 10%, transparent) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}
.auth-wrapper .auth-animation::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, color-mix(in srgb, white 5%, transparent) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite reverse;
}
.auth-wrapper .auth-animation svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .auth-wrapper .auth-animation svg {
    max-width: 500px;
  }
}
.auth-wrapper .auth-animation svg path {
  fill: var(--color-primary, #EDB059) !important;
  transition: fill 0.3s ease;
}
.auth-wrapper .auth-animation svg g path:nth-child(even) {
  fill: var(--color-secondary, #d09d50) !important;
  opacity: 0.8;
}
.auth-wrapper .auth-animation svg g path,
.auth-wrapper .auth-animation svg #svgg path {
  fill: var(--color-primary, #EDB059) !important;
}
.auth-wrapper .auth-animation .animation-content {
  text-align: center;
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.auth-wrapper .auth-animation .animation-content .animation-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}
@media (min-width: 1200px) {
  .auth-wrapper .auth-animation .animation-content .animation-title {
    font-size: 3rem;
  }
}
.auth-wrapper .auth-animation .animation-content .animation-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  line-height: 1.6;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
  .auth-wrapper .auth-animation .animation-content .animation-subtitle {
    font-size: 1.3rem;
  }
}
.auth-wrapper .auth-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  background: #ffffff;
}
@media (min-width: 992px) {
  .auth-wrapper .auth-form-wrapper {
    padding: 60px 50px;
  }
}
@media (max-width: 480px) {
  .auth-wrapper .auth-form-wrapper {
    padding: 30px 20px;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
.auth-wrapper .auth-card {
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .auth-wrapper .auth-card {
    max-width: 450px;
  }
}
@media (min-width: 992px) {
  .auth-wrapper .auth-card {
    max-width: 100%;
  }
}
.auth-wrapper .auth-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-primary, #333);
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 20px;
}
.auth-wrapper .auth-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary, #EDB059), transparent);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .auth-wrapper .auth-title {
    font-size: 1.75rem;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .auth-wrapper .auth-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.auth-wrapper .form-group {
  margin-bottom: 25px;
}
@media (max-width: 480px) {
  .auth-wrapper .form-group {
    margin-bottom: 20px;
  }
}
.auth-wrapper .d-flex {
  gap: 12px;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .auth-wrapper .d-flex {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 25px;
  }
}
.auth-wrapper .btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.3px;
}
.auth-wrapper .btn:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.auth-wrapper .btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .auth-wrapper .btn {
    width: 100%;
    padding: 12px 24px;
  }
}
.auth-wrapper .lost-password-link {
  color: var(--color-link, #007bff);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.auth-wrapper .lost-password-link:hover {
  color: var(--color-primary, #EDB059);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .auth-wrapper .lost-password-link {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.auth-wrapper .input-group {
  position: relative;
  margin-bottom: 0;
  display: flex;
  align-items: stretch;
}
.auth-wrapper .input-group .input-group-prepend {
  display: flex;
}
.auth-wrapper .input-group .input-group-text {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--color-border, #e0e0e0);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 0;
  color: var(--color-text-secondary, #666);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: auto;
  box-sizing: border-box;
  line-height: 1;
}
.auth-wrapper .input-group .input-group-text i {
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}
.auth-wrapper .input-group .form-control {
  border: 2px solid var(--color-border, #e0e0e0);
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  flex: 1;
  line-height: 1.5;
  box-sizing: border-box;
  height: auto;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.auth-wrapper .input-group .form-control:focus {
  border-color: var(--color-primary, #EDB059);
  box-shadow: 0 0 0 4px rgba(237, 176, 89, 0.1);
  outline: none;
}
.auth-wrapper .input-group .form-control:focus + .input-group-text,
.auth-wrapper .input-group .form-control:focus ~ .input-group-text {
  border-color: var(--color-primary, #EDB059);
}
.auth-wrapper .input-group .form-control::-moz-placeholder {
  color: #999;
  opacity: 0.7;
}
.auth-wrapper .input-group .form-control::placeholder {
  color: #999;
  opacity: 0.7;
}
.auth-wrapper .input-group:focus-within .input-group-text {
  border-color: var(--color-primary, #EDB059);
  background: linear-gradient(135deg, rgba(237, 176, 89, 0.05) 0%, rgba(237, 176, 89, 0.02) 100%);
}
.auth-wrapper .register-btn {
  background: transparent !important;
  border: 2px solid var(--color-button-border, #EDB059) !important;
  color: var(--color-button-bg, #EDB059) !important;
  box-shadow: none !important;
}
.auth-wrapper .register-btn:hover {
  background: var(--color-button-bg, #EDB059) !important;
  color: var(--color-button-text, #ffffff) !important;
  border-color: var(--color-button-hover-border, #d09d50) !important;
  box-shadow: 0 6px 20px rgba(237, 176, 89, 0.3) !important;
}
.auth-wrapper .login-btn {
  background: transparent !important;
  border: 2px solid var(--color-button-border, #EDB059) !important;
  color: var(--color-button-bg, #EDB059) !important;
  box-shadow: none !important;
}
.auth-wrapper .login-btn:hover {
  background: var(--color-button-bg, #EDB059) !important;
  color: var(--color-button-text, #ffffff) !important;
  border-color: var(--color-button-hover-border, #d09d50) !important;
  box-shadow: 0 6px 20px rgba(237, 176, 89, 0.3) !important;
}

.input-group .validation-error {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
}

.__delete__file {
  right: 5px;
  top: 2px;
  border: 0;
  background: transparent;
  border-radius: 4px;
  color: #fff;
  padding: 0;
  transition: 0.3s;
}
.__delete__file i {
  color: #f30;
  font-size: 17px;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(237, 176, 89, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(237, 176, 89, 0.2);
  transition: all 0.3s ease;
}
.checkbox-wrapper:hover {
  background: rgba(237, 176, 89, 0.08);
  border-color: rgba(237, 176, 89, 0.3);
}
@media (max-width: 480px) {
  .checkbox-wrapper {
    padding: 12px;
    gap: 10px;
  }
}
.checkbox-wrapper span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-primary, #333);
  flex: 1;
}
.checkbox-wrapper span a {
  color: var(--color-primary, #EDB059);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.checkbox-wrapper span a:hover {
  text-decoration: underline;
  color: var(--color-button-hover, #d09d50);
}

.check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border, #ccc);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-top: 2px;
  background: #ffffff;
}
.check-box::after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

input[type=checkbox]:checked + .check-box {
  background-color: var(--color-primary, #EDB059);
  border-color: var(--color-primary, #EDB059);
  box-shadow: 0 0 0 4px rgba(237, 176, 89, 0.2);
}

input[type=checkbox]:checked + .check-box::after {
  transform: translate(-50%, -50%) scale(1);
}
