@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl, dd {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  vertical-align: middle;
}

img {
  height: auto;
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  text-align: inherit;
  font-weight: inherit;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

[hidden] {
  display: none !important;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.icon-xlarge {
  font-size: 4.8rem;
}

.icon-large {
  font-size: 3.2rem;
}

.temp-password-display {
  font-size: 2.4rem;
  font-weight: 700;
  background: var(--bg-secondary, #f5f5f5);
  padding: 1rem;
  border-radius: 0.4rem;
  font-family: monospace;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 0;
  vertical-align: middle;
  transition: color 0.2s ease;
}
.icon.icon-xs {
  width: 12px;
  height: 12px;
}
.icon.icon-sm {
  width: 16px;
  height: 16px;
}
.icon.icon-md {
  width: 24px;
  height: 24px;
}
.icon.icon-lg {
  width: 32px;
  height: 32px;
}
.icon.icon-xl {
  width: 48px;
  height: 48px;
}
.icon.icon-primary {
  color: var(--primary-color);
}
.icon.icon-secondary {
  color: var(--secondary-color);
}
.icon.icon-success {
  color: #28a745;
}
.icon.icon-danger {
  color: #dc3545;
}
.icon.icon-warning {
  color: #ffc107;
}
.icon.icon-info {
  color: #17a2b8;
}
.icon.icon-light {
  color: #f8f9fa;
}
.icon.icon-dark {
  color: #343a40;
}
.icon.icon-muted {
  color: #6c757d;
}
.icon.icon-white {
  color: #ffffff;
}
.icon.icon-spin {
  animation: icon-spin 2s infinite linear;
}
.icon.icon-pulse {
  animation: icon-pulse 2s infinite;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  color: inherit;
}
.icon-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.05);
}
.icon-btn:active:not(:disabled) {
  transform: scale(0.95);
}
.icon-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}
.icon-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.icon-btn .icon {
  width: 20px;
  height: 20px;
}
.icon-btn.icon-btn-sm {
  padding: 4px;
}
.icon-btn.icon-btn-sm .icon {
  width: 16px;
  height: 16px;
}
.icon-btn.icon-btn-lg {
  padding: 12px;
}
.icon-btn.icon-btn-lg .icon {
  width: 24px;
  height: 24px;
}
.icon-btn.icon-btn-primary {
  color: var(--primary-color);
}
.icon-btn.icon-btn-primary:hover:not(:disabled) {
  background: rgba(var(--primary-rgb), 0.1);
}
.icon-btn.icon-btn-danger {
  color: #dc3545;
}
.icon-btn.icon-btn-danger:hover:not(:disabled) {
  background: rgba(220, 53, 69, 0.1);
}

.icon-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.icon-text .icon {
  flex-shrink: 0;
}
.icon-text.icon-text-sm {
  gap: 4px;
  font-size: 0.875rem;
}
.icon-text.icon-text-lg {
  gap: 8px;
  font-size: 1.125rem;
}

.icon-badge {
  position: relative;
  display: inline-block;
}
.icon-badge .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  color: white;
  text-align: center;
  background: #dc3545;
  border-radius: 9px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.icon-badge .badge.badge-primary {
  background: var(--primary-color);
}
.icon-badge .badge.badge-success {
  background: #28a745;
}

.icon-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.icon-stack .icon {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.icon-stack .icon.icon-stack-1x {
  font-size: 1em;
}
.icon-stack .icon.icon-stack-2x {
  font-size: 2em;
}

.icon-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.icon-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.icon-list li .icon {
  flex-shrink: 0;
  margin-right: 8px;
  margin-top: 2px;
}

@keyframes icon-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes icon-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .icon-responsive.icon-lg {
    width: 24px;
    height: 24px;
  }
  .icon-responsive.icon-xl {
    width: 32px;
    height: 32px;
  }
}
.icon[aria-hidden=true] {
  pointer-events: none;
}

.icon-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.4rem;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn:disabled, .btn.disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: not-allowed;
}
.btn .icon {
  width: 1em;
  height: 1em;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
}
.btn-primary:hover {
  background-color: rgb(0, 104.55, 216.75);
  border-color: rgb(0, 98.4, 204);
}
.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #ffffff;
}
.btn-secondary:hover {
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  color: #ffffff;
}
.btn-success:hover {
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}

.btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
}
.btn-danger:hover {
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}

.btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #333333;
}
.btn-warning:hover {
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}

.btn-info {
  background-color: #17a2b8;
  border-color: #17a2b8;
  color: #ffffff;
}
.btn-info:hover {
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}

.btn-light {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #333333;
}
.btn-light:hover {
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}

.btn-dark {
  background-color: #343a40;
  border-color: #343a40;
  color: #ffffff;
}
.btn-dark:hover {
  background-color: rgb(34.8534482759, 38.875, 42.8965517241);
  border-color: rgb(29.1379310345, 32.5, 35.8620689655);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #ffffff;
}

.btn-outline-success {
  color: #28a745;
  border-color: #28a745;
  background-color: transparent;
}
.btn-outline-success:hover {
  background-color: #28a745;
  color: #ffffff;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #ffffff;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  border-radius: 0.2rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.8rem;
  border-radius: 0.8rem;
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 2rem;
  border-radius: 0.8rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-icon {
  padding: 0.5rem;
  line-height: 1;
}
.btn-icon.btn-sm {
  padding: 0.25rem;
}
.btn-icon.btn-lg {
  padding: 0.75rem;
}

.btn-group {
  display: inline-flex;
}
.btn-group .btn {
  border-radius: 0;
}
.btn-group .btn:first-child {
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}
.btn-group .btn:last-child {
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
.btn-group .btn:not(:first-child) {
  margin-left: -1px;
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:hover {
  color: rgb(0, 86.1, 178.5);
  text-decoration: underline;
  background-color: transparent;
}
.btn-link:focus {
  text-decoration: underline;
  box-shadow: none;
}
.btn-link:disabled {
  color: #6c757d;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: currentColor;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.4rem;
  opacity: 0.5;
  cursor: pointer;
}
.btn-close:hover {
  opacity: 0.75;
}
.btn-close:focus {
  opacity: 1;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: 0;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  transition: all 0.2s ease-in-out;
}
.card.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
}

.card-body {
  flex: 1 1 auto;
  padding: 2.4rem;
}

.card-header {
  padding: 1.6rem 2.4rem;
  margin-bottom: 0;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.card-header:first-child {
  border-radius: calc(0.4rem - 1px) calc(0.4rem - 1px) 0 0;
}

.card-footer {
  padding: 1.6rem 2.4rem;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.4rem - 1px) calc(0.4rem - 1px);
}

.card-title {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #212529;
}

.card-subtitle {
  margin-top: -0.4rem;
  margin-bottom: 0.8rem;
  color: #6c757d;
  font-size: 1.4rem;
}

.card-text {
  color: #6c757d;
  line-height: 1.75;
}
.card-text:last-child {
  margin-bottom: 0;
}

.card-link {
  color: #007bff;
  text-decoration: none;
}
.card-link:hover {
  color: rgb(0, 98.4, 204);
  text-decoration: underline;
}
.card-link + .card-link {
  margin-left: 1.6rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
  object-fit: cover;
}

.card-img-top {
  border-top-left-radius: calc(0.4rem - 1px);
  border-top-right-radius: calc(0.4rem - 1px);
}

.card-img-bottom {
  border-bottom-left-radius: calc(0.4rem - 1px);
  border-bottom-right-radius: calc(0.4rem - 1px);
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2.4rem;
  border-radius: calc(0.4rem - 1px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.card-horizontal {
  flex-direction: row;
}
.card-horizontal .card-img-left {
  width: 40%;
  object-fit: cover;
  border-top-left-radius: calc(0.4rem - 1px);
  border-bottom-left-radius: calc(0.4rem - 1px);
}
.card-horizontal .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .card-horizontal {
    flex-direction: column;
  }
  .card-horizontal .card-img-left {
    width: 100%;
    border-radius: calc(0.4rem - 1px) calc(0.4rem - 1px) 0 0;
  }
}

.card-group {
  display: flex;
  flex-flow: row wrap;
  gap: 1.6rem;
}
.card-group .card {
  flex: 1 0 0%;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .card-group {
    flex-direction: column;
  }
  .card-group .card {
    flex: none;
  }
}

.card-deck {
  display: grid;
  gap: 2.4rem;
}
.card-deck.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.card-deck.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-deck.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .card-deck.cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .card-deck.cols-3, .card-deck.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .card-deck.cols-2, .card-deck.cols-3, .card-deck.cols-4 {
    grid-template-columns: 1fr;
  }
}

.card-primary {
  border-color: #007bff;
}
.card-primary .card-header {
  background-color: #007bff;
  border-color: #007bff;
  color: #ffffff;
}

.card-success {
  border-color: #28a745;
}
.card-success .card-header {
  background-color: #28a745;
  border-color: #28a745;
  color: #ffffff;
}

.card-danger {
  border-color: #dc3545;
}
.card-danger .card-header {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
}

.card-warning {
  border-color: #ffc107;
}
.card-warning .card-header {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #333333;
}

.card-borderless {
  border: none;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
}

.card-transparent {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.form-group {
  margin-bottom: 1.6rem;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: #212529;
}
.form-label.required::after {
  content: "*";
  color: #dc3545;
  margin-left: 0.25rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:focus {
  color: #212529;
  background-color: #ffffff;
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control:disabled, .form-control[readonly] {
  background-color: #f8f9fa;
  opacity: 1;
  cursor: not-allowed;
}
.form-control.is-valid {
  border-color: #28a745;
}
.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.form-control.is-invalid {
  border-color: #dc3545;
}
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

textarea.form-control {
  min-height: calc(1.5em + 1rem + 2px);
  resize: vertical;
}

.form-control-sm {
  padding: 0.25rem 0.5rem;
  font-size: 1.4rem;
  border-radius: 0.2rem;
}

.form-control-lg {
  padding: 0.75rem 1rem;
  font-size: 1.8rem;
  border-radius: 0.8rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  appearance: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select:focus {
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-select:disabled {
  background-color: #f8f9fa;
  cursor: not-allowed;
}
.form-select[multiple] {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select--disabled {
  display: inline-block;
  background-color: #f8f9fa;
  cursor: not-allowed;
  background-image: none;
}

.form-check {
  display: flex;
  align-items: center;
  min-height: 1.5rem;
  padding-left: 0;
  margin-bottom: 0.8rem;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-right: 0.5rem;
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid #ced4da;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}
.form-check-input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input:focus {
  border-color: rgb(127.5, 189, 255);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-label {
  color: #212529;
  cursor: pointer;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  margin-right: 1.6rem;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}
.input-group .form-control,
.input-group .form-select,
.input-group .form-input {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group .btn {
  flex-shrink: 0;
}
.input-group > :not(:first-child) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > :not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
  padding: 1rem 0.75rem;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  color: #6c757d;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-text {
  margin-top: 0.25rem;
  font-size: 1.4rem;
  color: #6c757d;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 1.4rem;
  color: #28a745;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 1.4rem;
  color: #dc3545;
}

.is-valid ~ .valid-feedback,
.is-invalid ~ .invalid-feedback {
  display: block;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 0;
}
.search-form .search-input {
  flex: 1;
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search-form .search-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.toastui-editor-defaultUI {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}
.toastui-editor-defaultUI .toastui-editor-toolbar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.toastui-editor-defaultUI .toastui-editor-md-container,
.toastui-editor-defaultUI .toastui-editor-ww-container {
  background: #fff;
}

.uploader-dropzone {
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  background: #f8fafc;
}
.uploader-dropzone:hover, .uploader-dropzone.dragover {
  border-color: #6366f1;
  background: #f1f5f9;
}
.uploader-dropzone .uploader-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.uploader-dropzone .uploader-icon {
  font-size: 48px;
  color: #94a3b8;
  margin-bottom: 16px;
}
.uploader-dropzone .uploader-text {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 8px;
}
.uploader-dropzone .uploader-hint {
  font-size: 12px;
  color: #94a3b8;
}

.uploader-file-list {
  margin-top: 16px;
}

.uploader-file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.2s;
}
.uploader-file-item:hover {
  background: #f8fafc;
}
.uploader-file-item .file-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 18px;
  flex-shrink: 0;
}
.uploader-file-item .file-name {
  flex: 1;
  font-size: 14px;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.uploader-file-item .file-size {
  font-size: 12px;
  color: #94a3b8;
  flex-shrink: 0;
}
.uploader-file-item .file-delete {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.uploader-file-item .file-delete:hover {
  background: #fee2e2;
  color: #ef4444;
}

.editor-container {
  margin-bottom: 24px;
}
.editor-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1e293b;
  font-size: 14px;
}

@media (max-width: 768px) {
  .uploader-dropzone {
    padding: 24px 16px;
  }
  .uploader-dropzone .uploader-icon {
    font-size: 36px;
  }
  .uploader-file-item .file-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.popup-overlay[style*=block] {
  opacity: 1;
  visibility: visible;
}

.site-popup {
  position: fixed;
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 10000;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.site-popup.is-visible {
  opacity: 1;
  visibility: visible;
}
.site-popup .popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  flex-shrink: 0;
}
.site-popup .popup-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
}
.site-popup .popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.site-popup .popup-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
.site-popup .popup-content {
  flex: 1;
  overflow: auto;
}
.site-popup .popup-content img {
  display: block;
  width: 100%;
  height: auto;
}
.site-popup .popup-content p {
  margin: 0;
  line-height: 1.7;
}
.site-popup .popup-footer {
  padding: 12px 18px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.site-popup .popup-today {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  cursor: pointer;
  user-select: none;
}
.site-popup .popup-today input[type=checkbox] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #667eea;
}
.site-popup .popup-today:hover {
  color: #475569;
}
.site-popup .popup-banner-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-popup .popup-banner-close:hover {
  background: rgba(0, 0, 0, 0.5);
}

.site-popup--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  max-width: 90vw;
  max-height: 90vh;
}
.site-popup--center.is-visible {
  transform: translate(-50%, -50%) scale(1);
}
.site-popup--center .popup-content {
  padding: 20px;
}

.site-popup--top {
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.site-popup--top.is-visible {
  transform: translateY(0);
}
.site-popup--top .popup-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 50px 12px 20px;
  text-align: center;
}
.site-popup--top .popup-content img {
  width: auto;
  max-width: 100%;
  max-height: 60px;
}
.site-popup--top .popup-content p {
  font-size: 14px;
  font-weight: 500;
}

.site-popup--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  border-radius: 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}
.site-popup--bottom.is-visible {
  transform: translateY(0);
}
.site-popup--bottom .popup-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 50px 12px 20px;
  text-align: center;
}
.site-popup--bottom .popup-content img {
  width: auto;
  max-width: 100%;
  max-height: 60px;
}
.site-popup--bottom .popup-content p {
  font-size: 14px;
  font-weight: 500;
}

.site-popup--slide_in {
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  max-height: 80vh;
}
.site-popup--slide_in.is-visible {
  transform: translateY(0);
}
.site-popup--slide_in::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background: #d1d5db;
  border-radius: 2px;
  margin: 12px auto 0;
}
.site-popup--slide_in .popup-header {
  background: transparent;
  color: #1f2937;
  padding-top: 8px;
}
.site-popup--slide_in .popup-header .popup-title {
  color: #1f2937;
}
.site-popup--slide_in .popup-header .popup-close {
  background: #f3f4f6;
  color: #6b7280;
}
.site-popup--slide_in .popup-header .popup-close:hover {
  background: #e5e7eb;
}
.site-popup--slide_in .popup-content {
  padding: 0 20px 20px;
}
.site-popup--slide_in .popup-footer {
  border-radius: 0;
}

.site-popup--full {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  opacity: 0;
  transform: scale(1.02);
}
.site-popup--full.is-visible {
  opacity: 1;
  transform: scale(1);
}
.site-popup--full .popup-header {
  padding: 16px 20px;
}
.site-popup--full .popup-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.site-popup--full .popup-content img {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  width: auto;
  height: auto;
  object-fit: contain;
}
.site-popup--full .popup-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.site-popup[data-content-type=IMAGE] .popup-content {
  padding: 0;
}
.site-popup[data-content-type=IMAGE] .popup-content a {
  display: block;
}
.site-popup[data-content-type=IMAGE].site-popup--center .popup-content {
  padding: 0;
}
.site-popup[data-content-type=IMAGE].site-popup--slide_in .popup-content {
  padding: 0 0 20px;
}

.site-popup[data-content-type=HTML] .popup-content {
  line-height: 1.7;
  color: #374151;
  font-size: 14px;
}
.site-popup[data-content-type=HTML] .popup-content h1, .site-popup[data-content-type=HTML] .popup-content h2, .site-popup[data-content-type=HTML] .popup-content h3, .site-popup[data-content-type=HTML] .popup-content h4, .site-popup[data-content-type=HTML] .popup-content h5, .site-popup[data-content-type=HTML] .popup-content h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #1f2937;
}
.site-popup[data-content-type=HTML] .popup-content ul, .site-popup[data-content-type=HTML] .popup-content ol {
  padding-left: 20px;
  margin: 0.5em 0;
}
.site-popup[data-content-type=HTML] .popup-content a {
  color: #667eea;
  text-decoration: underline;
}

.site-popup[data-content-type=TEXT] .popup-content {
  line-height: 1.8;
  color: #4b5563;
  font-size: 14px;
}
.site-popup[data-content-type=TEXT] .popup-content p {
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .site-popup--center {
    width: 95vw !important;
    max-height: 85vh;
  }
  .site-popup--top .popup-content,
  .site-popup--bottom .popup-content {
    padding: 10px 45px 10px 15px;
  }
  .site-popup--top .popup-content img,
  .site-popup--bottom .popup-content img {
    max-height: 50px;
  }
  .site-popup--top .popup-content p,
  .site-popup--bottom .popup-content p {
    font-size: 13px;
  }
  .site-popup--top .popup-banner-close,
  .site-popup--bottom .popup-banner-close {
    right: 8px;
    width: 26px;
    height: 26px;
  }
  .site-popup--slide_in {
    max-height: 90vh;
  }
}
.floating-banner-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
}

.floating-banner {
  position: fixed;
  pointer-events: auto;
  z-index: 9001;
}
.floating-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}
.floating-banner--left {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.floating-banner--right {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.floating-banner--bottom-left {
  left: 20px;
  bottom: 20px;
}
.floating-banner--bottom-right {
  right: 20px;
  bottom: 20px;
}
.floating-banner .floating-banner-close {
  position: absolute;
  top: -10px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: #333;
  border: none;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.floating-banner .floating-banner-close:hover {
  background: #000;
  transform: scale(1.1);
}

.top-banner {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  font-size: 14px;
  z-index: 8000;
}
.top-banner .top-banner-content a {
  color: #fff;
  text-decoration: none;
}
.top-banner .top-banner-content a:hover {
  text-decoration: underline;
}
.top-banner .top-banner-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.top-banner .top-banner-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.banner-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slider-container.effect-slide .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.slider-container.effect-slide .slider-item {
  flex: 0 0 100%;
  width: 100%;
}
.slider-container.effect-fade .slider-track {
  position: relative;
}
.slider-container.effect-fade .slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.slider-container.effect-fade .slider-item.active {
  position: relative;
  opacity: 1;
}
.slider-container.effect-none .slider-item {
  display: none;
}
.slider-container.effect-none .slider-item.active {
  display: block;
}

.slider-track {
  width: 100%;
}

.slider-item {
  width: 100%;
}
.slider-item .banner-link {
  display: block;
  width: 100%;
}
.slider-item .banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.slider-item.slider-placeholder .placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  color: #999;
  gap: 16px;
}
.slider-item.slider-placeholder .placeholder-content i {
  font-size: 48px;
  opacity: 0.5;
}
.slider-item.slider-placeholder .placeholder-content span {
  font-size: 14px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}
.slider-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}
.slider-nav:focus {
  outline: none;
}
.slider-nav.slider-prev {
  left: 20px;
}
.slider-nav.slider-next {
  right: 20px;
}

.slider-container:hover .slider-nav {
  opacity: 1;
}

.slider-pager {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.pager-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pager-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.pager-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.banner-slider-wrapper.banner-slider--hero {
  height: 100vh;
  min-height: 500px;
}
.banner-slider-wrapper.banner-slider--hero .slider-item {
  height: 100vh;
  min-height: 500px;
}
.banner-slider-wrapper.banner-slider--hero .slider-item .banner-image {
  height: 100%;
  object-fit: cover;
}

.banner-slider-wrapper.banner-slider--main .slider-item {
  height: 400px;
}
.banner-slider-wrapper.banner-slider--main .slider-item .banner-image {
  height: 100%;
  object-fit: cover;
}

.banner-slider-wrapper.banner-slider--compact .slider-item {
  height: 200px;
}
.banner-slider-wrapper.banner-slider--compact .slider-item .banner-image {
  height: 100%;
  object-fit: cover;
}
.banner-slider-wrapper.banner-slider--compact .slider-nav {
  width: 36px;
  height: 36px;
  font-size: 16px;
}
.banner-slider-wrapper.banner-slider--compact .slider-pager {
  bottom: 12px;
}
.banner-slider-wrapper.banner-slider--compact .pager-dot {
  width: 8px;
  height: 8px;
}

@media (max-width: 768px) {
  .floating-banner--left, .floating-banner--right {
    display: none;
  }
  .floating-banner--bottom-left, .floating-banner--bottom-right {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }
  .slider-nav {
    width: 36px;
    height: 36px;
    font-size: 16px;
    opacity: 1;
  }
  .slider-nav.slider-prev {
    left: 10px;
  }
  .slider-nav.slider-next {
    right: 10px;
  }
  .slider-pager {
    bottom: 12px;
  }
  .pager-dot {
    width: 8px;
    height: 8px;
  }
  .banner-slider-wrapper.banner-slider--hero {
    height: 60vh;
    min-height: 300px;
  }
  .banner-slider-wrapper.banner-slider--hero .slider-item {
    height: 60vh;
    min-height: 300px;
  }
  .banner-slider-wrapper.banner-slider--main .slider-item {
    height: 250px;
  }
  .auto-footer-banner {
    padding: 30px 0;
  }
  .auto-footer-banner .auto-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .auto-footer-banner .auto-banner-item {
    padding: 10px;
  }
  .auto-footer-banner .auto-banner-item img {
    max-height: 60px;
  }
}
.auto-header-top-banner {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
  padding: 12px 50px;
  font-size: 14px;
  z-index: 1000;
}
.auto-header-top-banner .top-banner-content a {
  color: #fff;
  text-decoration: none;
}
.auto-header-top-banner .top-banner-content a:hover {
  text-decoration: underline;
}
.auto-header-top-banner .top-banner-content img {
  max-height: 30px;
  vertical-align: middle;
}
.auto-header-top-banner .top-banner-content span {
  vertical-align: middle;
}
.auto-header-top-banner .top-banner-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
}
.auto-header-top-banner .top-banner-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.auto-main-top-banner {
  margin-bottom: 30px;
}
.auto-main-top-banner .banner-slider-wrapper {
  border-radius: 12px;
  overflow: hidden;
}
.auto-main-top-banner .slider-item {
  height: 400px;
}
.auto-main-top-banner .slider-item .banner-image {
  height: 100%;
  object-fit: cover;
}

.auto-side-banner {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.auto-side-banner .side-banner-item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}
.auto-side-banner .side-banner-item:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}
.auto-side-banner .side-banner-item img {
  display: block;
  max-width: 120px;
  height: auto;
}
.auto-side-banner .side-banner-item .side-banner-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  padding: 0;
  background: #333;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.auto-side-banner .side-banner-item .side-banner-close:hover {
  background: #000;
}
.auto-side-banner .side-banner-item:hover .side-banner-close {
  opacity: 1;
}

.auto-footer-banner {
  background: #f8f9fa;
  padding: 40px 0;
}
.auto-footer-banner .auto-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.auto-footer-banner .auto-banner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  align-items: center;
}
.auto-footer-banner .auto-banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.auto-footer-banner .auto-banner-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.auto-footer-banner .auto-banner-item a {
  display: block;
  width: 100%;
}
.auto-footer-banner .auto-banner-item img {
  display: block;
  width: 100%;
  max-height: 80px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .auto-header-top-banner {
    padding: 10px 40px;
    font-size: 13px;
  }
  .auto-header-top-banner .top-banner-content img {
    max-height: 24px;
  }
  .auto-main-top-banner {
    margin-bottom: 20px;
  }
  .auto-main-top-banner .slider-item {
    height: 200px;
  }
  .auto-side-banner {
    right: 10px;
    gap: 10px;
  }
  .auto-side-banner .side-banner-item img {
    max-width: 80px;
  }
}
.site-header {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  z-index: 1100;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background-color: #ffffff;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  transition: all 0.2s ease-in-out;
}
.sticky-header.is-scrolled {
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
}

.header-top {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
  padding: 0.8rem 0;
  font-size: 1.4rem;
}
.header-top .header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top .util-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.header-top .util-menu a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header-top .util-menu a:hover {
  color: var(--primary-color, #007bff);
}
.header-top .util-info {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  color: #6c757d;
}

.header-main {
  padding: 1.6rem 0;
  border-bottom: 1px solid #dee2e6;
}
.header-main .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}

.logo-wrap {
  flex-shrink: 0;
}
.logo-wrap .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-wrap .logo img {
  height: 40px;
  width: auto;
}
.logo-wrap .logo .logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color, #007bff);
  margin-left: 0.8rem;
}
.logo-wrap .logo .logo-sub {
  font-size: 1.4rem;
  color: #6c757d;
  margin-left: 0.4rem;
}

.search-wrap {
  flex: 1;
  max-width: 500px;
}
.search-wrap .search-form {
  display: flex;
  border: 2px solid var(--primary-color, #007bff);
  border-radius: 50rem;
  overflow: hidden;
}
.search-wrap .search-form .search-input {
  flex: 1;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1.6rem;
  outline: none;
}
.search-wrap .search-form .search-input::placeholder {
  color: #6c757d;
}
.search-wrap .search-form .search-btn {
  background: var(--primary-color, #007bff);
  border: none;
  padding: 0 1.6rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.search-wrap .search-form .search-btn:hover {
  opacity: 0.9;
}
.search-wrap .search-form .search-btn i {
  font-size: 1.8rem;
}
.search-wrap .popular-keywords {
  margin-top: 0.8rem;
  font-size: 1.4rem;
}
.search-wrap .popular-keywords .label {
  color: #6c757d;
  margin-right: 0.8rem;
}
.search-wrap .popular-keywords a {
  color: #6c757d;
  text-decoration: none;
  margin-right: 0.8rem;
}
.search-wrap .popular-keywords a:hover {
  color: var(--primary-color, #007bff);
}

.header-right,
.header-utils {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.header-right .util-btn,
.header-right .header-icon,
.header-utils .util-btn,
.header-utils .header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #212529;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.header-right .util-btn i,
.header-right .header-icon i,
.header-utils .util-btn i,
.header-utils .header-icon i {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.header-right .util-btn span:not(.badge),
.header-right .header-icon span:not(.badge),
.header-utils .util-btn span:not(.badge),
.header-utils .header-icon span:not(.badge) {
  font-size: 1.1rem;
}
.header-right .util-btn .badge,
.header-right .util-btn .cart-count,
.header-right .header-icon .badge,
.header-right .header-icon .cart-count,
.header-utils .util-btn .badge,
.header-utils .util-btn .cart-count,
.header-utils .header-icon .badge,
.header-utils .header-icon .cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50rem;
  min-width: 16px;
  text-align: center;
  font-weight: 700;
}
.header-right .util-btn:hover,
.header-right .header-icon:hover,
.header-utils .util-btn:hover,
.header-utils .header-icon:hover {
  color: var(--primary-color, #007bff);
}

.header-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
}
.header-toggle .toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #212529;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .header-toggle {
    display: block;
  }
}

@media (max-width: 992px) {
  .search-wrap {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .header-main .header-content {
    flex-wrap: wrap;
  }
  .search-wrap {
    order: 3;
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 1.6rem;
  }
  .search-wrap .popular-keywords {
    display: none;
  }
  .header-top .util-menu {
    gap: 0.8rem;
  }
}
@media (max-width: 576px) {
  .header-right .util-btn span:not(.badge),
  .header-right .header-icon span:not(.badge) {
    display: none;
  }
}
.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  margin-top: auto;
}

.footer-top {
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
  padding: 3.2rem 0;
}
.footer-top .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}
@media (max-width: 992px) {
  .footer-top .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .footer-top .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-section h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.6rem;
}
.footer-section.cs-section .cs-title {
  color: var(--primary-color, #007bff);
  font-size: 1.8rem;
}
.footer-section.cs-section .cs-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #212529;
  margin: 0.8rem 0;
}
.footer-section.cs-section .cs-hours {
  font-size: 1.4rem;
  color: #6c757d;
  line-height: 1.75;
}
.footer-section.cs-section .cs-buttons {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-section.cs-section .cs-buttons a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 1.4rem;
}
.footer-section.cs-section .cs-buttons a.kakao {
  background: #FEE500;
  color: #333333;
}
.footer-section.cs-section .cs-buttons a.inquiry {
  background: var(--primary-color, #007bff);
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links li a {
  color: #6c757d;
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}
.footer-links li a:hover {
  color: var(--primary-color, #007bff);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}
.social-links .social-link {
  width: 36px;
  height: 36px;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.social-links .social-link i {
  font-size: 1.6rem;
}
.social-links .social-link.naver {
  background: #03C75A;
}
.social-links .social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-links .social-link.youtube {
  background: #FF0000;
}
.social-links .social-link.facebook {
  background: #1877F2;
}
.social-links .social-link.twitter {
  background: #1DA1F2;
}
.social-links .social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
}

.cert-marks {
  display: flex;
  gap: 0.8rem;
}
.cert-marks .cert-mark {
  width: 50px;
  height: 50px;
  background: #f5f5f5;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-marks .cert-mark img {
  max-width: 80%;
  max-height: 80%;
}
.cert-marks .cert-mark span {
  font-size: 10px;
  color: #6c757d;
  text-align: center;
}

.footer-bottom {
  padding: 2.4rem 0;
}
.footer-bottom .footer-links-bottom {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
}
.footer-bottom .footer-links-bottom a {
  color: #6c757d;
  text-decoration: none;
  font-size: 1.4rem;
  margin-right: 1.6rem;
}
.footer-bottom .footer-links-bottom a.privacy {
  color: var(--primary-color, #007bff);
  font-weight: 600;
}
.footer-bottom .footer-links-bottom a:hover {
  color: var(--primary-color, #007bff);
}
.footer-bottom .company-info {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.75;
}
.footer-bottom .company-info p {
  margin: 0.4rem 0;
}
.footer-bottom .company-info p strong {
  color: #6c757d;
}
.footer-bottom .company-info p a {
  color: var(--primary-color, #007bff);
  text-decoration: none;
  margin-left: 0.4rem;
}
.footer-bottom .company-info .copyright {
  margin-top: 1.6rem;
  padding-top: 0.8rem;
  border-top: 1px solid #dee2e6;
}

.payment-methods {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid #dee2e6;
}
.payment-methods p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 0.8rem;
}
.payment-methods .methods {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.payment-methods .methods span {
  padding: 0.4rem 0.8rem;
  background: #f5f5f5;
  border: 1px solid #dee2e6;
  border-radius: 0.2rem;
  font-size: 11px;
  color: #6c757d;
}

.main-footer {
  background-color: #ffffff;
  border-top: 1px solid #dee2e6;
  color: #6c757d;
  padding: 1.6rem;
  font-size: 1.4rem;
}
.main-footer a {
  color: #007bff;
  text-decoration: none;
}
.main-footer a:hover {
  text-decoration: underline;
}

.main-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 250px;
  background-color: #343a40;
  z-index: 1030;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  transition: width 0.3s ease;
}
.sidebar-mini .main-sidebar {
  width: 56px;
}
.sidebar-mini .main-sidebar .nav-link p,
.sidebar-mini .main-sidebar .brand-text,
.sidebar-mini .main-sidebar .user-panel .info,
.sidebar-mini .main-sidebar .nav-header {
  opacity: 0;
  visibility: hidden;
}

.brand-link {
  display: flex;
  align-items: center;
  padding: 1.6rem;
  border-bottom: 1px solid rgb(74.8620689655, 83.5, 92.1379310345);
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}
.brand-link:hover {
  color: #ffffff;
}
.brand-link .brand-image {
  width: 33px;
  height: 33px;
  object-fit: contain;
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.brand-link .brand-text {
  font-size: 1.8rem;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

.user-panel {
  display: flex;
  align-items: center;
  padding: 1.6rem;
  border-bottom: 1px solid rgb(74.8620689655, 83.5, 92.1379310345);
}
.user-panel .image {
  flex-shrink: 0;
}
.user-panel .image img {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  object-fit: cover;
}
.user-panel .info {
  padding-left: 0.8rem;
  transition: opacity 0.3s ease;
}
.user-panel .info a {
  color: #c2c7d0;
  text-decoration: none;
}
.user-panel .info a:hover {
  color: #ffffff;
}

.sidebar {
  display: flex;
  flex-direction: column;
  height: calc(100% - 4rem);
  padding: 0.8rem;
  overflow-y: auto;
  overflow-x: hidden;
}

.nav-sidebar {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-sidebar .nav-item {
  margin-bottom: 2px;
}
.nav-sidebar .nav-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  color: #c2c7d0;
  border-radius: 0.4rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
.nav-sidebar .nav-link:hover {
  background-color: rgb(63.4310344828, 70.75, 78.0689655172);
  color: #ffffff;
}
.nav-sidebar .nav-link.active {
  background-color: #007bff;
  color: #ffffff;
}
.nav-sidebar .nav-link .nav-icon {
  width: 1.5rem;
  margin-right: 0.8rem;
  text-align: center;
  flex-shrink: 0;
}
.nav-sidebar .nav-link .nav-icon i {
  font-size: 1.6rem;
}
.nav-sidebar .nav-link p {
  margin: 0;
  flex: 1;
  transition: opacity 0.3s ease;
}
.nav-sidebar .nav-link .right {
  margin-left: auto;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.nav-sidebar .nav-link .badge {
  margin-left: auto;
}
.nav-sidebar .has-treeview > .nav-link:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 1.6rem;
  transition: transform 0.3s ease;
}
.nav-sidebar .has-treeview.menu-open > .nav-link:after {
  transform: rotate(90deg);
}
.nav-sidebar .has-treeview.menu-open > .nav-treeview {
  display: block;
}
.nav-sidebar .nav-treeview {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 1.6rem;
}
.nav-sidebar .nav-treeview .nav-link {
  padding: 0.4rem 1.6rem;
  font-size: 1.4rem;
}
.nav-sidebar .nav-treeview .nav-link .nav-icon {
  font-size: 1.4rem;
}
.nav-sidebar .nav-header {
  padding: 0.8rem 1.6rem;
  color: #c2c7d0;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.sidebar-search-block {
  padding: 0.8rem;
  border-bottom: 1px solid rgb(74.8620689655, 83.5, 92.1379310345);
  transition: opacity 0.3s ease;
}
.sidebar-search-block .form-control {
  background-color: rgb(74.8620689655, 83.5, 92.1379310345);
  border-color: transparent;
  color: #ffffff;
}
.sidebar-search-block .form-control::placeholder {
  color: #c2c7d0;
}
.sidebar-search-block .form-control:focus {
  background-color: rgb(86.2931034483, 96.25, 106.2068965517);
  border-color: #007bff;
}

.content-wrapper {
  min-height: calc(100vh - 57px);
  margin-left: 250px;
  background-color: #f8f9fa;
  transition: margin-left 0.3s ease;
}
.sidebar-mini .content-wrapper {
  margin-left: 56px;
}

.main-footer {
  margin-left: 250px;
  transition: margin-left 0.3s ease;
}
.sidebar-mini .main-footer {
  margin-left: 56px;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1029;
  display: none;
}
.sidebar-open .sidebar-overlay {
  display: block;
}

@media (max-width: 992px) {
  .main-sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar-open .main-sidebar {
    transform: translateX(0);
  }
  .content-wrapper,
  .main-footer {
    margin-left: 0;
  }
}
.main-navigation {
  background-color: var(--primary-color, #007bff);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.main-navigation .nav-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}

.category-menu {
  position: relative;
}
.category-menu .category-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem 2.4rem;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.category-menu .category-btn i {
  font-size: 1.8rem;
}
.category-menu .category-btn:hover {
  background: rgba(0, 0, 0, 0.2);
}
.category-menu .category-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: #ffffff;
  border-radius: 0 0 0.8rem 0.8rem;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.category-menu .category-dropdown .category-list {
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
}
.category-menu .category-dropdown .category-list li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  color: #212529;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.2s ease-in-out;
}
.category-menu .category-dropdown .category-list li a i {
  width: 20px;
  color: #6c757d;
}
.category-menu .category-dropdown .category-list li a:hover {
  background: #f8f9fa;
  color: var(--primary-color, #007bff);
}
.category-menu .category-dropdown .category-list li a:hover i {
  color: var(--primary-color, #007bff);
}
.category-menu:hover .category-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gnb-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.gnb-menu li {
  position: relative;
}
.gnb-menu li a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 1.6rem 2.4rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.gnb-menu li a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.gnb-menu li.has-hot .hot-badge,
.gnb-menu li.has-hot .new-badge, .gnb-menu li.has-new .hot-badge,
.gnb-menu li.has-new .new-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 50rem;
  font-size: 10px;
  font-weight: 700;
  margin-right: 0.4rem;
}
.gnb-menu li.has-hot .hot-badge, .gnb-menu li.has-new .hot-badge {
  background: #ff4444;
  color: #ffffff;
}
.gnb-menu li.has-hot .new-badge, .gnb-menu li.has-new .new-badge {
  background: #4CAF50;
  color: #ffffff;
}
.gnb-menu li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #ffffff;
  border-radius: 0 0 0.4rem 0.4rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.gnb-menu li .submenu li a {
  padding: 0.8rem 1.6rem;
  color: #212529;
  font-weight: 400;
}
.gnb-menu li .submenu li a:hover {
  background: #f8f9fa;
  color: var(--primary-color, #007bff);
}
.gnb-menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.tab-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tab-menu li {
  position: relative;
}
.tab-menu li a {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 2.4rem;
  color: #212529;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}
.tab-menu li a:hover {
  color: var(--primary-color, #007bff);
}
.tab-menu li.active a {
  color: var(--primary-color, #007bff);
  border-bottom-color: var(--primary-color, #007bff);
}

.delivery-info {
  margin-left: auto;
}
.delivery-info .delivery-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem 2.4rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.4rem;
}
.delivery-info .delivery-link i {
  font-size: 1.6rem;
}
.delivery-info .delivery-link:hover {
  background: rgba(0, 0, 0, 0.1);
}
.delivery-info .delivery-text {
  color: var(--primary-color, #007bff);
  font-size: 1.1rem;
  font-weight: 500;
  background: rgba(var(--primary-rgb), 0.05);
  padding: 0.4rem 0.8rem;
  border-radius: 50rem;
}

.breadcrumb {
  background-color: #f8f9fa;
  padding: 0.8rem 0;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid #dee2e6;
}
.breadcrumb .breadcrumb-inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: #6c757d;
  text-decoration: none;
  font-size: 1.4rem;
}
.breadcrumb a:hover {
  color: var(--primary-color, #007bff);
}
.breadcrumb span {
  color: #6c757d;
  margin: 0 0.8rem;
}
.breadcrumb .current {
  color: var(--primary-color, #007bff);
  font-weight: 500;
}

.mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
}
.nav-toggle .toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

@media (max-width: 992px) {
  .gnb-menu li a {
    padding: 1.6rem 0.8rem;
    font-size: 1.4rem;
  }
  .category-btn {
    padding: 1.6rem 1.6rem;
  }
}
@media (max-width: 768px) {
  .main-navigation .nav-wrapper {
    flex-wrap: wrap;
  }
  .gnb-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color, #007bff);
    flex-direction: column;
    box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  }
  .gnb-menu.is-open {
    display: flex;
  }
  .gnb-menu li a {
    padding: 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .category-menu {
    width: 100%;
    order: 2;
  }
}
.widget-header {
  width: 100%;
  background: var(--bg-white, #fff);
  border-bottom: 1px solid var(--border-light, #eee);
}
.widget-header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.widget-header .header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.widget-header .header-logo img {
  max-height: 40px;
}
.widget-header .header-logo .logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary, #333);
}
.widget-header .header-search {
  flex: 1;
  max-width: 500px;
  margin: 0 40px;
}
.widget-header .header-search .search-form {
  display: flex;
  border: 2px solid var(--primary-color, #5f0080);
  border-radius: 4px;
  overflow: hidden;
}
.widget-header .header-search .search-input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 14px;
}
.widget-header .header-search .search-input::placeholder {
  color: var(--text-muted, #999);
}
.widget-header .header-search .search-btn {
  padding: 10px 20px;
  background: var(--primary-color, #5f0080);
  color: var(--text-white, #fff);
  border: none;
  cursor: pointer;
}
.widget-header .header-search .search-btn:hover {
  filter: brightness(0.85);
}
.widget-header .header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.widget-header .header-actions .header-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-primary, #333);
  text-decoration: none;
  font-size: 20px;
}
.widget-header .header-actions .header-icon:hover {
  color: var(--primary-color, #5f0080);
}
.widget-header .header-actions .header-icon .cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color, #5f0080);
  color: var(--text-white, #fff);
  font-size: 11px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget-header .header-actions .header-btn {
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-primary, #333);
  text-decoration: none;
}
.widget-header .header-actions .header-btn:hover {
  color: var(--primary-color, #5f0080);
}
.widget-header--sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.widget-header--basic .header-container {
  height: 80px;
}

.widget-menu-horizontal {
  background: var(--bg-white, #fff);
  border-bottom: 1px solid var(--border-light, #eee);
}
.widget-menu-horizontal .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.widget-menu-horizontal .gnb-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.widget-menu-horizontal .gnb-menu .menu-item {
  position: relative;
}
.widget-menu-horizontal .gnb-menu .menu-item .menu-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 2rem;
  color: var(--text-primary, #333);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.2s;
}
.widget-menu-horizontal .gnb-menu .menu-item .menu-link i {
  font-size: 1.6rem;
  color: var(--text-secondary, #666);
}
.widget-menu-horizontal .gnb-menu .menu-item .menu-link:hover {
  color: var(--primary-color, #5f0080);
  background: var(--bg-hover, #f9f9f9);
}
.widget-menu-horizontal .gnb-menu .menu-item .menu-link:hover i {
  color: var(--primary-color, #5f0080);
}
.widget-menu-horizontal .gnb-menu .menu-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 18rem;
  background: var(--bg-white, #fff);
  border: 1px solid var(--border-light, #eee);
  border-radius: 0.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: all 0.2s;
  z-index: 100;
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
}
.widget-menu-horizontal .gnb-menu .menu-item .sub-menu .sub-menu-item .sub-menu-link {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-secondary, #555);
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.2s;
}
.widget-menu-horizontal .gnb-menu .menu-item .sub-menu .sub-menu-item .sub-menu-link:hover {
  background: var(--bg-light, #f5f5f5);
  color: var(--primary-color, #5f0080);
}
.widget-menu-horizontal .gnb-menu .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.widget-menu--horizontal {
  background: var(--bg-white, #fff);
  border-bottom: 1px solid var(--border-light, #eee);
}
.widget-menu--horizontal .menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.widget-menu--horizontal .menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}
.widget-menu--horizontal .menu-item a {
  display: block;
  padding: 15px 20px;
  color: var(--text-primary, #333);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.widget-menu--horizontal .menu-item a:hover {
  color: var(--primary-color, #5f0080);
}
.widget-menu--horizontal.underline .menu-item a {
  position: relative;
}
.widget-menu--horizontal.underline .menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--primary-color, #5f0080);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.widget-menu--horizontal.underline .menu-item a:hover::after {
  transform: scaleX(1);
}
.widget-menu--horizontal.pill .menu-item a {
  border-radius: 20px;
}
.widget-menu--horizontal.pill .menu-item a:hover {
  background: var(--bg-light, #f5f5f5);
}

.widget-menu--sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  background: var(--dark-bg, #343a40);
  color: var(--text-white, #fff);
  z-index: 1000;
  overflow-y: auto;
}
.widget-menu--sidebar .sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--dark-border, #4a5056);
}
.widget-menu--sidebar .sidebar-header .sidebar-title {
  font-size: 18px;
  font-weight: 600;
}
.widget-menu--sidebar .sidebar-nav {
  padding: 10px 0;
}
.widget-menu--sidebar .sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-menu--sidebar .sidebar-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--text-muted, #adb5bd);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.widget-menu--sidebar .sidebar-item a i {
  width: 20px;
  text-align: center;
}
.widget-menu--sidebar .sidebar-item a:hover {
  background: var(--dark-hover, #495057);
  color: var(--text-white, #fff);
}
.widget-menu--sidebar .sidebar-item.active a {
  background: var(--primary-color, #007bff);
  color: var(--text-white, #fff);
}

.widget-menu--hamburger .hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border-color, #ddd);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.widget-menu--hamburger .hamburger-btn:hover {
  background: var(--bg-light, #f5f5f5);
  border-color: var(--border-dark, #ccc);
}
.widget-menu--hamburger .hamburger-btn .hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text-primary, #333);
  border-radius: 1px;
  transition: 0.3s;
}

.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 9998;
}
.hamburger-overlay.open {
  opacity: 1;
  visibility: visible;
}
.hamburger-overlay.open .hamburger-panel {
  transform: translateX(0);
}

.hamburger-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-white, #fff);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}
.hamburger-panel[data-position=right] {
  left: auto;
  right: 0;
  transform: translateX(100%);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
}
.hamburger-panel .hamburger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-light, #eee);
  background: var(--bg-secondary, #f8f9fa);
}
.hamburger-panel .hamburger-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary, #333);
}
.hamburger-panel .hamburger-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-secondary, #666);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s;
}
.hamburger-panel .hamburger-close:hover {
  background: var(--border-light, #eee);
  color: var(--text-primary, #333);
}
.hamburger-panel .hamburger-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
}
.hamburger-panel .hamburger-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text-primary, #333);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}
.hamburger-panel .hamburger-menu li a i {
  width: 20px;
  text-align: center;
  color: var(--text-secondary, #666);
  font-size: 16px;
}
.hamburger-panel .hamburger-menu li a:hover {
  background: var(--bg-light, #f5f5f5);
  color: var(--primary-color, #5f0080);
}
.hamburger-panel .hamburger-menu li a:hover i {
  color: var(--primary-color, #5f0080);
}

body.menu-open {
  overflow: hidden;
}

.dev-only {
  display: none !important;
}

body.dev-mode .dev-only {
  display: block !important;
}
body.dev-mode .widget-area-title {
  background: var(--warning-light, #fef3c7);
  color: var(--warning-dark, #92400e);
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  border: 1px dashed var(--warning-color, #f59e0b);
}
body.dev-mode .widget-area-empty {
  background: var(--danger-light, #fee2e2);
  color: var(--danger-dark, #991b1b);
  padding: 8px 15px;
  font-size: 12px;
  margin: 0;
  border: 1px dashed var(--danger-color, #ef4444);
}
body.dev-mode .widget-area {
  outline: 2px dashed rgba(59, 130, 246, 0.3);
  outline-offset: -2px;
}
body.dev-mode .widget-area:hover {
  outline-color: rgba(59, 130, 246, 0.6);
}

.widget-hero {
  position: relative;
  min-height: 500px;
  background-color: var(--bg-light, #f5f5f5);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget-hero .hero-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}
.widget-hero .hero-content {
  max-width: 600px;
}
.widget-hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary, #333);
  margin: 0 0 20px;
  line-height: 1.2;
}
.widget-hero .hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary, #666);
  margin: 0 0 30px;
  line-height: 1.6;
}
.widget-hero .hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color, #5f0080);
  color: var(--text-white, #fff);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.2s;
}
.widget-hero .hero-btn:hover {
  filter: brightness(0.85);
}

.widget-product-grid {
  padding: 60px 0;
}
.widget-product-grid .product-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.widget-product-grid .section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 30px;
  color: var(--text-primary, #333);
}
.widget-product-grid .product-grid {
  display: grid;
  gap: 20px;
}
.widget-product-grid .product-card {
  background: var(--bg-white, #fff);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.widget-product-grid .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.widget-product-grid .product-image {
  position: relative;
  padding-top: 100%;
  background: var(--bg-light, #f5f5f5);
}
.widget-product-grid .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.widget-product-grid .product-info {
  padding: 15px;
}
.widget-product-grid .product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary, #333);
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.widget-product-grid .product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary, #333);
  margin: 0;
}

.widget-text-block {
  padding: 60px 0;
}
.widget-text-block .text-block-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.widget-text-block .text-block-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary, #333);
  margin: 0 0 20px;
}
.widget-text-block .text-block-content {
  font-size: 16px;
  color: var(--text-secondary, #666);
  line-height: 1.8;
}
.widget-text-block .text-block-content p {
  margin: 0 0 15px;
}
.widget-text-block[data-alignment=center] {
  text-align: center;
}
.widget-text-block[data-alignment=right] {
  text-align: right;
}

.widget-gallery {
  padding: 60px 0;
}
.widget-gallery .gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.widget-gallery .section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 30px;
  color: var(--text-primary, #333);
}
.widget-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.widget-gallery .gallery-item {
  position: relative;
  padding-top: 100%;
  background: var(--bg-light, #f5f5f5);
  border-radius: 8px;
  overflow: hidden;
}
.widget-gallery .gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.widget-gallery .gallery-item:hover img {
  transform: scale(1.05);
}
.widget-gallery--slider .gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 15px;
}
.widget-gallery--slider .gallery-grid::-webkit-scrollbar {
  display: none;
}
.widget-gallery--slider .gallery-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.widget-banner-slider {
  position: relative;
  overflow: hidden;
}
.widget-banner-slider .slider-container {
  position: relative;
}
.widget-banner-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.widget-banner-slider .slider-slide {
  flex: 0 0 100%;
}
.widget-banner-slider .slider-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.widget-banner-slider .slider-prev,
.widget-banner-slider .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--text-primary, #333);
  transition: background 0.2s;
  z-index: 10;
}
.widget-banner-slider .slider-prev:hover,
.widget-banner-slider .slider-next:hover {
  background: var(--bg-white, #fff);
}
.widget-banner-slider .slider-prev {
  left: 20px;
}
.widget-banner-slider .slider-next {
  right: 20px;
}
.widget-banner-slider .slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.widget-banner-slider .slider-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.widget-banner-slider .slider-dots .dot.active {
  background: var(--bg-white, #fff);
}

.widget-quick-stats {
  padding: 40px 0;
}
.widget-quick-stats .stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.widget-quick-stats .stat-card {
  background: var(--bg-white, #fff);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary-color, #007bff);
}
.widget-quick-stats .stat-card--primary {
  border-left-color: var(--primary-color, #007bff);
}
.widget-quick-stats .stat-card--success {
  border-left-color: var(--success-color, #28a745);
}
.widget-quick-stats .stat-card--warning {
  border-left-color: var(--warning-color, #ffc107);
}
.widget-quick-stats .stat-card--danger {
  border-left-color: var(--danger-color, #dc3545);
}
.widget-quick-stats .stat-card--info {
  border-left-color: var(--info-color, #17a2b8);
}
.widget-quick-stats .stat-icon {
  font-size: 32px;
  color: var(--text-muted-dark, #6c757d);
  margin-bottom: 15px;
}
.widget-quick-stats .stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary, #333);
  margin-bottom: 5px;
}
.widget-quick-stats .stat-title {
  font-size: 14px;
  color: var(--text-muted-dark, #6c757d);
}

@media (max-width: 768px) {
  .widget-hero {
    min-height: 400px;
  }
  .widget-hero .hero-title {
    font-size: 32px;
  }
  .widget-product-grid .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .widget-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .widget-quick-stats .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.widget-footer {
  background: var(--dark-bg, #333);
  color: var(--text-white, #fff);
  padding: 40px 0;
}
.widget-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.widget-footer a {
  color: var(--text-muted, #adb5bd);
  text-decoration: none;
  transition: color 0.2s;
}
.widget-footer a:hover {
  color: var(--text-white, #fff);
}
.widget-footer--basic {
  text-align: center;
}
.widget-footer--basic .footer-info {
  margin-bottom: 20px;
}
.widget-footer--basic .footer-info p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--text-muted, #adb5bd);
}
.widget-footer--basic .footer-info .company-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white, #fff);
  margin-bottom: 15px;
}
.widget-footer--basic .footer-sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.widget-footer--basic .footer-sns .sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--dark-hover, #495057);
  border-radius: 50%;
  font-size: 18px;
}
.widget-footer--basic .footer-sns .sns-link:hover {
  background: var(--primary-color, #5f0080);
  color: var(--text-white, #fff);
}
.widget-footer--basic .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.widget-footer--basic .footer-links a {
  font-size: 13px;
}
.widget-footer--basic .footer-copyright {
  font-size: 12px;
  color: var(--text-muted-dark, #6c757d);
  margin: 0;
}
.widget-footer--multi-column .footer-columns {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}
.widget-footer--multi-column .footer-column .column-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white, #fff);
  margin: 0 0 20px;
}
.widget-footer--multi-column .footer-column .column-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-footer--multi-column .footer-column .column-links li {
  margin-bottom: 10px;
}
.widget-footer--multi-column .footer-column .column-links li a {
  font-size: 14px;
}
.widget-footer--multi-column .footer-sns {
  display: flex;
  gap: 12px;
}
.widget-footer--multi-column .footer-sns .sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--dark-hover, #495057);
  border-radius: 50%;
  font-size: 16px;
}
.widget-footer--multi-column .footer-sns .sns-link:hover {
  background: var(--primary-color, #5f0080);
  color: var(--text-white, #fff);
}
.widget-footer--multi-column .footer-bottom {
  border-top: 1px solid var(--dark-hover, #495057);
  padding-top: 20px;
  text-align: center;
}
.widget-footer--multi-column .footer-bottom .footer-copyright {
  font-size: 12px;
  color: var(--text-muted-dark, #6c757d);
  margin: 0;
}

.grade-table .col--level {
  width: 60px;
}
.grade-table .col--code {
  width: 100px;
}
.grade-table .col--name {
  width: auto;
}
.grade-table .col--amount {
  width: 120px;
}
.grade-table .col--rate {
  width: 80px;
}
.grade-table .col--flag {
  width: 80px;
}
.grade-table .col--count {
  width: 80px;
}
.grade-table .col--status {
  width: 80px;
}
.grade-table .col--date {
  width: 100px;
}

.footer-content-table .col--key {
  width: 150px;
}
.footer-content-table .col--value {
  width: 200px;
}
.footer-content-table .col--url {
  width: auto;
}
.footer-content-table .col--order {
  width: 80px;
}
.footer-content-table .col--use {
  width: 100px;
}
.footer-content-table .col--delete {
  width: 60px;
}

.board-page {
  padding: 3.2rem 0;
}

.board-header {
  margin-bottom: 2.4rem;
}
.board-header .board-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.8rem;
}
.board-header .board-desc {
  color: #6c757d;
  font-size: 1.6rem;
}

.board-search {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  padding: 1.6rem;
  background: #f8f9fa;
  border-radius: 0.4rem;
}
.board-search .search-select {
  min-width: 120px;
}
.board-search .search-input {
  flex: 1;
  max-width: 300px;
}
@media (max-width: 576px) {
  .board-search {
    flex-direction: column;
  }
  .board-search .search-select,
  .board-search .search-input {
    max-width: 100%;
  }
}

.board-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #212529;
  margin-bottom: 2.4rem;
}
.board-table th,
.board-table td {
  padding: 1.6rem;
  text-align: center;
  border-bottom: 1px solid #dee2e6;
}
.board-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #212529;
}
.board-table td {
  color: #6c757d;
}
.board-table .col-num {
  width: 6rem;
}
.board-table .col-checkbox {
  width: 4rem;
}
.board-table .col-title {
  width: auto;
  text-align: left;
}
.board-table .col-author {
  width: 12rem;
}
.board-table .col-date {
  width: 10rem;
}
.board-table .col-views {
  width: 8rem;
}
.board-table .col-status {
  width: 10rem;
}
.board-table .col-actions {
  width: 12rem;
}
.board-table .post-title {
  color: #212529;
  text-decoration: none;
  font-weight: 500;
}
.board-table .post-title:hover {
  color: var(--primary-color, #007bff);
  text-decoration: underline;
}
.board-table .post-title .badge-new {
  display: inline-block;
  padding: 2px 6px;
  margin-left: 0.4rem;
  background: #dc3545;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 0.2rem;
}
.board-table .post-title .comment-count {
  color: var(--primary-color, #007bff);
  font-size: 1.4rem;
  margin-left: 0.4rem;
}
.board-table .status-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 0.2rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.board-table .status-badge.status-complete {
  background: rgb(175.1304347826, 235.8695652174, 189);
  color: #28a745;
}
.board-table .status-badge.status-pending {
  background: rgb(255, 231.25, 160);
  color: #a07800;
}
.board-table .status-badge.status-reject {
  background: rgb(246.3607594937, 205.1392405063, 209.0886075949);
  color: #dc3545;
}
.board-table tbody tr {
  transition: background-color 0.2s ease;
}
.board-table tbody tr:hover {
  background: #f8f9fa;
}
.board-table tr.notice {
  background: rgb(189.6666666667, 239.0217391304, 246.8333333333);
}
.board-table tr.notice .notice-label {
  display: inline-block;
  padding: 2px 8px;
  background: #17a2b8;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.2rem;
  margin-right: 0.4rem;
}

.board-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
}
@media (max-width: 576px) {
  .board-actions {
    flex-direction: column;
  }
  .board-actions .btn {
    width: 100%;
  }
}

.board-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.4rem;
}
.board-pagination .page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  color: #6c757d;
  font-size: 1.4rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.board-pagination .page-btn:hover {
  border-color: var(--primary-color, #007bff);
  color: var(--primary-color, #007bff);
}
.board-pagination .page-btn.active {
  background: var(--primary-color, #007bff);
  border-color: var(--primary-color, #007bff);
  color: #ffffff;
}
.board-pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.board-view {
  border-top: 2px solid #212529;
}
.board-view .view-header {
  padding: 2.4rem;
  border-bottom: 1px solid #dee2e6;
}
.board-view .view-header .view-title {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.6rem;
}
.board-view .view-header .view-meta {
  display: flex;
  gap: 2.4rem;
  color: #6c757d;
  font-size: 1.4rem;
}
.board-view .view-header .view-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.board-view .view-header .view-meta span i {
  color: #6c757d;
}
.board-view .view-content {
  padding: 3.2rem 2.4rem;
  min-height: 300px;
  line-height: 1.75;
  color: #212529;
}
.board-view .view-content img {
  max-width: 100%;
  height: auto;
}
.board-view .view-attachments {
  padding: 1.6rem;
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
}
.board-view .view-attachments h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.board-view .view-attachments .attachment-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.board-view .view-attachments .attachment-list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #6c757d;
  text-decoration: none;
  font-size: 1.4rem;
}
.board-view .view-attachments .attachment-list a:hover {
  color: var(--primary-color, #007bff);
}
.board-view .view-attachments .attachment-list a .file-size {
  color: #6c757d;
  font-size: 1.1rem;
}
.board-view .view-actions {
  display: flex;
  justify-content: space-between;
  padding: 1.6rem;
  border-top: 1px solid #dee2e6;
}
.board-view .view-actions .left-actions,
.board-view .view-actions .right-actions {
  display: flex;
  gap: 0.8rem;
}
@media (max-width: 576px) {
  .board-view .view-actions {
    flex-direction: column;
    gap: 1.6rem;
  }
  .board-view .view-actions .left-actions,
  .board-view .view-actions .right-actions {
    justify-content: center;
  }
}
.board-view .view-navigation {
  border-top: 1px solid #dee2e6;
}
.board-view .view-navigation .nav-item {
  display: flex;
  align-items: center;
  padding: 1.6rem;
  border-bottom: 1px solid #dee2e6;
}
.board-view .view-navigation .nav-item:last-child {
  border-bottom: none;
}
.board-view .view-navigation .nav-item .nav-label {
  min-width: 60px;
  color: #6c757d;
  font-size: 1.4rem;
}
.board-view .view-navigation .nav-item .nav-title {
  flex: 1;
  color: #212529;
  text-decoration: none;
}
.board-view .view-navigation .nav-item .nav-title:hover {
  color: var(--primary-color, #007bff);
}

.board-form {
  border-top: 0.2rem solid #212529;
}
.board-form .form-row {
  display: flex;
  border-bottom: 0.1rem solid #dee2e6;
}
.board-form .form-row .form-label {
  width: 12rem;
  padding: 1.6rem;
  background: #f8f9fa;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .board-form .form-row .form-label {
    width: 100%;
  }
}
.board-form .form-row .form-input {
  flex: 1;
  padding: 1.6rem;
}
@media (max-width: 576px) {
  .board-form .form-row .form-input {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .board-form .form-row {
    flex-direction: column;
  }
}
.board-form .form-actions {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  padding: 2.4rem;
  background: #f8f9fa;
  border-top: 0.1rem solid #dee2e6;
}

.board-write {
  max-width: 90rem;
  margin: 0 auto;
  padding: 2rem;
}
.board-write .page-header {
  margin-bottom: 3rem;
  padding-bottom: 1.6rem;
  border-bottom: 0.2rem solid var(--border-color, #dee2e6);
}
.board-write .page-header h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--text-primary, #212529);
}
.board-write .form-group {
  margin-bottom: 2.4rem;
}
.board-write .form-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary, #334155);
  margin-bottom: 0.8rem;
}
.board-write .form-label.required::after {
  content: "*";
  color: #dc3545;
  margin-left: 0.4rem;
}
.board-write .form-input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
  border: 0.1rem solid var(--border-color, #d1d5db);
  border-radius: 0.8rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.board-write .form-input:focus {
  outline: none;
  border-color: var(--primary-color, #007bff);
  box-shadow: 0 0 0 0.3rem rgba(99, 102, 241, 0.1);
}
.board-write .form-input.input--narrow {
  max-width: 30rem;
}
.board-write .form-options {
  display: flex;
  gap: 2rem;
}
.board-write .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-secondary, #6c757d);
}
.board-write .checkbox-label input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--primary-color, #007bff);
}
.board-write .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 0.1rem solid var(--border-color, #dee2e6);
}
.board-write .form-hint {
  font-size: 1.3rem;
  color: var(--text-muted, #6c757d);
  margin-top: 0.6rem;
}

.secret-check {
  max-width: 40rem;
  margin: 4rem auto;
  padding: 3.2rem;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  text-align: center;
}
.secret-check .secret-check__icon {
  font-size: 4.8rem;
  margin-bottom: 1.6rem;
}
.secret-check .secret-check__title {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.8rem;
}
.secret-check .secret-check__desc {
  font-size: 1.4rem;
  color: #6c757d;
  margin-bottom: 2.4rem;
}
.secret-check .secret-check__input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
  text-align: center;
}
.secret-check .secret-check__input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.3rem rgba(0, 123, 255, 0.1);
}
.secret-check .secret-check__error {
  color: #dc3545;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.secret-check .secret-check__actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.contact-form-page {
  max-width: 70rem;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.contact-form-page .contact-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-form-page .contact-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.2rem;
}
.contact-form-page .contact-desc {
  font-size: 1.6rem;
  color: #6c757d;
  line-height: 1.6;
}
.contact-form-page .contact-form {
  background: #ffffff;
  border-radius: 0.8rem;
  padding: 3.2rem;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
}
.contact-form-page .form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .contact-form-page .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.contact-form-page .form-group {
  margin-bottom: 2rem;
}
.contact-form-page .form-group--half {
  flex: 1;
}
.contact-form-page .form-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.8rem;
}
.contact-form-page .form-label.required::after {
  content: "*";
  color: #dc3545;
  margin-left: 0.4rem;
}
.contact-form-page .form-input {
  width: 100%;
  padding: 1.2rem 1.6rem;
  font-size: 1.5rem;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form-page .form-input:focus {
  outline: none;
  border-color: var(--primary-color, #007bff);
  box-shadow: 0 0 0 0.3rem rgba(0, 123, 255, 0.1);
}
.contact-form-page .form-input::placeholder {
  color: #6c757d;
}
.contact-form-page .privacy-agree {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  color: #6c757d;
  cursor: pointer;
}
.contact-form-page .privacy-agree input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 0.2rem;
  accent-color: var(--primary-color, #007bff);
}
.contact-form-page .privacy-agree a {
  color: var(--primary-color, #007bff);
  text-decoration: none;
}
.contact-form-page .privacy-agree a:hover {
  text-decoration: underline;
}
.contact-form-page .form-actions {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
  padding-top: 2.4rem;
  border-top: 0.1rem solid #dee2e6;
}
.contact-form-page .form-actions .btn-lg {
  min-width: 14rem;
  padding: 1.4rem 3.2rem;
  font-size: 1.6rem;
}

.bookmark-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.4rem 1.6rem;
}

.bookmark-page .page-header {
  margin-bottom: 3.2rem;
}
.bookmark-page .page-header .page-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.4rem;
}
.bookmark-page .page-header .page-desc {
  font-size: 1.6rem;
  color: #64748b;
}

.bookmark-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
  padding: 1.6rem;
  background: #f8fafc;
  border-radius: 0.8rem;
}
@media (max-width: 576px) {
  .bookmark-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.total-count {
  font-size: 1.4rem;
  color: #64748b;
}
.total-count strong {
  color: #6366f1;
}

.bulk-actions {
  display: flex;
  gap: 0.4rem;
}

.bookmark-toolbar .search-form {
  display: flex;
  gap: 0.4rem;
}

.bookmark-toolbar .search-input {
  width: 200px;
  padding: 0.4rem 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  transition: all 0.2s;
}
.bookmark-toolbar .search-input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-search {
  padding: 0.4rem 0.8rem;
  background: #6366f1;
  border: none;
  border-radius: 0.4rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-search:hover {
  background: #4f46e5;
}

.bookmark-page .empty-state {
  text-align: center;
  padding: 80px 1.6rem;
  background: #f8fafc;
  border-radius: 0.8rem;
}

.empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 36px;
  color: #64748b;
}

.bookmark-page .empty-state h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.4rem;
}

.bookmark-page .empty-state p {
  font-size: 1.4rem;
  color: #64748b;
  margin-bottom: 2.4rem;
}

.bookmark-list {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  overflow: hidden;
}

.list-header {
  display: grid;
  grid-template-columns: 40px 1fr 120px 100px 100px 60px;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
}
@media (max-width: 768px) {
  .list-header {
    display: none;
  }
}

.list-item {
  display: grid;
  grid-template-columns: 40px 1fr 120px 100px 100px 60px;
  gap: 0.8rem;
  padding: 1.6rem 1.6rem;
  border-bottom: 1px solid rgb(242.8068181818, 245.3295454545, 248.6931818182);
  align-items: center;
  transition: background 0.2s;
}
.list-item:last-child {
  border-bottom: none;
}
.list-item:hover {
  background: #f8fafc;
}
@media (max-width: 768px) {
  .list-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 1.6rem;
    position: relative;
  }
}

.bookmark-list .checkbox-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.bookmark-list .checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
@media (max-width: 768px) {
  .bookmark-list .checkbox-wrapper {
    position: absolute;
    right: 1.6rem;
    top: 1.6rem;
  }
}

.bookmark-list .checkmark {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid rgb(192.3863636364, 205.3409090909, 222.6136363636);
  border-radius: 4px;
  transition: all 0.2s;
}

.bookmark-list .checkbox-wrapper:hover .checkmark {
  border-color: #6366f1;
}

.bookmark-list .checkbox-wrapper input:checked ~ .checkmark {
  background: #6366f1;
  border-color: #6366f1;
}

.bookmark-list .checkbox-wrapper input:checked ~ .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .bookmark-list .col-title {
    flex: 1 1 100%;
    padding-right: 40px;
  }
}
.bookmark-list .col-title .item-link {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bookmark-list .col-title .item-link:hover {
  color: #6366f1;
}

.item-stats {
  display: flex;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: rgb(127.050209205, 141.7782426778, 162.949790795);
}
.item-stats i {
  margin-right: 4px;
}

.bookmark-list .col-board,
.bookmark-list .col-author,
.bookmark-list .col-date {
  font-size: 1.1rem;
  color: #64748b;
}
@media (max-width: 768px) {
  .bookmark-list .col-board,
  .bookmark-list .col-author,
  .bookmark-list .col-date {
    font-size: 12px;
  }
}

.badge-board {
  display: inline-block;
  padding: 4px 10px;
  background: #e0e7ff;
  color: #4338ca;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.bookmark-list .col-action {
  text-align: center;
}
@media (max-width: 768px) {
  .bookmark-list .col-action {
    position: absolute;
    right: 1.6rem;
    bottom: 1.6rem;
  }
}

.btn-icon {
  padding: 0.4rem;
  background: transparent;
  border: none;
  border-radius: 0.4rem;
  color: rgb(127.050209205, 141.7782426778, 162.949790795);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-icon:hover {
  background: #fee2e2;
  color: #dc2626;
}

.bookmark-page .pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 3.2rem;
}

.bookmark-page .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.8rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.2s;
}
.bookmark-page .page-link:hover {
  background: #f8fafc;
  border-color: #6366f1;
  color: #6366f1;
}
.bookmark-page .page-link.active {
  background: #6366f1;
  border-color: #6366f1;
  color: #fff;
}

.btn-bookmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 1.1rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-bookmark:hover {
  border-color: #6366f1;
  color: #6366f1;
}
.btn-bookmark.active {
  background: #6366f1;
  border-color: #6366f1;
  color: #fff;
}
.btn-bookmark.active i {
  font-weight: 900;
}
.btn-bookmark i {
  font-size: 1.4rem;
}

.cart-page {
  max-width: 120rem;
  margin: 0 auto;
  padding: 3.2rem 1.6rem;
}

.page-header {
  margin-bottom: 2.4rem;
}

.page-title {
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #212529;
}

.empty-cart {
  text-align: center;
  padding: 8rem 1.6rem;
  background: #f5f5f5;
  border-radius: 1.2rem;
  border: 0.1rem solid #dee2e6;
}
.empty-cart__icon {
  font-size: 7.2rem;
  margin-bottom: 1.6rem;
  line-height: 1;
}
.empty-cart__message {
  color: #6c757d;
  margin-bottom: 3.2rem;
  font-size: 1.8rem;
  line-height: 1.5;
}

.cart-content {
  display: grid;
  grid-template-columns: 1fr 38rem;
  gap: 3.2rem;
  align-items: start;
}

.cart-items {
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  border: 0.1rem solid #dee2e6;
  overflow: hidden;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.6rem;
  border-bottom: 0.1rem solid #dee2e6;
  background: #f5f5f5;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
}
.checkbox-wrap input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  accent-color: #6366f1;
  cursor: pointer;
}

.btn-text {
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  transition: all 0.3s ease;
}
.btn-text:hover {
  color: #dc3545;
  background: #fef2f2;
}

.cart-list {
  padding: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 4.4rem 10rem 1fr 14rem 14rem 4.4rem;
  gap: 1.6rem;
  align-items: center;
  padding: 1.6rem;
  border-bottom: 0.1rem solid #f8f9fa;
  transition: background 0.3s ease;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item:hover {
  background: #fafbfc;
}
.cart-item__checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-item__checkbox input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  accent-color: #6366f1;
  cursor: pointer;
}
.cart-item__image {
  width: 10rem;
  height: 10rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #f8f9fa;
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__image .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #dee2e6 100%);
  color: #9ca3af;
  font-size: 1.2rem;
}
.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.cart-item__name {
  font-weight: 600;
  color: #212529;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item__name:hover {
  color: #6366f1;
}
.cart-item__option {
  font-size: 1.3rem;
  color: #9ca3af;
}
.cart-item__price {
  font-size: 1.4rem;
  color: #4b5563;
  font-weight: 500;
}
.cart-item__status {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.1rem;
  border-radius: 0.2rem;
  margin-top: 0.4rem;
  width: fit-content;
  font-weight: 500;
}
.cart-item__status--soldout {
  background: #fee2e2;
  color: #dc3545;
}
.cart-item__status--inactive {
  background: #f8f9fa;
  color: #6c757d;
}
.cart-item__quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.cart-item__total {
  text-align: right;
}
.cart-item__actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

.qty-btn {
  width: 3.6rem;
  height: 3.6rem;
  border: 0.1rem solid #dee2e6;
  background: #ffffff;
  cursor: pointer;
  font-size: 1.6rem;
  color: #4b5563;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qty-btn.minus {
  border-radius: 0.4rem 0 0 0.4rem;
}
.qty-btn.plus {
  border-radius: 0 0.4rem 0.4rem 0;
}
.qty-btn:hover:not(:disabled) {
  background: #f8f9fa;
  color: #212529;
}
.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.qty-input {
  width: 5rem;
  height: 3.6rem;
  text-align: center;
  border: 0.1rem solid #dee2e6;
  border-left: none;
  border-right: none;
  font-weight: 600;
  font-size: 1.4rem;
  background: #ffffff;
}
.qty-input::-webkit-inner-spin-button, .qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.total-price {
  font-weight: 700;
  font-size: 1.6rem;
  color: #212529;
}

.btn-remove {
  width: 3.6rem;
  height: 3.6rem;
  border: none;
  background: #f8f9fa;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.btn-remove:hover {
  background: #dc3545;
  color: #ffffff;
}

.cart-actions {
  display: flex;
  gap: 1.2rem;
  padding: 1.6rem;
  border-top: 0.1rem solid #dee2e6;
  background: #f5f5f5;
}
.cart-actions .btn {
  padding: 1.2rem 1.6rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--outline {
  background: #ffffff;
  border: 0.1rem solid #dee2e6;
  color: #4b5563;
}
.btn--outline:hover {
  background: #f8f9fa;
  border-color: #ced4da;
}

.cart-summary {
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  border: 0.1rem solid #dee2e6;
  padding: 2.4rem;
  position: sticky;
  top: 2.4rem;
  height: fit-content;
}

.summary-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 0.1rem solid #dee2e6;
  color: #212529;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: 1.4rem;
  color: #4b5563;
}
.summary-row span:last-child {
  font-weight: 500;
  color: #212529;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 0.2rem solid #212529;
  font-size: 1.6rem;
  font-weight: 700;
  color: #212529;
}

.total-amount {
  color: #dc3545;
  font-size: 2.4rem;
}

.btn--primary {
  background: #6366f1;
  color: #ffffff;
  border: none;
}
.btn--primary:hover {
  background: #4f46e5;
}

.btn--block {
  width: 100%;
  margin-top: 2.4rem;
  padding: 1.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 0.8rem;
}

@media (max-width: 1023px) {
  .cart-content {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
    order: -1;
  }
  .cart-item {
    grid-template-columns: 3.6rem 8rem 1fr 10rem 10rem 3.6rem;
    gap: 1.2rem;
    padding: 1.6rem;
  }
  .cart-item__image {
    width: 8rem;
    height: 8rem;
  }
}
@media (max-width: 767px) {
  .cart-page {
    padding: 1.6rem 1.6rem;
  }
  .empty-cart {
    padding: 6rem 1.6rem;
  }
  .empty-cart__icon {
    font-size: 5.6rem;
  }
  .empty-cart__message {
    font-size: 1.6rem;
  }
  .cart-item {
    grid-template-columns: 3.2rem 7rem 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
    padding: 1.6rem 1.2rem;
    position: relative;
  }
  .cart-item__checkbox {
    grid-row: span 2;
    align-self: flex-start;
    padding-top: 0.6rem;
  }
  .cart-item__checkbox input[type=checkbox] {
    width: 1.8rem;
    height: 1.8rem;
  }
  .cart-item__image {
    width: 7rem;
    height: 7rem;
    grid-row: span 2;
    border-radius: 0.4rem;
  }
  .cart-item__info {
    grid-column: 3;
  }
  .cart-item__name {
    font-size: 1.4rem;
  }
  .cart-item__price {
    font-size: 1.3rem;
  }
  .cart-item__quantity {
    grid-column: 3;
    justify-content: flex-start;
  }
  .cart-item__total {
    position: absolute;
    right: 1.2rem;
    bottom: 1.6rem;
  }
  .cart-item__actions {
    position: absolute;
    right: 1.2rem;
    top: 1.6rem;
  }
  .qty-btn {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.4rem;
  }
  .qty-input {
    width: 4.4rem;
    height: 3.2rem;
    font-size: 1.3rem;
  }
  .total-price {
    font-size: 1.5rem;
  }
  .btn-remove {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.8rem;
  }
  .cart-header {
    padding: 1.2rem 1.6rem;
  }
  .checkbox-wrap {
    font-size: 1.3rem;
  }
  .cart-actions {
    flex-direction: column;
    padding: 1.6rem;
  }
  .cart-actions .btn {
    width: 100%;
    text-align: center;
  }
  .cart-summary {
    padding: 1.6rem 1.6rem;
    border-radius: 0.8rem;
  }
  .summary-title {
    font-size: 1.6rem;
    padding-bottom: 1.4rem;
  }
  .summary-row {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .summary-total {
    font-size: 1.5rem;
    padding-top: 1.6rem;
  }
  .total-amount {
    font-size: 2rem;
  }
  .btn--block {
    padding: 1.4rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .cart-item {
    grid-template-columns: 2.8rem 6rem 1fr;
    gap: 0.8rem;
    padding: 1.4rem 1rem;
  }
  .cart-item__image {
    width: 6rem;
    height: 6rem;
  }
  .cart-item__name {
    font-size: 1.3rem;
  }
  .cart-item__option {
    font-size: 1.1rem;
  }
  .cart-item__price {
    font-size: 1.2rem;
  }
  .qty-btn {
    width: 2.8rem;
    height: 2.8rem;
  }
  .qty-input {
    width: 3.8rem;
    height: 2.8rem;
    font-size: 1.2rem;
  }
}
@media (hover: none) {
  .cart-item:hover {
    background: transparent;
  }
  .btn-remove:active {
    transform: scale(0.95);
  }
  .qty-btn:active:not(:disabled) {
    background: #dee2e6;
  }
  .btn--primary:active {
    transform: scale(0.98);
  }
}
@media print {
  .cart-actions,
  .cart-summary button,
  .btn-remove,
  .qty-btn {
    display: none !important;
  }
  .cart-content {
    grid-template-columns: 1fr !important;
  }
  .cart-item {
    page-break-inside: avoid;
  }
}
.coupon-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 20px;
}

.coupon-header {
  margin-bottom: 24px;
}
.coupon-header h2 {
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}
.coupon-header p {
  color: #6b7280;
  font-size: 14px;
}

.coupon-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
}

.coupon-tab {
  padding: 10px 20px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}
.coupon-tab:hover {
  background: #f3f4f6;
  color: #1f2937;
}
.coupon-tab.active {
  background: #6366f1;
  color: #fff;
}
.coupon-tab .count {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 12px;
}
.coupon-tab:not(.active) .count {
  background: #e5e7eb;
  color: #6b7280;
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.coupon-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  position: relative;
  transition: all 0.2s;
}
.coupon-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.coupon-card.expired, .coupon-card.used {
  opacity: 0.6;
  pointer-events: none;
}
.coupon-card.expired::after, .coupon-card.used::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
}
.coupon-card::before, .coupon-card::after {
  content: "";
  position: absolute;
  left: 140px;
  width: 16px;
  height: 16px;
  background: #f9fafb;
  border-radius: 50%;
  transform: translateX(-50%);
}
.coupon-card::before {
  top: -8px;
}
.coupon-card::after {
  bottom: -8px;
}
.coupon-card.gold .coupon-left {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.coupon-card.red .coupon-left {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.coupon-card.green .coupon-left {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.coupon-left {
  width: 140px;
  padding: 24px 20px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.coupon-left::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background: repeating-linear-gradient(to bottom, transparent, transparent 6px, rgba(255, 255, 255, 0.4) 6px, rgba(255, 255, 255, 0.4) 12px);
}

.coupon-discount {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.coupon-discount-type {
  font-size: 13px;
  opacity: 0.9;
}

.coupon-right {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coupon-info {
  flex: 1;
}

.coupon-name {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.coupon-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 12px 0;
  line-height: 1.5;
}

.coupon-condition {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}
.coupon-condition span {
  display: block;
  margin-bottom: 2px;
}

.coupon-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

.coupon-expiry {
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
}
.coupon-expiry.soon {
  color: #f59e0b;
}

.coupon-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}
.coupon-status.available {
  background: #dcfce7;
  color: #15803d;
}
.coupon-status.expired {
  background: #fee2e2;
  color: #dc2626;
}
.coupon-status.used {
  background: #f3f4f6;
  color: #6b7280;
}

.btn-coupon-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-coupon-download:hover {
  background: #4f46e5;
}
.btn-coupon-download:disabled {
  background: #d1d5db;
  cursor: not-allowed;
}
.btn-coupon-download i {
  font-size: 14px;
}
.btn-coupon-download.downloaded {
  background: #10b981;
  pointer-events: none;
}

.coupon-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.coupon-modal.active {
  opacity: 1;
  visibility: visible;
}
.coupon-modal.active .coupon-modal__content {
  transform: scale(1);
}
.coupon-modal__content {
  background: #fff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.coupon-modal__header {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.coupon-modal__close {
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.coupon-modal__close:hover {
  background: #e5e7eb;
}
.coupon-modal__body {
  padding: 24px;
}
.coupon-modal__preview {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}
.coupon-modal__preview .discount {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
}
.coupon-modal__preview .name {
  font-size: 18px;
  font-weight: 600;
}
.coupon-modal__details {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
}
.coupon-modal__details h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px 0;
}
.coupon-modal__details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.coupon-modal__details li {
  font-size: 13px;
  color: #6b7280;
  padding: 8px 0;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
}
.coupon-modal__details li:last-child {
  border-bottom: none;
}
.coupon-modal__details li span:last-child {
  font-weight: 500;
  color: #1f2937;
}
.coupon-modal__footer {
  padding: 0 24px 24px;
}

.coupon-input-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
.coupon-input-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #1f2937;
}

.coupon-input-group {
  display: flex;
  gap: 10px;
}
.coupon-input-group input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.2s;
}
.coupon-input-group input:focus {
  outline: none;
  border-color: #6366f1;
}
.coupon-input-group input::placeholder {
  color: #9ca3af;
}

.coupon-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}
.coupon-empty i {
  font-size: 48px;
  margin-bottom: 16px;
  color: #d1d5db;
}
.coupon-empty p {
  font-size: 14px;
  margin: 0;
}

.coupon-download-section {
  background: linear-gradient(135deg, #eef2ff 0%, #faf5ff 100%);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
}
.coupon-download-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
}

.coupon-download-list {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.coupon-download-list::-webkit-scrollbar {
  height: 6px;
}
.coupon-download-list::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 3px;
}
.coupon-download-list::-webkit-scrollbar-thumb {
  background: #6366f1;
  border-radius: 3px;
}

.coupon-download-item {
  min-width: 260px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coupon-download-item .discount {
  font-size: 24px;
  font-weight: 800;
  color: #6366f1;
}
.coupon-download-item .name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}
.coupon-download-item .condition {
  font-size: 12px;
  color: #9ca3af;
}

@media (max-width: 1023px) {
  .coupon-grid {
    gap: 16px;
  }
  .coupon-left {
    width: 120px;
    padding: 20px 16px;
  }
  .coupon-card::before, .coupon-card::after {
    left: 120px;
  }
  .coupon-discount {
    font-size: 28px;
  }
  .coupon-right {
    padding: 16px 20px;
  }
}
@media (max-width: 767px) {
  .coupon-page {
    padding: 20px 16px;
  }
  .coupon-tabs {
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
  }
  .coupon-tab {
    padding: 8px 16px;
    white-space: nowrap;
    font-size: 13px;
  }
  .coupon-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .coupon-card {
    flex-direction: column;
  }
  .coupon-card::before, .coupon-card::after {
    top: 76px;
    left: auto;
    transform: translateY(-50%);
  }
  .coupon-card::before {
    left: -8px;
  }
  .coupon-card::after {
    right: -8px;
    left: auto;
  }
  .coupon-left {
    width: 100%;
    padding: 20px;
    flex-direction: row;
    gap: 8px;
  }
  .coupon-left::after {
    display: none;
  }
  .coupon-discount {
    font-size: 28px;
  }
  .coupon-discount-type {
    font-size: 14px;
  }
  .coupon-right {
    padding: 16px;
  }
  .coupon-name {
    font-size: 15px;
  }
  .coupon-footer {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .coupon-expiry {
    text-align: center;
  }
  .btn-coupon-download {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }
  .coupon-input-section {
    padding: 20px 16px;
  }
  .coupon-input-group {
    flex-direction: column;
  }
  .coupon-input-group .btn {
    width: 100%;
  }
  .coupon-download-section {
    padding: 20px 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
  }
  .coupon-download-item {
    min-width: 220px;
    padding: 16px;
  }
  .coupon-download-item .discount {
    font-size: 20px;
  }
  .coupon-modal {
    padding: 16px;
  }
  .coupon-modal__content {
    border-radius: 16px;
  }
  .coupon-modal__preview {
    padding: 24px;
  }
  .coupon-modal__preview .discount {
    font-size: 36px;
  }
  .coupon-modal__preview .name {
    font-size: 16px;
  }
  .coupon-empty {
    padding: 40px 20px;
  }
  .coupon-empty i {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .coupon-discount {
    font-size: 24px;
  }
  .coupon-name {
    font-size: 14px;
  }
  .coupon-desc {
    font-size: 12px;
  }
  .coupon-download-item {
    min-width: 200px;
  }
}
html.dark-mode .coupon-page {
  background: #0f172a;
}
html.dark-mode .coupon-header h2 {
  color: #f1f5f9;
}
html.dark-mode .coupon-header p {
  color: #94a3b8;
}
html.dark-mode .coupon-tab {
  color: #94a3b8;
}
html.dark-mode .coupon-tab:hover {
  background: #1e293b;
  color: #f1f5f9;
}
html.dark-mode .coupon-tab:not(.active) .count {
  background: #334155;
  color: #94a3b8;
}
html.dark-mode .coupon-card {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .coupon-card::before, html.dark-mode .coupon-card::after {
  background: #0f172a;
}
html.dark-mode .coupon-name {
  color: #f1f5f9;
}
html.dark-mode .coupon-desc {
  color: #94a3b8;
}
html.dark-mode .coupon-footer {
  border-color: #334155;
}
html.dark-mode .coupon-input-section {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .coupon-input-section h3 {
  color: #f1f5f9;
}
html.dark-mode .coupon-input-group input {
  background: #0f172a;
  border-color: #334155;
  color: #f1f5f9;
}
html.dark-mode .coupon-modal__content {
  background: #1e293b;
}
html.dark-mode .coupon-modal__details {
  background: #0f172a;
}
html.dark-mode .coupon-modal__details h4 {
  color: #f1f5f9;
}
html.dark-mode .coupon-modal__details li {
  color: #94a3b8;
  border-color: #334155;
}
html.dark-mode .coupon-modal__details li span:last-child {
  color: #f1f5f9;
}
html.dark-mode .coupon-download-section {
  background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
}
html.dark-mode .coupon-download-section h3 {
  color: #f1f5f9;
}
html.dark-mode .coupon-download-item {
  background: #0f172a;
}
html.dark-mode .coupon-download-item .name {
  color: #f1f5f9;
}

@media (hover: none) {
  .coupon-card:active {
    transform: scale(0.98);
  }
  .btn-coupon-download:active {
    transform: scale(0.98);
  }
}
@media print {
  .coupon-grid {
    grid-template-columns: 1fr !important;
  }
  .coupon-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 2px solid #000;
  }
  .btn-coupon-download {
    display: none !important;
  }
}
.faq-page {
  max-width: 90rem;
  margin: 0 auto;
  padding: 2.4rem;
}
.faq-page__header {
  text-align: center;
  margin-bottom: 3.2rem;
  padding: 3.2rem 0;
}
.faq-page__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #212529;
  margin: 0 0 0.8rem;
}
.faq-page__subtitle {
  font-size: 1.8rem;
  color: #6c757d;
  margin: 0;
}

.faq-search {
  max-width: 50rem;
  margin: 0 auto 3.2rem;
}
.faq-search__form {
  display: block;
}
.faq-search__input-wrap {
  display: flex;
  border: 2px solid #dee2e6;
  border-radius: 50rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-search__input-wrap:focus-within {
  border-color: #007bff;
}
.faq-search__input {
  flex: 1;
  padding: 1.4rem 2.4rem;
  border: none;
  font-size: 1.6rem;
  outline: none;
  background: transparent;
}
.faq-search__input::placeholder {
  color: #6c757d;
}
.faq-search__btn {
  padding: 1.4rem 2.4rem;
  background: #007bff;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.faq-search__btn:hover {
  background: rgb(0, 98.4, 204);
}
.faq-search__btn i {
  font-size: 1.8rem;
}

.faq-category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
  justify-content: center;
}
.faq-category__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.6rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 50rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-category__item:hover {
  background: rgb(233.125, 236.25, 239.375);
  border-color: rgb(192.9827586207, 200.5, 208.0172413793);
}
.faq-category__item--active {
  background: #007bff;
  border-color: #007bff;
  color: #ffffff;
}
.faq-category__item--active:hover {
  background: rgb(0, 98.4, 204);
  border-color: rgb(0, 98.4, 204);
}
.faq-category__item--active .faq-category__count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.faq-category__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.4rem;
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  border-radius: 50rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.faq-item {
  border: 1px solid #dee2e6;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover {
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
}
.faq-item__question {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
  cursor: pointer;
  background: #ffffff;
  transition: background-color 0.2s ease;
}
.faq-item__question:hover {
  background: #f8f9fa;
}
.faq-item__badge {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007bff;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.4rem;
  border-radius: 0.4rem;
  flex-shrink: 0;
}
.faq-item__badge--answer {
  background: #28a745;
}
.faq-item__category {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0.2rem;
  flex-shrink: 0;
}
.faq-item__title {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  color: #212529;
  line-height: 1.5;
}
.faq-item__toggle {
  color: #6c757d;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item__toggle i {
  font-size: 1.6rem;
}
.faq-item__answer {
  display: none;
  padding: 0 2rem 2rem;
  background: #f8f9fa;
  gap: 1.4rem;
  border-top: 1px solid #dee2e6;
}
.faq-item__content {
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #6c757d;
}
.faq-item__content p {
  margin-bottom: 1.6rem;
}
.faq-item__content p:last-child {
  margin-bottom: 0;
}
.faq-item__content ul, .faq-item__content ol {
  margin-bottom: 1.6rem;
  padding-left: 2.4rem;
}
.faq-item__content li {
  margin-bottom: 0.4rem;
}
.faq-item__content a {
  color: #007bff;
  text-decoration: underline;
}
.faq-item__content a:hover {
  color: rgb(0, 86.1, 178.5);
}
.faq-item__content strong {
  color: #212529;
  font-weight: 600;
}
.faq-item.active {
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  border-color: rgb(192.9827586207, 200.5, 208.0172413793);
}
.faq-item.active .faq-item__toggle {
  transform: rotate(180deg);
}
.faq-item.active .faq-item__answer {
  display: flex;
  padding-top: 2rem;
}

.faq-empty {
  text-align: center;
  padding: 6rem 2rem;
  background: #f8f9fa;
  border-radius: 0.8rem;
}
.faq-empty__icon {
  font-size: 4.8rem;
  color: #6c757d;
  margin-bottom: 1.6rem;
  opacity: 0.5;
}
.faq-empty__message {
  font-size: 1.8rem;
  color: #6c757d;
  margin: 0 0 1.6rem;
  line-height: 1.6;
}
.faq-empty__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 2.4rem;
  background: #007bff;
  color: #ffffff;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.faq-empty__btn:hover {
  background: rgb(0, 98.4, 204);
}

@media (max-width: 768px) {
  .faq-page {
    padding: 1.6rem;
  }
  .faq-page__header {
    padding: 2.4rem 0;
  }
  .faq-page__title {
    font-size: 2.4rem;
  }
  .faq-page__subtitle {
    font-size: 1.6rem;
  }
  .faq-search {
    margin-bottom: 2.4rem;
  }
  .faq-search__input {
    padding: 1.2rem 1.6rem;
  }
  .faq-search__btn {
    padding: 1.2rem 1.6rem;
  }
  .faq-category {
    margin-bottom: 2.4rem;
  }
  .faq-category__item {
    padding: 0.4rem 0.8rem;
    font-size: 1.1rem;
  }
  .faq-item__question {
    padding: 1.4rem 1.6rem;
    gap: 1rem;
  }
  .faq-item__badge {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.1rem;
  }
  .faq-item__title {
    font-size: 1.4rem;
  }
  .faq-item__answer {
    padding: 0 1.6rem 1.6rem;
  }
  .faq-item__content {
    font-size: 1.4rem;
  }
  .faq-item.active .faq-item__answer {
    padding-top: 1.6rem;
  }
}
@media (max-width: 576px) {
  .faq-item__category {
    display: none;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  margin-bottom: 3.2rem;
}
.hero-slider .hero-swiper {
  position: relative;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide {
  display: flex;
  align-items: center;
  min-height: 400px;
  padding: 3.2rem 0;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .hero-content {
  flex: 1;
  color: #ffffff;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .hero-content .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 50rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .hero-content .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  line-height: 1.3;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .hero-content .hero-desc {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
  opacity: 0.9;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .hero-content .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  color: var(--primary-color, #007bff);
  padding: 1.6rem 2.4rem;
  border-radius: 50rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .hero-content .hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .hero-image {
  flex: 0 0 400px;
}
.hero-slider .hero-swiper .swiper-slide .hero-slide .hero-image img {
  max-width: 100%;
  height: auto;
}
.hero-slider .hero-swiper .swiper-pagination {
  bottom: 1.6rem;
}
.hero-slider .hero-swiper .swiper-button-prev,
.hero-slider .hero-swiper .swiper-button-next {
  color: #ffffff;
}
.hero-slider .hero-swiper .swiper-button-prev:after,
.hero-slider .hero-swiper .swiper-button-next:after {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .hero-slider .hero-swiper .swiper-slide .hero-slide {
    min-height: 300px;
  }
  .hero-slider .hero-swiper .swiper-slide .hero-slide .hero-content .hero-title {
    font-size: 1.75rem;
  }
  .hero-slider .hero-swiper .swiper-slide .hero-slide .hero-content .hero-desc {
    font-size: 1.6rem;
  }
  .hero-slider .hero-swiper .swiper-slide .hero-slide .hero-image {
    display: none;
  }
}

.category-section {
  padding: 3.2rem 0;
  background: #f8f9fa;
}
.category-section .category-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.6rem;
}
@media (max-width: 992px) {
  .category-section .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 576px) {
  .category-section .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
  }
}
.category-section .category-grid .category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 1.6rem;
  border-radius: 0.8rem;
  transition: all 0.2s ease-in-out;
}
.category-section .category-grid .category-item:hover {
  background: #ffffff;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
}
.category-section .category-grid .category-item:hover .category-icon {
  transform: scale(1.1);
}
.category-section .category-grid .category-item .category-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}
.category-section .category-grid .category-item .category-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.category-section .category-grid .category-item .category-name {
  font-size: 1.4rem;
  color: #212529;
  font-weight: 500;
  text-align: center;
}

.product-section {
  padding: 4.8rem 0;
}
.product-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
}
.product-section .section-header .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.product-section .section-header .section-title i {
  font-size: 1.8rem;
}
.product-section .section-header .view-all {
  color: #6c757d;
  text-decoration: none;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-section .section-header .view-all:hover {
  color: var(--primary-color, #007bff);
}
.product-section .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 992px) {
  .product-section .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-section .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-section .product-grid.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1200px) {
  .product-section .product-grid.cols-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .product-section .product-grid.cols-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-section .product-grid.cols-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: #ffffff;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
}
.product-card:hover .btn-cart {
  opacity: 1;
}
.product-card .product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card .product-image {
  position: relative;
  padding-top: 100%;
  background: #f8f9fa;
}
.product-card .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .product-image .product-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.2rem;
  font-size: 11px;
  font-weight: 600;
}
.product-card .product-image .product-badge.sale {
  background: #dc3545;
  color: #ffffff;
}
.product-card .product-image .product-badge.new {
  background: #28a745;
  color: #ffffff;
}
.product-card .product-image .product-badge.best {
  background: var(--primary-color, #007bff);
  color: #ffffff;
}
.product-card .product-info {
  padding: 1.6rem;
}
.product-card .product-info .product-name {
  font-size: 1.4rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .product-info .product-price {
  margin-bottom: 0.8rem;
}
.product-card .product-info .product-price .price-original {
  font-size: 1.4rem;
  color: #6c757d;
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.4rem;
}
.product-card .product-info .product-price .price-sale {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
}
.product-card .product-info .product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  color: #6c757d;
}
.product-card .product-info .product-meta .delivery {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-card .product-info .product-meta .delivery i {
  color: var(--primary-color, #007bff);
}
.product-card .product-info .product-meta .rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.product-card .product-info .product-meta .rating i {
  color: #ffc107;
}
.product-card .btn-cart {
  position: absolute;
  bottom: 80px;
  right: 1.6rem;
  width: 40px;
  height: 40px;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .btn-cart:hover {
  transform: scale(1.1);
}

.event-banner {
  padding: 3.2rem 0;
}
.event-banner .banner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .event-banner .banner-grid {
    grid-template-columns: 1fr;
  }
}
.event-banner .banner-grid .banner-item {
  text-decoration: none;
}
.event-banner .banner-grid .banner-item .banner-content {
  padding: 2.4rem;
  border-radius: 0.8rem;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.event-banner .banner-grid .banner-item .banner-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
}
.event-banner .banner-grid .banner-item .banner-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.event-banner .banner-grid .banner-item .banner-content p {
  font-size: 1.6rem;
  opacity: 0.9;
}

.review-section {
  padding: 4.8rem 0;
  background: #f8f9fa;
}
.review-section .review-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media (max-width: 992px) {
  .review-section .review-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .review-section .review-slider {
    grid-template-columns: 1fr;
  }
}
.review-section .review-slider .review-card {
  background: #ffffff;
  padding: 2.4rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
}
.review-section .review-slider .review-card .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}
.review-section .review-slider .review-card .review-header .reviewer {
  font-weight: 600;
  color: #212529;
}
.review-section .review-slider .review-card .review-header .review-rating {
  color: #ffc107;
}
.review-section .review-slider .review-card .review-header .review-rating i {
  font-size: 1.4rem;
}
.review-section .review-slider .review-card .review-content {
  font-size: 1.4rem;
  color: #212529;
  line-height: 1.75;
  margin-bottom: 1.6rem;
}
.review-section .review-slider .review-card .review-product {
  font-size: 1.1rem;
  color: #6c757d;
  padding-top: 1.6rem;
  border-top: 1px solid #dee2e6;
}

.top-button {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 1030;
}
.top-button button {
  width: 50px;
  height: 50px;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  font-size: 1.8rem;
  transition: all 0.2s ease-in-out;
}
.top-button button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
  padding: 3.2rem;
}
.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 2.4rem;
}
.auth-card .auth-logo img {
  height: 50px;
  width: auto;
}
.auth-card .auth-logo .logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color, #007bff);
  margin-top: 0.8rem;
}
.auth-card .auth-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.6rem;
  color: #212529;
}
.auth-card .auth-subtitle {
  text-align: center;
  color: #6c757d;
  margin-bottom: 2.4rem;
}

.auth-form .form-group {
  margin-bottom: 1.6rem;
}
.auth-form .form-control {
  padding: 1.6rem;
  font-size: 1.6rem;
}
.auth-form .remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
}
.auth-form .remember-forgot a {
  color: var(--primary-color, #007bff);
  text-decoration: none;
}
.auth-form .remember-forgot a:hover {
  text-decoration: underline;
}
.auth-form .btn-login,
.auth-form .btn-register {
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  font-weight: 600;
}

.social-login {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid #dee2e6;
}
.social-login .social-title {
  text-align: center;
  color: #6c757d;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.social-login .social-buttons {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
.social-login .social-buttons .social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.social-login .social-buttons .social-btn i {
  font-size: 1.8rem;
  color: #ffffff;
}
.social-login .social-buttons .social-btn.btn-kakao {
  background: #FEE500;
}
.social-login .social-buttons .social-btn.btn-kakao i {
  color: #3C1E1E;
}
.social-login .social-buttons .social-btn.btn-naver {
  background: #03C75A;
}
.social-login .social-buttons .social-btn.btn-google {
  background: #ffffff;
  border: 1px solid #dee2e6;
}
.social-login .social-buttons .social-btn.btn-google i {
  color: #212529;
}
.social-login .social-buttons .social-btn.btn-facebook {
  background: #1877F2;
}
.social-login .social-buttons .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
}

.auth-footer {
  text-align: center;
  margin-top: 2.4rem;
  font-size: 1.4rem;
  color: #6c757d;
}
.auth-footer a {
  color: var(--primary-color, #007bff);
  text-decoration: none;
  font-weight: 500;
}
.auth-footer a:hover {
  text-decoration: underline;
}

.mypage-container {
  padding: 3.2rem 0;
}

.mypage-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3.2rem;
}
@media (max-width: 992px) {
  .mypage-layout {
    grid-template-columns: 1fr;
  }
}

.mypage-sidebar .user-info-card {
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  padding: 2.4rem;
  text-align: center;
  margin-bottom: 1.6rem;
}
.mypage-sidebar .user-info-card .user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.6rem;
  object-fit: cover;
  border: 3px solid var(--primary-color, #007bff);
}
.mypage-sidebar .user-info-card .user-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.mypage-sidebar .user-info-card .user-email {
  color: #6c757d;
  font-size: 1.4rem;
}
.mypage-sidebar .user-info-card .user-level {
  display: inline-block;
  margin-top: 1.6rem;
  padding: 0.4rem 0.8rem;
  background: rgb(204, 228.6, 255);
  color: #007bff;
  border-radius: 50rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.mypage-sidebar .mypage-menu {
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  overflow: hidden;
}
.mypage-sidebar .mypage-menu .menu-title {
  padding: 1.6rem;
  background: #f8f9fa;
  font-size: 1.4rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mypage-sidebar .mypage-menu .menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mypage-sidebar .mypage-menu .menu-list li {
  border-bottom: 1px solid #dee2e6;
}
.mypage-sidebar .mypage-menu .menu-list li:last-child {
  border-bottom: none;
}
.mypage-sidebar .mypage-menu .menu-list li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem;
  color: #6c757d;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.mypage-sidebar .mypage-menu .menu-list li a i {
  width: 20px;
  text-align: center;
}
.mypage-sidebar .mypage-menu .menu-list li a:hover, .mypage-sidebar .mypage-menu .menu-list li a.active {
  background: #f8f9fa;
  color: var(--primary-color, #007bff);
}

.mypage-content .content-header {
  margin-bottom: 2.4rem;
}
.mypage-content .content-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.mypage-content .content-header p {
  color: #6c757d;
}
.mypage-content .content-card {
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  margin-bottom: 2.4rem;
}
.mypage-content .content-card .card-header {
  padding: 1.6rem;
  border-bottom: 1px solid #dee2e6;
  font-weight: 600;
}
.mypage-content .content-card .card-body {
  padding: 2.4rem;
}

.order-list .order-item {
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
}
.order-list .order-item .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem;
  background: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}
.order-list .order-item .order-header .order-date {
  font-weight: 600;
}
.order-list .order-item .order-header .order-status {
  padding: 0.4rem 0.8rem;
  border-radius: 0.2rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.order-list .order-item .order-header .order-status.status-complete {
  background: rgb(175.1304347826, 235.8695652174, 189);
  color: #28a745;
}
.order-list .order-item .order-header .order-status.status-shipping {
  background: rgb(167, 233.4782608696, 244);
  color: #17a2b8;
}
.order-list .order-item .order-header .order-status.status-pending {
  background: rgb(255, 231.25, 160);
  color: #a07800;
}
.order-list .order-item .order-body {
  padding: 1.6rem;
}
.order-list .order-item .order-body .product-info {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.order-list .order-item .order-body .product-info .product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.4rem;
}
.order-list .order-item .order-body .product-info .product-details {
  flex: 1;
}
.order-list .order-item .order-body .product-info .product-details .product-name {
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.order-list .order-item .order-body .product-info .product-details .product-option {
  font-size: 1.4rem;
  color: #6c757d;
}
.order-list .order-item .order-body .product-info .product-price {
  font-weight: 600;
}
.order-list .order-item .order-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 1.6rem;
  border-top: 1px solid #dee2e6;
  background: #f8f9fa;
}

.profile-form {
  max-width: 600px;
}
.profile-form .avatar-upload {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}
.profile-form .avatar-upload .current-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.profile-form .avatar-upload .upload-btn {
  display: inline-block;
}
.profile-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 576px) {
  .profile-form .form-row {
    grid-template-columns: 1fr;
  }
}

.profile-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.2rem 1.6rem;
}
.profile-container .page-header {
  text-align: center;
  margin-bottom: 3.2rem;
}
.profile-container .page-header .page-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.8rem;
}
.profile-container .page-header .page-desc {
  color: #6c757d;
  font-size: 1.6rem;
}

.profile-image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #dee2e6;
}
.profile-image-section .profile-image-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
}
.profile-image-section .profile-image-wrapper .profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #dee2e6;
}
.profile-image-section .profile-image-wrapper .profile-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f8f9fa;
  border: 3px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-image-section .profile-image-wrapper .profile-image-placeholder i {
  font-size: 4rem;
  color: #6c757d;
}
.profile-image-section .profile-image-wrapper .profile-image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-color, #007bff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: 2px solid #ffffff;
}
.profile-image-section .profile-image-wrapper .profile-image-overlay:hover {
  background: rgb(0, 98.4, 204);
}
.profile-image-section .profile-image-wrapper .profile-image-overlay .image-upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.profile-image-section .profile-image-wrapper .profile-image-overlay .image-upload-btn i {
  color: #ffffff;
  font-size: 1.4rem;
}
.profile-image-section .profile-image-actions {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.profile-image-section .image-guide {
  font-size: 1.1rem;
  color: #6c757d;
}

.profile-info-section .form-group {
  margin-bottom: 2.4rem;
}
.profile-info-section .form-group .form-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.8rem;
}
.profile-info-section .form-group .form-label.required::after {
  content: "*";
  color: #dc3545;
  margin-left: 0.4rem;
}
.profile-info-section .form-group .form-control {
  width: 100%;
  padding: 1.6rem;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  transition: all 0.2s ease-in-out;
}
.profile-info-section .form-group .form-control:focus {
  border-color: var(--primary-color, #007bff);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}
.profile-info-section .form-group .form-control:disabled, .profile-info-section .form-group .form-control[readonly] {
  background: #f8f9fa;
  color: #6c757d;
  cursor: not-allowed;
}
.profile-info-section .form-group .form-help {
  margin-top: 0.4rem;
  font-size: 1.1rem;
  color: #6c757d;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 3.2rem;
  padding-top: 3.2rem;
  border-top: 1px solid #dee2e6;
}
.form-actions .btn {
  min-width: 120px;
  padding: 1.6rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-actions .btn-primary {
  background: var(--primary-color, #007bff);
  color: #ffffff;
  border: none;
}
.form-actions .btn-primary:hover:not(:disabled) {
  background: rgb(0, 98.4, 204);
}
.form-actions .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-actions .btn-outline {
  background: transparent;
  color: #6c757d;
  border: 1px solid #dee2e6;
}
.form-actions .btn-outline:hover {
  background: #f8f9fa;
}

.btn-sm {
  padding: 0.8rem 1.6rem !important;
  font-size: 1.4rem !important;
  min-width: auto !important;
}

.btn-outline-danger {
  background: transparent;
  color: #dc3545;
  border: 1px solid #dc3545;
}
.btn-outline-danger:hover {
  background: #dc3545;
  color: #ffffff;
}

.address-list .address-item {
  padding: 1.6rem;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.address-list .address-item.is-default {
  border-color: var(--primary-color, #007bff);
}
.address-list .address-item.is-default .default-badge {
  display: inline-block;
}
.address-list .address-item .default-badge {
  display: none;
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  padding: 0.4rem 0.8rem;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.2rem;
}
.address-list .address-item .address-name {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.address-list .address-item .address-detail {
  color: #6c757d;
  margin-bottom: 0.8rem;
}
.address-list .address-item .address-phone {
  font-size: 1.4rem;
  color: #6c757d;
}
.address-list .address-item .address-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
}

.member-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.2rem 1.6rem;
}

.member-card {
  width: 100%;
  background: var(--bg-primary, #ffffff);
  border-radius: 0.8rem;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
  padding: 3.2rem;
}
.member-card.register-card {
  max-width: 480px;
}

.member-header {
  text-align: center;
  margin-bottom: 3.2rem;
}
.member-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-primary, #212529);
  margin-bottom: 0.8rem;
}
.member-header p {
  color: var(--text-muted, #6c757d);
  font-size: 1.4rem;
}

.member-form .form-group {
  margin-bottom: 1.6rem;
}
.member-form label {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-primary, #6c757d);
  margin-bottom: 0.8rem;
}
.member-form .required {
  color: #dc3545;
}
.member-form .form-control {
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 0.4rem;
  background: var(--bg-secondary, #f8f9fa);
  transition: all 0.2s ease-in-out;
}
.member-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color, #007bff);
  background: var(--bg-primary, #ffffff);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.member-form .form-control.is-valid {
  border-color: #28a745;
}
.member-form .form-control.is-invalid {
  border-color: #dc3545;
}

.input-with-btn {
  display: flex;
  gap: 0.8rem;
}
.input-with-btn .form-control {
  flex: 1;
}
.input-with-btn .btn {
  white-space: nowrap;
  padding: 1.6rem;
}

.input-hint {
  display: block;
  font-size: 1.1rem;
  margin-top: 0.4rem;
  color: var(--text-muted, #6c757d);
}
.input-hint.success {
  color: #28a745;
}
.input-hint.error {
  color: #dc3545;
}

.member-type-selector {
  display: flex;
  gap: 0.8rem;
}

.type-option {
  flex: 1;
}
.type-option input[type=radio] {
  display: none;
}
.type-option .type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem;
  border: 2px solid var(--border-color, #dee2e6);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: var(--bg-secondary, #f8f9fa);
}
.type-option .type-card i {
  font-size: 2rem;
  color: var(--text-muted, #6c757d);
}
.type-option .type-card span {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-secondary, #6c757d);
}
.type-option input[type=radio]:checked + .type-card {
  border-color: var(--primary-color, #007bff);
  background: var(--primary-light, rgb(204, 228.6, 255));
}
.type-option input[type=radio]:checked + .type-card i,
.type-option input[type=radio]:checked + .type-card span {
  color: var(--primary-color, #007bff);
}

.business-section {
  background: var(--bg-secondary, #f8f9fa);
  padding: 1.6rem;
  border-radius: 0.4rem;
  margin-bottom: 1.6rem;
  border: 1px solid var(--border-color, #dee2e6);
}
.business-section .form-group {
  margin-bottom: 1.6rem;
}
.business-section .form-group:last-child {
  margin-bottom: 0;
}

.form-row {
  display: flex;
  gap: 0.8rem;
}
.form-row .form-group.half {
  flex: 1;
}

.agreement {
  background: var(--bg-secondary, #f8f9fa);
  padding: 1.6rem;
  border-radius: 0.4rem;
  margin-top: 2.4rem;
}
.agreement > .checkbox-label {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-color, #dee2e6);
  margin-bottom: 0.8rem;
}
.agreement .bold {
  font-weight: 600;
}

.agreement-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.agreement-items .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--text-secondary, #6c757d);
}
.checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-color, #007bff);
}
.checkbox-label .link-text {
  margin-left: auto;
  font-size: 1.1rem;
}

.link-text {
  color: var(--primary-color, #007bff);
  text-decoration: none;
}
.link-text:hover {
  text-decoration: underline;
}

.btn-block {
  width: 100%;
  padding: 1.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2.4rem;
}

.btn-secondary {
  background: var(--bg-secondary, #f8f9fa);
  color: var(--text-primary, #6c757d);
  border: 1px solid var(--border-color, #dee2e6);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn-secondary:hover {
  background: var(--border-color, #dee2e6);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color, #007bff);
  border: 2px solid var(--primary-color, #007bff);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: 0.8rem;
}
.btn-outline:hover {
  background: var(--primary-light, rgb(204, 228.6, 255));
}

.member-footer {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--border-color, #dee2e6);
  text-align: center;
}
.member-footer p {
  font-size: 1.4rem;
  color: var(--text-muted, #6c757d);
  margin-bottom: 0;
}

.hidden {
  display: none !important;
}

html.dark-mode .member-card {
  background: var(--bg-secondary, #343a40);
}
html.dark-mode .member-form .form-control {
  background: var(--bg-primary, rgb(40.5689655172, 45.25, 49.9310344828));
  border-color: var(--border-color, rgb(74.8620689655, 83.5, 92.1379310345));
  color: var(--text-primary, #ffffff);
}
html.dark-mode .agreement {
  background: var(--bg-primary, rgb(40.5689655172, 45.25, 49.9310344828));
}
html.dark-mode .type-card {
  background: var(--bg-primary, rgb(40.5689655172, 45.25, 49.9310344828));
  border-color: var(--border-color, rgb(74.8620689655, 83.5, 92.1379310345));
}
html.dark-mode .type-option input[type=radio]:checked + .type-card {
  background: rgba(99, 102, 241, 0.1);
}
html.dark-mode .business-section {
  background: var(--bg-primary, rgb(40.5689655172, 45.25, 49.9310344828));
  border-color: var(--border-color, rgb(74.8620689655, 83.5, 92.1379310345));
}

:root {
  --mp-sidebar-width: 280px;
  --mp-sidebar-bg: #fff;
  --mp-primary: #6366f1;
  --mp-primary-light: #eef2ff;
  --mp-text-primary: #1f2937;
  --mp-text-secondary: #6b7280;
  --mp-text-muted: #9ca3af;
  --mp-border: #e5e7eb;
  --mp-border-light: #f3f4f6;
  --mp-success: #10b981;
  --mp-warning: #f59e0b;
  --mp-danger: #ef4444;
  --mp-info: #3b82f6;
  --mp-radius: 12px;
  --mp-radius-sm: 8px;
  --mp-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --mp-shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --mp-transition: all 0.2s ease;
}

.mypage-layout {
  min-height: calc(100vh - 180px);
  background: #f8fafc;
}
.mypage-layout__container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px;
  gap: 32px;
}

.mypage-mobile-header {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--mp-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.mypage-mobile-header__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
.mypage-mobile-header__title h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--mp-text-primary);
  margin: 0;
}

.mypage-mobile-menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-sm);
  color: var(--mp-text-primary);
  cursor: pointer;
  transition: var(--mp-transition);
}
.mypage-mobile-menu-toggle:hover {
  background: var(--mp-border-light);
}

.mypage-quick-tabs {
  display: flex;
  padding: 0 12px 12px;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mypage-quick-tabs::-webkit-scrollbar {
  display: none;
}

.mypage-quick-tab {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  background: var(--mp-border-light);
  border: none;
  border-radius: var(--mp-radius-sm);
  text-decoration: none;
  color: var(--mp-text-secondary);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--mp-transition);
}
.mypage-quick-tab i {
  font-size: 16px;
}
.mypage-quick-tab:hover, .mypage-quick-tab.is-active {
  background: var(--mp-primary-light);
  color: var(--mp-primary);
}

.mypage-mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--mp-border);
  box-shadow: var(--mp-shadow);
  max-height: 70vh;
  overflow-y: auto;
  z-index: 99;
}
.mypage-mobile-dropdown.is-open {
  display: block;
}

.mypage-sidebar {
  width: var(--mp-sidebar-width);
  flex-shrink: 0;
  background: var(--mp-sidebar-bg);
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow-sm);
  border: 1px solid var(--mp-border);
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}
.mypage-sidebar__header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--mp-border);
}
.mypage-sidebar__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--mp-text-primary);
  margin: 0 0 12px 0;
}
.mypage-sidebar__user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mypage-sidebar__user .user-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--mp-text-primary);
}
.mypage-sidebar__user .user-grade {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--mp-primary-light);
  color: var(--mp-primary);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.mypage-sidebar__user .user-grade i {
  font-size: 10px;
}
.mypage-sidebar__nav {
  padding: 12px 0;
}

.mypage-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mypage-menu__item {
  border-bottom: 1px solid var(--mp-border-light);
}
.mypage-menu__item:last-child {
  border-bottom: none;
}
.mypage-menu__item.is-active > .mypage-menu__link,
.mypage-menu__item.is-active > .mypage-menu__toggle {
  background: var(--mp-primary-light);
  color: var(--mp-primary);
}
.mypage-menu__item.is-active > .mypage-menu__link i,
.mypage-menu__item.is-active > .mypage-menu__toggle i:first-child {
  color: var(--mp-primary);
}
.mypage-menu__item.is-open .mypage-menu__arrow {
  transform: rotate(180deg);
}
.mypage-menu__link, .mypage-menu__toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  text-align: left;
  text-decoration: none;
  color: var(--mp-text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--mp-transition);
}
.mypage-menu__link i:first-child, .mypage-menu__toggle i:first-child {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--mp-text-muted);
  transition: var(--mp-transition);
}
.mypage-menu__link span, .mypage-menu__toggle span {
  flex: 1;
}
.mypage-menu__link:hover, .mypage-menu__toggle:hover {
  background: var(--mp-border-light);
  color: var(--mp-text-primary);
}
.mypage-menu__link:hover i:first-child, .mypage-menu__toggle:hover i:first-child {
  color: var(--mp-primary);
}
.mypage-menu__arrow {
  font-size: 12px !important;
  width: auto !important;
  transition: transform 0.2s ease !important;
}
.mypage-menu--mobile .mypage-menu__link,
.mypage-menu--mobile .mypage-menu__toggle {
  padding: 14px 16px;
}
.mypage-menu--mobile .mypage-submenu__link {
  padding-left: 44px;
}

.mypage-submenu {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 0;
  background: var(--mp-border-light);
}
.mypage-submenu__item {
  padding: 0;
}
.mypage-submenu__item.is-active .mypage-submenu__link {
  color: var(--mp-primary);
  font-weight: 600;
}
.mypage-submenu__item--danger .mypage-submenu__link {
  color: var(--mp-danger);
}
.mypage-submenu__item--danger .mypage-submenu__link:hover {
  background: rgba(239, 68, 68, 0.05);
}
.mypage-submenu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 52px;
  text-decoration: none;
  color: var(--mp-text-secondary);
  font-size: 13px;
  transition: var(--mp-transition);
}
.mypage-submenu__link:hover {
  color: var(--mp-primary);
  background: rgba(99, 102, 241, 0.05);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--mp-border);
  color: var(--mp-text-secondary);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}
.badge--primary {
  background: var(--mp-primary-light);
  color: var(--mp-primary);
}
.badge--success {
  background: #dcfce7;
  color: var(--mp-success);
}
.badge--warning {
  background: #fef3c7;
  color: var(--mp-warning);
}
.badge--info {
  background: #dbeafe;
  color: var(--mp-info);
}

.mypage-menu-footer {
  padding: 16px 20px;
  background: var(--mp-border-light);
  border-top: 1px solid var(--mp-border);
}
.mypage-menu-footer__summary {
  display: flex;
  justify-content: space-around;
  gap: 16px;
}
.mypage-menu-footer__summary .summary-item {
  text-align: center;
}
.mypage-menu-footer__summary .summary-label {
  display: block;
  font-size: 12px;
  color: var(--mp-text-muted);
  margin-bottom: 4px;
}
.mypage-menu-footer__summary .summary-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--mp-text-primary);
}

.mypage-content {
  flex: 1;
  min-width: 0;
}
.mypage-content__inner {
  background: #fff;
  border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow-sm);
  border: 1px solid var(--mp-border);
  padding: 32px;
}

.mypage-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--mp-text-muted);
}
.mypage-breadcrumb a {
  text-decoration: none;
  color: var(--mp-text-secondary);
  transition: var(--mp-transition);
}
.mypage-breadcrumb a:hover {
  color: var(--mp-primary);
}
.mypage-breadcrumb .separator {
  font-size: 10px;
}
.mypage-breadcrumb .current {
  color: var(--mp-text-primary);
  font-weight: 500;
}

.mypage-dashboard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mypage-user-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, var(--mp-primary) 0%, #818cf8 100%);
  border-radius: var(--mp-radius);
  color: #fff;
}
.mypage-user-summary__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mypage-user-summary__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mypage-user-summary__avatar i {
  font-size: 32px;
}
.mypage-user-summary__info {
  flex: 1;
}
.mypage-user-summary__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.mypage-user-summary__grade {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}
.mypage-user-summary__benefits {
  display: flex;
  gap: 24px;
}
.mypage-user-summary__benefit {
  text-align: center;
}
.mypage-user-summary__benefit-label {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.mypage-user-summary__benefit-value {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.mypage-order-status {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
}
.mypage-order-status__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mp-text-primary);
  margin-bottom: 20px;
}
.mypage-order-status__grid {
  display: flex;
  justify-content: space-around;
  gap: 16px;
}
.mypage-order-status__item {
  flex: 1;
  text-align: center;
  padding: 16px;
  border-radius: var(--mp-radius-sm);
  transition: var(--mp-transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.mypage-order-status__item:hover {
  background: var(--mp-border-light);
}
.mypage-order-status__count {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--mp-primary);
  margin-bottom: 4px;
}
.mypage-order-status__label {
  display: block;
  font-size: 13px;
  color: var(--mp-text-secondary);
}
.mypage-order-status__arrow {
  display: none;
  font-size: 14px;
  color: var(--mp-text-muted);
  margin: 0 -8px;
}

.mypage-quick-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mypage-quick-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
  text-decoration: none;
  color: var(--mp-text-primary);
  transition: var(--mp-transition);
}
.mypage-quick-menu__item:hover {
  border-color: var(--mp-primary);
  background: var(--mp-primary-light);
  transform: translateY(-4px);
  box-shadow: var(--mp-shadow);
}
.mypage-quick-menu__item i {
  font-size: 28px;
  color: var(--mp-primary);
}
.mypage-quick-menu__item span {
  font-size: 14px;
  font-weight: 600;
}

.mypage-recent-orders {
  background: #fff;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius);
  overflow: hidden;
}
.mypage-recent-orders__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--mp-border);
}
.mypage-recent-orders__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--mp-text-primary);
  margin: 0;
}
.mypage-recent-orders__more {
  font-size: 13px;
  color: var(--mp-text-secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.mypage-recent-orders__more:hover {
  color: var(--mp-primary);
}
.mypage-recent-orders__list {
  padding: 0;
}
.mypage-recent-orders__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--mp-border-light);
}
.mypage-recent-orders__item:last-child {
  border-bottom: none;
}
.mypage-recent-orders__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--mp-radius-sm);
  background: var(--mp-border-light);
  overflow: hidden;
  flex-shrink: 0;
}
.mypage-recent-orders__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mypage-recent-orders__info {
  flex: 1;
  min-width: 0;
}
.mypage-recent-orders__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--mp-text-primary);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mypage-recent-orders__meta {
  font-size: 12px;
  color: var(--mp-text-muted);
}
.mypage-recent-orders__status {
  text-align: right;
}
.mypage-recent-orders__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.mypage-recent-orders__badge--pending {
  background: #fef3c7;
  color: #b45309;
}
.mypage-recent-orders__badge--paid {
  background: #dbeafe;
  color: #1d4ed8;
}
.mypage-recent-orders__badge--shipping {
  background: #dcfce7;
  color: #15803d;
}
.mypage-recent-orders__badge--completed {
  background: #e0e7ff;
  color: #4338ca;
}
.mypage-recent-orders__badge--cancelled {
  background: #fee2e2;
  color: #dc2626;
}
.mypage-recent-orders__empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--mp-text-muted);
}
.mypage-recent-orders__empty i {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.5;
}
.mypage-recent-orders__empty p {
  font-size: 14px;
}

@media (max-width: 1023px) {
  .mypage-mobile-header {
    display: block;
  }
  .mypage-sidebar {
    display: none;
  }
  .mypage-layout__container {
    padding: 20px 16px;
  }
  .mypage-content__inner {
    padding: 24px;
  }
  .mypage-breadcrumb {
    display: none;
  }
  .mypage-user-summary {
    flex-direction: column;
    text-align: center;
  }
  .mypage-user-summary__benefits {
    width: 100%;
    justify-content: center;
  }
  .mypage-quick-menu {
    grid-template-columns: repeat(2, 1fr);
  }
  .mypage-order-status__arrow {
    display: none;
  }
}
@media (max-width: 767px) {
  .mypage-layout__container {
    padding: 16px 12px;
  }
  .mypage-content__inner {
    padding: 20px 16px;
    border-radius: var(--mp-radius-sm);
  }
  .mypage-user-summary {
    padding: 20px;
  }
  .mypage-user-summary__avatar {
    width: 60px;
    height: 60px;
  }
  .mypage-user-summary__name {
    font-size: 18px;
  }
  .mypage-user-summary__benefits {
    flex-wrap: wrap;
    gap: 12px;
  }
  .mypage-user-summary__benefit {
    flex: 1;
    min-width: 80px;
  }
  .mypage-user-summary__benefit-value {
    font-size: 16px;
  }
  .mypage-order-status {
    padding: 16px;
  }
  .mypage-order-status__grid {
    gap: 8px;
  }
  .mypage-order-status__item {
    padding: 12px 8px;
  }
  .mypage-order-status__count {
    font-size: 22px;
  }
  .mypage-order-status__label {
    font-size: 12px;
  }
  .mypage-quick-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .mypage-quick-menu__item {
    padding: 20px 12px;
  }
  .mypage-quick-menu__item i {
    font-size: 24px;
  }
  .mypage-quick-menu__item span {
    font-size: 13px;
  }
  .mypage-recent-orders__header {
    padding: 16px;
  }
  .mypage-recent-orders__item {
    padding: 12px 16px;
  }
  .mypage-recent-orders__thumb {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 480px) {
  .mypage-quick-tabs {
    padding: 0 8px 8px;
    gap: 6px;
  }
  .mypage-quick-tab {
    padding: 8px 12px;
  }
  .mypage-quick-tab i {
    font-size: 14px;
  }
  .mypage-quick-tab span {
    font-size: 11px;
  }
  .mypage-order-status__grid {
    flex-wrap: wrap;
  }
  .mypage-order-status__item {
    flex: 1 1 45%;
  }
}
html.dark-mode {
  --mp-sidebar-bg: #1e293b;
  --mp-text-primary: #f1f5f9;
  --mp-text-secondary: #94a3b8;
  --mp-text-muted: #64748b;
  --mp-border: #334155;
  --mp-border-light: #1e293b;
  --mp-primary-light: rgba(99, 102, 241, 0.15);
}
html.dark-mode .mypage-layout {
  background: #0f172a;
}
html.dark-mode .mypage-mobile-header {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .mypage-sidebar {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .mypage-content__inner {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .mypage-order-status {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .mypage-quick-menu__item {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .mypage-quick-menu__item:hover {
  background: rgba(99, 102, 241, 0.15);
}
html.dark-mode .mypage-recent-orders {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .mypage-mobile-dropdown {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .mypage-submenu {
  background: #0f172a;
}

@media (hover: none) {
  .mypage-quick-menu__item:active {
    transform: scale(0.98);
  }
  .mypage-order-status__item:active {
    background: var(--mp-border-light);
  }
}
.mypage-menu__toggle:focus,
.mypage-menu__link:focus,
.mypage-submenu__link:focus {
  outline: 2px solid var(--mp-primary);
  outline-offset: -2px;
}

.mypage-quick-tab:focus {
  outline: 2px solid var(--mp-primary);
  outline-offset: 2px;
}

.mypage-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--mp-primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.2s;
}
.mypage-skip-link:focus {
  top: 0;
}

.notification-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.2rem 1.6rem;
}

.notification-header {
  text-align: center;
  margin-bottom: 3.2rem;
}
.notification-header .notification-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.8rem;
}
.notification-header .notification-desc {
  font-size: 1.6rem;
  color: #6c757d;
}

.notification-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
  padding: 1.6rem;
  background: #f8f9fa;
  border-radius: 0.8rem;
}
@media (max-width: 768px) {
  .notification-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

.notification-info {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.notification-info .total-count {
  font-size: 1.4rem;
  color: #6c757d;
}
.notification-info .total-count strong {
  color: var(--primary-color, #007bff);
  font-weight: 600;
}
.notification-info .unread-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgb(246.3607594937, 205.1392405063, 209.0886075949);
  color: #dc3545;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50rem;
}
.notification-info .unread-badge strong {
  font-weight: 700;
}

.notification-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .notification-actions {
    justify-content: flex-end;
  }
}

.filter-form {
  display: flex;
  gap: 0.8rem;
}

.filter-select {
  padding: 0.6rem 1rem;
  font-size: 1.4rem;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  background: #ffffff;
  cursor: pointer;
}
.filter-select:focus {
  outline: none;
  border-color: var(--primary-color, #007bff);
}

.notification-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.6rem;
  background: #ffffff;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.8rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.notification-item:hover {
  border-color: var(--primary-color, #007bff);
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
}
.notification-item.is-unread {
  background: rgb(198.7333333333, 241.2391304348, 247.9666666667);
  border-color: rgb(144.3333333333, 227.9347826087, 241.1666666667);
}
.notification-item.is-unread .notification-item-title {
  font-weight: 600;
}
.notification-item.is-read {
  opacity: 0.8;
}

.notification-icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
}
.notification-icon.system {
  background: rgb(167, 233.4782608696, 244);
  color: #17a2b8;
}
.notification-icon.order {
  background: rgb(195.7028985507, 240.7971014493, 206);
  color: #28a745;
}
.notification-icon.comment {
  background: rgb(178.5, 215.4, 255);
  color: #007bff;
}
.notification-icon.inquiry {
  background: rgb(255, 237.625, 185.5);
  color: #a07800;
}
.notification-icon.stock {
  background: rgb(202.1566523605, 205.9613733906, 209.3433476395);
  color: #6c757d;
}
.notification-icon.event {
  background: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  color: #dc3545;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-header-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.notification-type-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0.2rem;
}
.notification-type-badge.system {
  background: rgb(167, 233.4782608696, 244);
  color: #17a2b8;
}
.notification-type-badge.order {
  background: rgb(195.7028985507, 240.7971014493, 206);
  color: #28a745;
}
.notification-type-badge.comment {
  background: rgb(178.5, 215.4, 255);
  color: #007bff;
}
.notification-type-badge.inquiry {
  background: rgb(255, 237.625, 185.5);
  color: #a07800;
}
.notification-type-badge.stock {
  background: rgb(202.1566523605, 205.9613733906, 209.3433476395);
  color: #6c757d;
}
.notification-type-badge.event {
  background: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  color: #dc3545;
}

.important-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: #ffc107;
  color: rgb(58, 43.5, 0);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.2rem;
}

.notification-time {
  font-size: 1.1rem;
  color: #6c757d;
  margin-left: auto;
}

.notification-item-title {
  font-size: 1.6rem;
  color: #212529;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.notification-item-title .notification-link {
  color: inherit;
  text-decoration: none;
}
.notification-item-title .notification-link:hover {
  color: var(--primary-color, #007bff);
}
.notification-item-title .notification-text {
  color: inherit;
}

.notification-item-content {
  font-size: 1.4rem;
  color: #6c757d;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notification-status {
  flex-shrink: 0;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unread-dot {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--primary-color, #007bff);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.notification-empty {
  text-align: center;
  padding: 4.8rem 1.6rem;
  color: #6c757d;
}
.notification-empty i {
  font-size: 4.8rem;
  margin-bottom: 1.6rem;
  opacity: 0.5;
}
.notification-empty p {
  font-size: 1.6rem;
}

.notification-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 3.2rem;
}
.notification-pagination .page-btn {
  min-width: 3.6rem;
  height: 3.6rem;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  color: #6c757d;
  font-size: 1.4rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.notification-pagination .page-btn:hover {
  border-color: var(--primary-color, #007bff);
  color: var(--primary-color, #007bff);
}
.notification-pagination .page-btn.active {
  background: var(--primary-color, #007bff);
  border-color: var(--primary-color, #007bff);
  color: #ffffff;
}

.notification-settings-page {
  max-width: 70rem;
  margin: 0 auto;
  padding: 3.2rem 1.6rem;
}

.settings-header {
  text-align: center;
  margin-bottom: 2.4rem;
}
.settings-header .settings-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.8rem;
}
.settings-header .settings-desc {
  font-size: 1.6rem;
  color: #6c757d;
}

.settings-nav {
  margin-bottom: 2.4rem;
}
.settings-nav .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #6c757d;
  text-decoration: none;
  font-size: 1.4rem;
}
.settings-nav .btn-back:hover {
  color: var(--primary-color, #007bff);
}

.settings-section {
  background: #ffffff;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
  overflow: hidden;
}
.settings-section .section-header {
  padding: 2.4rem 1.6rem;
  border-bottom: 0.1rem solid #dee2e6;
  background: #f8f9fa;
}
.settings-section .section-header .section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.4rem;
}
.settings-section .section-header .section-desc {
  font-size: 1.4rem;
  color: #6c757d;
}

.settings-table-wrapper {
  overflow-x: auto;
}

.settings-table {
  width: 100%;
  border-collapse: collapse;
}
.settings-table th,
.settings-table td {
  padding: 1.6rem;
  text-align: center;
  border-bottom: 0.1rem solid #dee2e6;
}
.settings-table th {
  font-size: 1.4rem;
  font-weight: 600;
  color: #6c757d;
  background: #f8f9fa;
}
.settings-table .col-type {
  text-align: left;
  width: 40%;
}
.settings-table .col-toggle {
  width: 20%;
}
.settings-table tbody tr:last-child td {
  border-bottom: none;
}
.settings-table tbody tr:hover {
  background: #f8f9fa;
}

.type-info {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.type-info .type-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  font-size: 1.6rem;
}
.type-info .type-icon.system {
  background: rgb(167, 233.4782608696, 244);
  color: #17a2b8;
}
.type-info .type-icon.order {
  background: rgb(195.7028985507, 240.7971014493, 206);
  color: #28a745;
}
.type-info .type-icon.comment {
  background: rgb(178.5, 215.4, 255);
  color: #007bff;
}
.type-info .type-icon.inquiry {
  background: rgb(255, 237.625, 185.5);
  color: #a07800;
}
.type-info .type-icon.stock {
  background: rgb(202.1566523605, 205.9613733906, 209.3433476395);
  color: #6c757d;
}
.type-info .type-icon.event {
  background: rgb(250.1265822785, 226.8734177215, 229.1012658228);
  color: #dc3545;
}
.type-info .type-name {
  font-weight: 500;
  color: #212529;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 4.8rem;
  height: 2.4rem;
  cursor: pointer;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--primary-color, #007bff);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(2.4rem);
}
.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.2);
}
.toggle-switch .toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #dee2e6;
  border-radius: 50rem;
  transition: all 0.2s ease-in-out;
}
.toggle-switch .toggle-slider::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 2rem;
  height: 2rem;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
}

.quick-settings {
  padding: 2.4rem;
}
.quick-settings .quick-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quick-settings .quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.settings-footer {
  display: flex;
  justify-content: center;
  padding: 2.4rem;
  background: #f8f9fa;
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
}

.settings-notice {
  padding: 1.6rem;
  background: rgb(189.6666666667, 239.0217391304, 246.8333333333);
  border: 0.1rem solid rgb(144.3333333333, 227.9347826087, 241.1666666667);
  border-radius: 0.8rem;
}
.settings-notice h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #17a2b8;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.settings-notice ul {
  margin: 0;
  padding-left: 2rem;
  font-size: 1.4rem;
  color: #6c757d;
  line-height: 1.75;
}
.settings-notice ul li {
  margin-bottom: 0.4rem;
}
.settings-notice ul li:last-child {
  margin-bottom: 0;
}
.settings-notice ul strong {
  color: #212529;
}

@media (max-width: 768px) {
  .notification-page,
  .notification-settings-page {
    padding: 1.6rem;
  }
  .notification-header,
  .settings-header {
    margin-bottom: 2.4rem;
  }
  .notification-header .notification-title,
  .notification-header .settings-title,
  .settings-header .notification-title,
  .settings-header .settings-title {
    font-size: 2.4rem;
  }
  .notification-item {
    flex-wrap: wrap;
  }
  .notification-item .notification-icon {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
  }
  .notification-time {
    width: 100%;
    margin-left: 0;
    margin-top: 0.8rem;
  }
  .settings-table th,
  .settings-table td {
    padding: 0.8rem;
    font-size: 1.1rem;
  }
  .settings-table .col-type {
    width: 30%;
  }
  .settings-table .type-info {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .settings-table .type-info .type-icon {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.4rem;
  }
  .settings-table .type-info .type-name {
    font-size: 1.1rem;
  }
  .toggle-switch {
    width: 4rem;
    height: 2rem;
  }
  .toggle-switch .toggle-slider::before {
    width: 1.6rem;
    height: 1.6rem;
  }
  .toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(2rem);
  }
  .quick-settings .quick-buttons {
    flex-direction: column;
  }
  .quick-settings .quick-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}
.status-label--spaced {
  margin-left: 16px;
}

.section-title--spaced {
  margin-top: 24px;
}

.point-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 20px;
}

.point-header {
  margin-bottom: 24px;
}
.point-header h2 {
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}
.point-header p {
  color: #6b7280;
  font-size: 14px;
}

.point-balance-card {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}
.point-balance-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.point-balance-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.point-balance__label {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.point-balance__amount {
  font-size: clamp(40px, 8vw, 56px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.point-balance__amount small {
  font-size: 24px;
  font-weight: 600;
}
.point-balance__info {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.point-balance__info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.point-balance__info-item .label {
  font-size: 12px;
  opacity: 0.8;
}
.point-balance__info-item .value {
  font-size: 18px;
  font-weight: 700;
}
.point-balance__info-item.pending .value {
  color: #fbbf24;
}

.point-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: #f3f4f6;
  padding: 6px;
  border-radius: 12px;
}

.point-tab {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  text-align: center;
}
.point-tab:hover {
  color: #1f2937;
}
.point-tab.active {
  background: #fff;
  color: #6366f1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.point-history {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.point-date-group {
  border-bottom: 1px solid #e5e7eb;
}
.point-date-group:last-child {
  border-bottom: none;
}

.point-date-header {
  padding: 14px 20px;
  background: #f9fafb;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  position: sticky;
  top: 0;
  z-index: 1;
}

.point-items {
  padding: 0;
}

.point-item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.2s;
}
.point-item:last-child {
  border-bottom: none;
}
.point-item:hover {
  background: #fafafa;
}
.point-item__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-right: 16px;
}
.point-item__icon.earn {
  background: #dbeafe;
  color: #2563eb;
}
.point-item__icon.use {
  background: #fee2e2;
  color: #dc2626;
}
.point-item__icon.expire {
  background: #f3f4f6;
  color: #9ca3af;
}
.point-item__icon.pending {
  background: #fef3c7;
  color: #d97706;
}
.point-item__info {
  flex: 1;
  min-width: 0;
}
.point-item__title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px 0;
  line-height: 1.4;
}
.point-item__desc {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.point-item__desc time {
  color: #9ca3af;
}
.point-item__order {
  color: #6366f1;
  cursor: pointer;
}
.point-item__order:hover {
  text-decoration: underline;
}
.point-item__amount {
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: 16px;
}
.point-item__amount.earn {
  color: #2563eb;
}
.point-item__amount.earn::before {
  content: "+";
}
.point-item__amount.use {
  color: #dc2626;
}
.point-item__amount.use::before {
  content: "-";
}
.point-item__amount.expire {
  color: #9ca3af;
  text-decoration: line-through;
}
.point-item__amount.pending {
  color: #d97706;
}
.point-item__amount.pending::before {
  content: "+";
}

.point-pending-section {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}
.point-pending-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.point-pending-section h3 i {
  color: #f59e0b;
}

.point-pending-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.point-pending-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border-radius: 10px;
}
.point-pending-item__info {
  flex: 1;
}
.point-pending-item__title {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin: 0 0 4px 0;
}
.point-pending-item__date {
  font-size: 12px;
  color: #92400e;
  margin: 0;
}
.point-pending-item__amount {
  font-size: 16px;
  font-weight: 700;
  color: #d97706;
}
.point-pending-item__amount::before {
  content: "+";
}

.point-summary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.point-summary-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.point-summary-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
}
.point-summary-card__icon.earn {
  background: #dbeafe;
  color: #2563eb;
}
.point-summary-card__icon.use {
  background: #fee2e2;
  color: #dc2626;
}
.point-summary-card__icon.expire {
  background: #f3f4f6;
  color: #9ca3af;
}
.point-summary-card__label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}
.point-summary-card__value {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}
.point-summary-card__value.earn {
  color: #2563eb;
}
.point-summary-card__value.use {
  color: #dc2626;
}

.point-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}
.point-filter__period {
  display: flex;
  gap: 8px;
}
.point-filter__search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.point-filter__search input {
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  width: 200px;
}
.point-filter__search input:focus {
  outline: none;
  border-color: #6366f1;
}

.period-btn {
  padding: 8px 16px;
  background: #f3f4f6;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.period-btn:hover {
  background: #e5e7eb;
  color: #1f2937;
}
.period-btn.active {
  background: #6366f1;
  color: #fff;
}

.point-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}
.point-empty i {
  font-size: 48px;
  margin-bottom: 16px;
  color: #d1d5db;
}
.point-empty p {
  font-size: 14px;
  margin: 0;
}

.point-load-more {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
}

.btn-load-more {
  padding: 12px 32px;
  background: #f3f4f6;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-load-more:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.point-notice {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}
.point-notice h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 12px 0;
}
.point-notice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.point-notice li {
  font-size: 13px;
  color: #6b7280;
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}
.point-notice li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #d1d5db;
  border-radius: 50%;
}

@media (max-width: 1023px) {
  .point-balance__info {
    gap: 20px;
  }
  .point-summary-cards {
    gap: 12px;
  }
  .point-summary-card {
    padding: 16px;
  }
  .point-summary-card__value {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .point-page {
    padding: 20px 16px;
  }
  .point-balance-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .point-balance__amount {
    font-size: 36px;
  }
  .point-balance__amount small {
    font-size: 18px;
  }
  .point-balance__info {
    flex-direction: column;
    gap: 12px;
  }
  .point-balance__info-item {
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .point-balance__info-item:first-child {
    border-top: none;
    padding-top: 0;
  }
  .point-balance__info-item .label {
    font-size: 13px;
  }
  .point-balance__info-item .value {
    font-size: 16px;
  }
  .point-tabs {
    padding: 4px;
  }
  .point-tab {
    padding: 10px 12px;
    font-size: 13px;
  }
  .point-summary-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .point-summary-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 16px;
    gap: 16px;
  }
  .point-summary-card__icon {
    margin: 0;
    flex-shrink: 0;
  }
  .point-summary-card__content {
    flex: 1;
  }
  .point-summary-card__value {
    font-size: 18px;
  }
  .point-filter {
    flex-direction: column;
    align-items: stretch;
  }
  .point-filter__period {
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .point-filter__search {
    width: 100%;
  }
  .point-filter__search input {
    width: 100%;
  }
  .period-btn {
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 12px;
  }
  .point-date-header {
    padding: 12px 16px;
    font-size: 12px;
  }
  .point-item {
    padding: 14px 16px;
  }
  .point-item__icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-right: 12px;
  }
  .point-item__title {
    font-size: 13px;
  }
  .point-item__desc {
    font-size: 11px;
    flex-wrap: wrap;
  }
  .point-item__amount {
    font-size: 14px;
    margin-left: 12px;
  }
  .point-pending-section {
    padding: 16px;
  }
  .point-pending-section h3 {
    font-size: 15px;
  }
  .point-pending-item {
    padding: 12px;
  }
  .point-pending-item__title {
    font-size: 13px;
  }
  .point-pending-item__amount {
    font-size: 14px;
  }
  .point-empty {
    padding: 40px 16px;
  }
  .point-empty i {
    font-size: 40px;
  }
  .point-notice {
    padding: 16px;
  }
  .point-notice li {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .point-balance__amount {
    font-size: 32px;
  }
  .point-balance__amount small {
    font-size: 16px;
  }
  .point-item__icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
  }
  .point-item__title {
    font-size: 12px;
  }
  .point-item__amount {
    font-size: 13px;
  }
}
html.dark-mode .point-page {
  background: #0f172a;
}
html.dark-mode .point-header h2 {
  color: #f1f5f9;
}
html.dark-mode .point-header p {
  color: #94a3b8;
}
html.dark-mode .point-tabs {
  background: #1e293b;
}
html.dark-mode .point-tab {
  color: #94a3b8;
}
html.dark-mode .point-tab:hover {
  color: #f1f5f9;
}
html.dark-mode .point-tab.active {
  background: #334155;
  color: #6366f1;
}
html.dark-mode .point-summary-card {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .point-summary-card__value {
  color: #f1f5f9;
}
html.dark-mode .point-history {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .point-date-group {
  border-color: #334155;
}
html.dark-mode .point-date-header {
  background: #0f172a;
  color: #94a3b8;
}
html.dark-mode .point-item {
  border-color: #334155;
}
html.dark-mode .point-item:hover {
  background: #0f172a;
}
html.dark-mode .point-item__title {
  color: #f1f5f9;
}
html.dark-mode .point-item__desc {
  color: #64748b;
}
html.dark-mode .point-item__icon.earn {
  background: #1e3a5f;
  color: #60a5fa;
}
html.dark-mode .point-item__icon.use {
  background: #450a0a;
  color: #fca5a5;
}
html.dark-mode .point-item__icon.expire {
  background: #1e293b;
  color: #64748b;
}
html.dark-mode .point-item__icon.pending {
  background: #451a03;
  color: #fbbf24;
}
html.dark-mode .point-pending-section {
  background: #451a03;
  border-color: #92400e;
}
html.dark-mode .point-pending-section h3 {
  color: #fbbf24;
}
html.dark-mode .point-pending-item {
  background: #1e293b;
}
html.dark-mode .point-pending-item__title {
  color: #f1f5f9;
}
html.dark-mode .point-filter__period .period-btn {
  background: #1e293b;
  color: #94a3b8;
}
html.dark-mode .point-filter__period .period-btn:hover {
  background: #334155;
  color: #f1f5f9;
}
html.dark-mode .point-filter__search input {
  background: #1e293b;
  border-color: #334155;
  color: #f1f5f9;
}
html.dark-mode .point-notice {
  background: #1e293b;
}
html.dark-mode .point-notice h4 {
  color: #f1f5f9;
}
html.dark-mode .point-notice li {
  color: #94a3b8;
}
html.dark-mode .point-notice li::before {
  background: #64748b;
}
html.dark-mode .btn-load-more {
  background: #334155;
  color: #94a3b8;
}
html.dark-mode .btn-load-more:hover {
  background: #475569;
  color: #f1f5f9;
}

@media (hover: none) {
  .point-item:active {
    background: #f3f4f6;
  }
  .period-btn:active,
  .btn-load-more:active {
    transform: scale(0.98);
  }
}
@media print {
  .point-balance-card {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    border: 2px solid #000;
  }
  .point-balance-card::before, .point-balance-card::after {
    display: none;
  }
  .point-history {
    box-shadow: none !important;
  }
  .point-item {
    page-break-inside: avoid;
  }
  .point-filter,
  .btn-load-more {
    display: none !important;
  }
}
.product-list-page {
  padding: 40px 0 80px;
}
.product-list-page .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}
.product-list-page .page-header h1 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin: 0;
}
.product-list-page .page-header .view-options {
  display: flex;
  gap: 10px;
}
.product-list-page .page-header .view-options .icon-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-list-page .page-header .view-options .icon-btn .icon {
  width: 20px;
  height: 20px;
  color: #666;
}
.product-list-page .page-header .view-options .icon-btn.active, .product-list-page .page-header .view-options .icon-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
}
.product-list-page .page-header .view-options .icon-btn.active .icon, .product-list-page .page-header .view-options .icon-btn:hover .icon {
  color: white;
}
.product-list-page .filter-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .product-list-page .filter-section {
    grid-template-columns: 1fr;
  }
}
.product-list-page .filter-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}
.product-list-page .filter-section .category-filter .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-list-page .filter-section .category-filter .category-list .category-btn {
  padding: 8px 20px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 20px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-list-page .filter-section .category-filter .category-list .category-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.product-list-page .filter-section .category-filter .category-list .category-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.product-list-page .filter-section .price-filter .price-range input[type=range] {
  width: 100%;
  margin-bottom: 15px;
}
.product-list-page .filter-section .price-filter .price-range .price-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
}
.product-list-page .filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}
.product-list-page .filter-bar .filter-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.product-list-page .filter-bar .filter-left .result-count {
  font-size: 0.95rem;
  color: #666;
}
.product-list-page .filter-bar .filter-left .result-count strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}
.product-list-page .filter-bar .filter-left .filter-tags {
  display: flex;
  gap: 10px;
}
.product-list-page .filter-bar .filter-left .filter-tags .filter-tag {
  padding: 5px 15px;
  background: #f0f0f0;
  border-radius: 15px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-list-page .filter-bar .filter-left .filter-tags .filter-tag .remove-tag {
  cursor: pointer;
  font-weight: bold;
  color: #999;
}
.product-list-page .filter-bar .filter-left .filter-tags .filter-tag .remove-tag:hover {
  color: #333;
}
.product-list-page .filter-bar .sort-select {
  padding: 8px 35px 8px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  font-size: 0.95rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 10px center;
  background-size: 16px;
}
.product-list-page .filter-bar .sort-select:focus {
  outline: none;
  border-color: var(--primary-color);
}
.product-list-page .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.product-list-page .product-grid[data-view=list] {
  grid-template-columns: 1fr;
}
.product-list-page .product-grid[data-view=list] .product-card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 20px;
  align-items: center;
}
.product-list-page .product-grid[data-view=list] .product-card .product-image {
  height: 150px;
}
.product-list-page .product-grid[data-view=list] .product-card .product-actions {
  flex-direction: column;
  gap: 10px;
}
.product-list-page .product-grid .product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.product-list-page .product-grid .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.product-list-page .product-grid .product-card:hover .product-image img {
  transform: scale(1.1);
}
.product-list-page .product-grid .product-card a {
  text-decoration: none;
  color: inherit;
}
.product-list-page .product-grid .product-card .product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f8f9fa;
}
.product-list-page .product-grid .product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-list-page .product-grid .product-card .product-image .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-list-page .product-grid .product-card .product-image .badge.badge-sale {
  background: #e74c3c;
  color: white;
}
.product-list-page .product-grid .product-card .product-image .badge.badge-new {
  background: #27ae60;
  color: white;
}
.product-list-page .product-grid .product-card .product-info {
  padding: 20px;
}
.product-list-page .product-grid .product-card .product-info .product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-list-page .product-grid .product-card .product-info .product-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-list-page .product-grid .product-card .product-info .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.product-list-page .product-grid .product-card .product-info .product-rating .stars {
  display: flex;
  gap: 2px;
}
.product-list-page .product-grid .product-card .product-info .product-rating .stars .star {
  width: 16px;
  height: 16px;
  color: #ddd;
}
.product-list-page .product-grid .product-card .product-info .product-rating .stars .star.filled {
  color: #ffc107;
}
.product-list-page .product-grid .product-card .product-info .product-rating .rating-count {
  font-size: 0.85rem;
  color: #999;
}
.product-list-page .product-grid .product-card .product-info .product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-list-page .product-grid .product-card .product-info .product-price .original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}
.product-list-page .product-grid .product-card .product-info .product-price .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
}
.product-list-page .product-grid .product-card .product-actions {
  padding: 0 20px 20px;
  display: flex;
  gap: 10px;
}
.product-list-page .product-grid .product-card .product-actions .btn-wishlist {
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-list-page .product-grid .product-card .product-actions .btn-wishlist .icon {
  width: 20px;
  height: 20px;
  color: #666;
}
.product-list-page .product-grid .product-card .product-actions .btn-wishlist:hover, .product-list-page .product-grid .product-card .product-actions .btn-wishlist.active {
  border-color: #e74c3c;
  background: #e74c3c;
}
.product-list-page .product-grid .product-card .product-actions .btn-wishlist:hover .icon, .product-list-page .product-grid .product-card .product-actions .btn-wishlist.active .icon {
  color: white;
}
.product-list-page .product-grid .product-card .product-actions .btn-cart {
  flex: 1;
  padding: 12px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-list-page .product-grid .product-card .product-actions .btn-cart .icon {
  width: 18px;
  height: 18px;
}
.product-list-page .product-grid .product-card .product-actions .btn-cart:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.product-list-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.product-list-page .pagination .page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-list-page .pagination .page-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.product-list-page .pagination .page-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}
.product-list-page .pagination .page-btn.page-prev .icon, .product-list-page .pagination .page-btn.page-next .icon {
  width: 16px;
  height: 16px;
}
.product-list-page .pagination .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .product-list-page .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  .product-list-page .filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .product-list-page .filter-bar .filter-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .product-list-page .product-grid {
    grid-template-columns: 1fr;
  }
}
.count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  margin-left: 6px;
  background: #007aff;
  color: white;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.inquiry-section {
  padding: 30px 0;
}
.inquiry-section .inquiry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.inquiry-section .inquiry-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
.inquiry-section .inquiry-header .btn-inquiry-write {
  padding: 10px 24px;
  background: #007aff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}
.inquiry-section .inquiry-header .btn-inquiry-write:hover {
  background: rgb(0, 97.6, 204);
}
.inquiry-section .inquiry-notice {
  padding: 16px 20px;
  background: #f2f2f7;
  border-radius: 8px;
  margin-bottom: 24px;
}
.inquiry-section .inquiry-notice ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.inquiry-section .inquiry-notice ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #666;
}
.inquiry-section .inquiry-notice ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8e8e93;
}
.inquiry-section .inquiry-notice ul li:last-child {
  margin-bottom: 0;
}

.inquiry-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #333;
}
.inquiry-table thead tr {
  background: #fafafa;
}
.inquiry-table thead th {
  padding: 14px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #e5e5ea;
  color: #333;
}
.inquiry-table tbody .inquiry-row {
  cursor: pointer;
  transition: background 0.2s ease;
}
.inquiry-table tbody .inquiry-row:hover {
  background: #f8f9fa;
}
.inquiry-table tbody .inquiry-row td {
  padding: 16px 12px;
  border-bottom: 1px solid #e5e5ea;
  text-align: center;
  font-size: 0.95rem;
}
.inquiry-table tbody .inquiry-row .col-title {
  text-align: left;
}
.inquiry-table tbody .inquiry-row .col-title .icon-lock {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  vertical-align: middle;
}
.inquiry-table tbody .inquiry-row .col-title .title-text {
  vertical-align: middle;
}
.inquiry-table tbody .answer-row td {
  padding: 0;
  background: #f8f9fa;
}
.inquiry-table tbody .answer-row .answer-content {
  padding: 20px 24px;
  margin: 0 20px 16px;
  background: white;
  border-radius: 8px;
  border-left: 3px solid #007aff;
  font-size: 0.95rem;
  line-height: 1.6;
}
.inquiry-table .col-status {
  width: 100px;
}
.inquiry-table .col-author {
  width: 100px;
}
.inquiry-table .col-date {
  width: 120px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}
.status-badge.waiting {
  background: rgb(255, 223.2, 178.5);
  color: rgb(153, 89.4, 0);
}
.status-badge.answered {
  background: rgb(211.3944223108, 243.6055776892, 219.5019920319);
  color: rgb(30.8685258964, 118.1314741036, 52.8326693227);
}

.loading-spinner {
  padding: 40px;
  text-align: center;
  color: #8e8e93;
}

.no-data {
  padding: 60px 20px;
  text-align: center;
  color: #8e8e93;
  font-size: 0.95rem;
}
.no-data .no-data-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: #f2f2f7;
  border-radius: 50%;
}
.no-data .btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: #007aff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s ease;
}
.no-data .btn-primary:hover {
  background: rgb(0, 97.6, 204);
}

.inquiry-pagination {
  margin-top: 30px;
}
.inquiry-pagination .pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.inquiry-pagination .pagination .page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e5e5ea;
  background: white;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.inquiry-pagination .pagination .page-btn:hover {
  border-color: #007aff;
  color: #007aff;
}
.inquiry-pagination .pagination .page-btn.active {
  background: #007aff;
  border-color: #007aff;
  color: white;
}
.inquiry-pagination .pagination .page-btn.prev, .inquiry-pagination .pagination .page-btn.next {
  padding: 0 14px;
}

.inquiry-form .form-group {
  margin-bottom: 20px;
}
.inquiry-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}
.inquiry-form .form-group label .required {
  color: #ff3b30;
}
.inquiry-form .form-group .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e5ea;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.inquiry-form .form-group .form-control:focus {
  outline: none;
  border-color: #007aff;
}
.inquiry-form .form-group select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.inquiry-form .form-group textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.inquiry-form .form-group.form-inline .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}
.inquiry-form .form-group.form-inline .checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #007aff;
}

.inquiry-detail-modal .inquiry-info {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.inquiry-detail-modal .inquiry-info .inquiry-type {
  padding: 4px 10px;
  background: #f2f2f7;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #666;
}
.inquiry-detail-modal .inquiry-info .inquiry-status {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
}
.inquiry-detail-modal .inquiry-info .inquiry-status.waiting {
  background: rgb(255, 223.2, 178.5);
  color: rgb(153, 89.4, 0);
}
.inquiry-detail-modal .inquiry-info .inquiry-status.answered {
  background: rgb(211.3944223108, 243.6055776892, 219.5019920319);
  color: rgb(30.8685258964, 118.1314741036, 52.8326693227);
}
.inquiry-detail-modal .inquiry-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.inquiry-detail-modal .inquiry-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #8e8e93;
}
.inquiry-detail-modal .inquiry-content {
  padding: 20px;
  background: #f2f2f7;
  border-radius: 8px;
  line-height: 1.7;
  white-space: pre-wrap;
}
.inquiry-detail-modal .answer-section {
  margin-top: 24px;
  padding: 20px;
  background: rgb(229.5, 241.7, 255);
  border-radius: 8px;
  border-left: 3px solid #007aff;
}
.inquiry-detail-modal .answer-section h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #007aff;
}
.inquiry-detail-modal .answer-section .answer-meta {
  font-size: 0.85rem;
  color: #8e8e93;
  margin-bottom: 12px;
}
.inquiry-detail-modal .answer-section .answer-body {
  line-height: 1.7;
  white-space: pre-wrap;
}

.my-inquiry-page {
  padding: 40px 0 80px;
}
.my-inquiry-page .page-header {
  margin-bottom: 30px;
}
.my-inquiry-page .page-header .page-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.my-inquiry-page .page-header .page-desc {
  font-size: 0.95rem;
  color: #8e8e93;
}
.my-inquiry-page .filter-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: #f2f2f7;
  border-radius: 8px;
}
.my-inquiry-page .filter-section .filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.my-inquiry-page .filter-section .filter-group label {
  font-size: 0.95rem;
  font-weight: 500;
}
.my-inquiry-page .filter-section .filter-group .form-control {
  min-width: 140px;
  padding: 8px 12px;
  border: 1px solid #e5e5ea;
  border-radius: 6px;
  font-size: 0.9rem;
}
.my-inquiry-page .filter-section .total-count {
  font-size: 0.95rem;
  color: #666;
}
.my-inquiry-page .filter-section .total-count strong {
  color: #007aff;
}
.my-inquiry-page .inquiry-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.my-inquiry-page .inquiry-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  padding: 20px;
  background: white;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  transition: box-shadow 0.2s ease;
}
.my-inquiry-page .inquiry-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.my-inquiry-page .inquiry-card .product-info .product-thumb {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #f2f2f7;
  margin-bottom: 10px;
}
.my-inquiry-page .inquiry-card .product-info .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-inquiry-page .inquiry-card .product-info .product-thumb .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.8rem;
  color: #8e8e93;
}
.my-inquiry-page .inquiry-card .product-info .product-name a {
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.my-inquiry-page .inquiry-card .product-info .product-name a:hover {
  color: #007aff;
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-header {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-header .inquiry-type {
  padding: 3px 8px;
  background: #f2f2f7;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #666;
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-header .secret-badge {
  padding: 3px 8px;
  background: #fef3cd;
  color: #856404;
  border-radius: 4px;
  font-size: 0.8rem;
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-header .status-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-header .status-badge.waiting {
  background: rgb(255, 223.2, 178.5);
  color: rgb(153, 89.4, 0);
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-header .status-badge.answered {
  background: rgb(211.3944223108, 243.6055776892, 219.5019920319);
  color: rgb(30.8685258964, 118.1314741036, 52.8326693227);
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-body {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.my-inquiry-page .inquiry-card .inquiry-content .inquiry-meta {
  font-size: 0.85rem;
  color: #8e8e93;
}
.my-inquiry-page .inquiry-card .inquiry-content .answer-section {
  margin-top: 16px;
  padding: 16px;
  background: rgb(229.5, 241.7, 255);
  border-radius: 8px;
  border-left: 3px solid #007aff;
}
.my-inquiry-page .inquiry-card .inquiry-content .answer-section .answer-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.my-inquiry-page .inquiry-card .inquiry-content .answer-section .answer-header .answer-label {
  font-weight: 600;
  color: #007aff;
  font-size: 0.9rem;
}
.my-inquiry-page .inquiry-card .inquiry-content .answer-section .answer-header .answer-date {
  font-size: 0.85rem;
  color: #8e8e93;
}
.my-inquiry-page .inquiry-card .inquiry-content .answer-section .answer-body {
  font-size: 0.9rem;
  line-height: 1.6;
}
.my-inquiry-page .inquiry-card .inquiry-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-start;
}
.my-inquiry-page .inquiry-card .inquiry-actions button {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.my-inquiry-page .inquiry-card .inquiry-actions .btn-edit {
  border: 1px solid #e5e5ea;
  background: white;
}
.my-inquiry-page .inquiry-card .inquiry-actions .btn-edit:hover {
  border-color: #007aff;
  color: #007aff;
}
.my-inquiry-page .inquiry-card .inquiry-actions .btn-delete {
  border: 1px solid #ff3b30;
  background: white;
  color: #ff3b30;
}
.my-inquiry-page .inquiry-card .inquiry-actions .btn-delete:hover {
  background: #ff3b30;
  color: white;
}
.my-inquiry-page .pagination-wrap {
  margin-top: 40px;
}
.my-inquiry-page .pagination-wrap .pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.my-inquiry-page .pagination-wrap .pagination li.active .page-link {
  background: #007aff;
  border-color: #007aff;
  color: white;
}
.my-inquiry-page .pagination-wrap .pagination .page-link {
  display: block;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #e5e5ea;
  background: white;
  border-radius: 6px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}
.my-inquiry-page .pagination-wrap .pagination .page-link:hover {
  border-color: #007aff;
  color: #007aff;
}

@media (max-width: 768px) {
  .inquiry-table {
    display: block;
    overflow-x: auto;
  }
  .inquiry-table .col-author,
  .inquiry-table .col-date {
    display: none;
  }
  .inquiry-table .col-status {
    width: 80px;
  }
  .my-inquiry-page .inquiry-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .my-inquiry-page .inquiry-card .product-info {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .my-inquiry-page .inquiry-card .product-info .product-thumb {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }
  .my-inquiry-page .inquiry-card .inquiry-actions {
    flex-direction: row;
    justify-content: flex-end;
  }
  .my-inquiry-page .filter-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.review-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 20px;
}

.review-header {
  margin-bottom: 24px;
}
.review-header h2 {
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 8px 0;
}
.review-header p {
  color: #6b7280;
  font-size: 14px;
}

.review-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.review-tab {
  padding: 10px 20px;
  background: #f3f4f6;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}
.review-tab:hover {
  background: #e5e7eb;
  color: #1f2937;
}
.review-tab.active {
  background: #6366f1;
  color: #fff;
}

.review-summary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.review-summary__score {
  text-align: center;
  padding-right: 32px;
  border-right: 1px solid #e5e7eb;
}
.review-summary__number {
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
}
.review-summary__stars {
  margin: 8px 0;
}
.review-summary__count {
  font-size: 13px;
  color: #6b7280;
}
.review-summary__bars {
  flex: 1;
}

.review-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.review-bar:last-child {
  margin-bottom: 0;
}
.review-bar__label {
  font-size: 13px;
  color: #6b7280;
  width: 40px;
  flex-shrink: 0;
}
.review-bar__track {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}
.review-bar__fill {
  height: 100%;
  background: #fbbf24;
  border-radius: 4px;
  transition: width 0.3s ease;
}
.review-bar__count {
  font-size: 12px;
  color: #9ca3af;
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}

.star-rating {
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
  color: #fbbf24;
}
.star-rating .empty {
  color: #d1d5db;
}
.star-rating--small {
  font-size: 14px;
}
.star-rating--large {
  font-size: 24px;
  gap: 4px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.review-card__user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-card__name {
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #9ca3af;
}
.review-card__date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.review-card__date time {
  font-size: 12px;
  color: #9ca3af;
}
.review-card__product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 10px;
  margin-bottom: 16px;
}
.review-card__product-image {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.review-card__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__product-info {
  flex: 1;
  min-width: 0;
}
.review-card__product-name {
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
  margin: 0 0 4px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-card__product-option {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}
.review-card__content {
  margin-bottom: 16px;
}
.review-card__text {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
.review-card__images {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.review-card__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s;
}
.review-card__image:hover {
  transform: scale(1.05);
}
.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__actions {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.review-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: transparent;
  border: none;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}
.review-action-btn:hover {
  background: #f3f4f6;
  color: #1f2937;
}
.review-action-btn.liked {
  color: #ef4444;
}
.review-action-btn i {
  font-size: 16px;
}

.review-form-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
.review-form-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
}

.rating-input {
  margin-bottom: 20px;
}
.rating-input label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}

.star-input {
  display: inline-flex;
  gap: 4px;
  direction: rtl;
}
.star-input input {
  display: none;
}
.star-input label {
  font-size: 32px;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s;
  margin: 0;
}
.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label {
  color: #fbbf24;
}

.review-textarea {
  width: 100%;
  min-height: 150px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.review-textarea:focus {
  outline: none;
  border-color: #6366f1;
}
.review-textarea::placeholder {
  color: #9ca3af;
}

.textarea-counter {
  text-align: right;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
}

.image-upload {
  margin-top: 20px;
}
.image-upload label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 10px;
}
.image-upload__area {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.image-upload__btn {
  width: 100px;
  height: 100px;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  background: #f9fafb;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}
.image-upload__btn:hover {
  border-color: #6366f1;
  background: #eef2ff;
}
.image-upload__btn i {
  font-size: 24px;
  color: #9ca3af;
}
.image-upload__btn span {
  font-size: 11px;
  color: #9ca3af;
}
.image-upload__btn input {
  display: none;
}

.image-preview {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-preview__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.image-preview__remove:hover {
  background: rgba(239, 68, 68, 0.8);
}

.review-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.my-review-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
}
.my-review-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 20px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.my-review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.my-review-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}
.my-review-item__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.my-review-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-review-item__content {
  flex: 1;
  min-width: 0;
}
.my-review-item__product {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 6px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.my-review-item__rating {
  margin-bottom: 6px;
}
.my-review-item__text {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.my-review-item__date {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
}
.my-review-item__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.my-review-item__actions .btn {
  padding: 6px 12px;
  font-size: 12px;
}

.image-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.image-viewer.active {
  opacity: 1;
  visibility: visible;
}
.image-viewer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.image-viewer__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.image-viewer img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.review-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}
.review-empty i {
  font-size: 48px;
  margin-bottom: 16px;
  color: #d1d5db;
}
.review-empty p {
  font-size: 14px;
  margin: 0 0 20px 0;
}

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn--primary {
  background: #6366f1;
  color: #fff;
}
.btn--primary:hover {
  background: #4f46e5;
}
.btn--secondary {
  background: #f3f4f6;
  color: #374151;
}
.btn--secondary:hover {
  background: #e5e7eb;
}
.btn--outline {
  background: transparent;
  color: #6366f1;
  border: 1px solid #6366f1;
}
.btn--outline:hover {
  background: #eef2ff;
}
.btn--danger-outline {
  background: transparent;
  color: #ef4444;
  border: 1px solid #fecaca;
}
.btn--danger-outline:hover {
  background: #fef2f2;
  border-color: #ef4444;
}

@media (max-width: 1023px) {
  .review-summary {
    flex-direction: column;
    gap: 24px;
  }
  .review-summary__score {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
  }
  .review-summary__bars {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .review-page {
    padding: 20px 16px;
  }
  .review-tabs {
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .review-tab {
    padding: 8px 16px;
    white-space: nowrap;
    font-size: 13px;
  }
  .review-summary {
    padding: 20px 16px;
  }
  .review-summary__number {
    font-size: 40px;
  }
  .review-bar {
    gap: 8px;
  }
  .review-bar__label {
    width: 35px;
    font-size: 12px;
  }
  .review-card {
    padding: 20px 16px;
  }
  .review-card__header {
    flex-direction: column;
    gap: 12px;
  }
  .review-card__date {
    align-items: flex-start;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .review-card__avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .review-card__product {
    padding: 10px;
  }
  .review-card__product-image {
    width: 48px;
    height: 48px;
  }
  .review-card__image {
    width: 64px;
    height: 64px;
  }
  .review-card__actions {
    gap: 8px;
    flex-wrap: wrap;
  }
  .review-action-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
  .review-form-section {
    padding: 20px 16px;
  }
  .review-form-section h3 {
    font-size: 16px;
  }
  .star-input label {
    font-size: 28px;
  }
  .review-textarea {
    min-height: 120px;
    padding: 14px;
  }
  .image-upload__btn,
  .image-preview {
    width: 80px;
    height: 80px;
  }
  .image-upload__btn i {
    font-size: 20px;
  }
  .image-upload__btn span {
    font-size: 10px;
  }
  .review-form__actions {
    flex-direction: column;
  }
  .review-form__actions .btn {
    width: 100%;
  }
  .my-review-section {
    padding: 20px 16px;
  }
  .my-review-section h3 {
    font-size: 16px;
  }
  .my-review-item {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }
  .my-review-item__image {
    width: 100%;
    height: 160px;
  }
  .my-review-item__actions {
    flex-direction: row;
    width: 100%;
  }
  .my-review-item__actions .btn {
    flex: 1;
  }
  .review-empty {
    padding: 40px 16px;
  }
  .review-empty i {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .review-summary__number {
    font-size: 36px;
  }
  .star-input label {
    font-size: 24px;
  }
  .image-upload__btn,
  .image-preview {
    width: 72px;
    height: 72px;
  }
  .review-card__image {
    width: 56px;
    height: 56px;
  }
}
html.dark-mode .review-page {
  background: #0f172a;
}
html.dark-mode .review-header h2 {
  color: #f1f5f9;
}
html.dark-mode .review-header p {
  color: #94a3b8;
}
html.dark-mode .review-tab {
  background: #1e293b;
  color: #94a3b8;
}
html.dark-mode .review-tab:hover {
  background: #334155;
  color: #f1f5f9;
}
html.dark-mode .review-summary {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .review-summary__score {
  border-color: #334155;
}
html.dark-mode .review-summary__number {
  color: #f1f5f9;
}
html.dark-mode .review-bar__track {
  background: #334155;
}
html.dark-mode .review-card {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .review-card__name {
  color: #f1f5f9;
}
html.dark-mode .review-card__product {
  background: #0f172a;
}
html.dark-mode .review-card__product-name {
  color: #f1f5f9;
}
html.dark-mode .review-card__text {
  color: #e2e8f0;
}
html.dark-mode .review-card__actions {
  border-color: #334155;
}
html.dark-mode .review-action-btn:hover {
  background: #334155;
  color: #f1f5f9;
}
html.dark-mode .review-form-section {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .review-form-section h3 {
  color: #f1f5f9;
}
html.dark-mode .rating-input label {
  color: #e2e8f0;
}
html.dark-mode .review-textarea {
  background: #0f172a;
  border-color: #334155;
  color: #f1f5f9;
}
html.dark-mode .review-textarea:focus {
  border-color: #6366f1;
}
html.dark-mode .image-upload label {
  color: #e2e8f0;
}
html.dark-mode .image-upload__btn {
  background: #0f172a;
  border-color: #334155;
}
html.dark-mode .image-upload__btn:hover {
  background: #1e293b;
  border-color: #6366f1;
}
html.dark-mode .my-review-section {
  background: #1e293b;
  border-color: #334155;
}
html.dark-mode .my-review-section h3 {
  color: #f1f5f9;
  border-color: #334155;
}
html.dark-mode .my-review-item {
  background: #0f172a;
}
html.dark-mode .my-review-item__product {
  color: #f1f5f9;
}
html.dark-mode .my-review-item__text {
  color: #94a3b8;
}
html.dark-mode .review-form__actions {
  border-color: #334155;
}

@media (hover: none) {
  .review-card__image:active {
    transform: scale(0.95);
  }
  .review-action-btn:active {
    transform: scale(0.95);
  }
  .btn:active {
    transform: scale(0.98);
  }
}
@media print {
  .review-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #000;
  }
  .review-form-section,
  .review-card__actions,
  .my-review-item__actions {
    display: none !important;
  }
}
.search-page {
  max-width: 140rem;
  margin: 0 auto;
  padding: 3.2rem 1.6rem;
}

.search-header {
  margin-bottom: 3.2rem;
}

.search-keyword-wrap {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.search-keyword {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #6366f1;
}
.search-keyword::before {
  content: '"';
}
.search-keyword::after {
  content: '"';
}

.search-result-text {
  font-size: 1.8rem;
  color: #212529;
  font-weight: 500;
}

.search-count {
  font-size: 1.5rem;
  color: #6c757d;
}
.search-count strong {
  font-weight: 700;
  color: #6366f1;
}

.search-content {
  display: grid;
  grid-template-columns: 26rem 1fr;
  gap: 3.2rem;
  align-items: start;
}

.search-sidebar {
  position: sticky;
  top: 10rem;
}

.filter-section {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  padding: 1.6rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  border-radius: 1.2rem;
  padding: 1.6rem;
  margin-bottom: 1.6rem;
}

.filter-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-toggle {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0.4rem;
  transition: transform 0.3s ease;
}
.filter-toggle.collapsed {
  transform: rotate(-90deg);
}

.filter-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-content.collapsed {
  display: none;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.4rem;
  color: #4b5563;
}
.category-item:hover {
  background: #f8f9fa;
}
.category-item.active {
  background: #6366f1;
  color: #ffffff;
}
.category-item.active .count {
  color: rgba(255, 255, 255, 0.8);
}
.category-item .count {
  font-size: 1.2rem;
  color: #9ca3af;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.price-inputs input {
  flex: 1;
  padding: 1rem 1.2rem;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  text-align: center;
}
.price-inputs input:focus {
  outline: none;
  border-color: #6366f1;
}
.price-inputs .separator {
  color: #9ca3af;
  font-size: 1.4rem;
}

.price-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.price-preset-btn {
  padding: 0.8rem 1.2rem;
  background: #f8f9fa;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.6rem;
  font-size: 1.3rem;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.3s ease;
}
.price-preset-btn:hover {
  border-color: #6366f1;
  color: #6366f1;
}
.price-preset-btn.active {
  background: #6366f1;
  border-color: #6366f1;
  color: #ffffff;
}

.brand-search {
  margin-bottom: 1.2rem;
}
.brand-search input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  font-size: 1.4rem;
}
.brand-search input:focus {
  outline: none;
  border-color: #6366f1;
}

.brand-list {
  max-height: 20rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  cursor: pointer;
  font-size: 1.4rem;
  color: #4b5563;
}
.brand-item input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: #6366f1;
  cursor: pointer;
}
.brand-item label {
  flex: 1;
  cursor: pointer;
}
.brand-item .count {
  font-size: 1.2rem;
  color: #9ca3af;
}

.filter-actions {
  display: flex;
  gap: 0.8rem;
  padding-top: 1.6rem;
  border-top: 0.1rem solid #dee2e6;
}

.btn-filter-reset {
  flex: 1;
  padding: 1.2rem 1.6rem;
  background: #ffffff;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-filter-reset:hover {
  background: #f8f9fa;
  border-color: #ced4da;
}

.btn-filter-apply {
  flex: 1;
  padding: 1.2rem 1.6rem;
  background: #6366f1;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-filter-apply:hover {
  background: #4f46e5;
}

.search-main {
  min-width: 0;
}

.search-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.6rem;
  background: #ffffff;
  border-radius: 0.8rem;
  margin-bottom: 1.6rem;
  border: 0.1rem solid #dee2e6;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  gap: 1.6rem;
  flex-wrap: wrap;
}

.search-sort {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.search-sort label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
}
.search-sort select {
  padding: 1rem 1.4rem;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  background: #ffffff;
  cursor: pointer;
  min-width: 16rem;
}
.search-sort select:focus {
  outline: none;
  border-color: #6366f1;
}

.view-mode-toggle {
  display: flex;
  gap: 0.4rem;
  background: #f8f9fa;
  padding: 0.4rem;
  border-radius: 0.4rem;
}

.view-mode-btn {
  width: 4rem;
  height: 3.6rem;
  background: transparent;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #6c757d;
  transition: all 0.3s ease;
}
.view-mode-btn:hover {
  color: #333333;
}
.view-mode-btn.active {
  background: #ffffff;
  color: #6366f1;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
}

.btn-mobile-filter {
  display: none;
  padding: 1rem 1.6rem;
  background: #ffffff;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  align-items: center;
  gap: 0.8rem;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.search-results.list-view {
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.search-card {
  background: #ffffff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: 0.1rem solid #dee2e6;
}
.search-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.search-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f8f9fa;
  overflow: hidden;
}
.search-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.search-card:hover .search-card__image img {
  transform: scale(1.05);
}
.search-card__content {
  padding: 1.6rem;
}
.search-card__category {
  display: inline-block;
  font-size: 1.2rem;
  color: #6366f1;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.search-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4rem;
}
.search-card__title .highlight {
  background: linear-gradient(120deg, #fef08a 0%, #fef08a 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 90%;
  font-weight: 700;
}
.search-card__content .highlight {
  background: linear-gradient(120deg, #fef08a 0%, #fef08a 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 90%;
  font-weight: 700;
}
.search-card__price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.search-card__original-price {
  font-size: 1.3rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.search-card__current-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #212529;
}
.search-card__discount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #dc3545;
}

.search-results.list-view .search-card {
  display: grid;
  grid-template-columns: 16rem 1fr auto;
  gap: 1.6rem;
  padding: 1.6rem;
}
.search-results.list-view .search-card__image {
  aspect-ratio: 1;
  border-radius: 0.4rem;
}
.search-results.list-view .search-card__content {
  padding: 0.8rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.search-results.list-view .search-card__title {
  min-height: auto;
  -webkit-line-clamp: 1;
  font-size: 1.6rem;
}
.search-results.list-view .search-card__desc {
  display: block;
  font-size: 1.4rem;
  color: #6c757d;
  margin-bottom: 0.8rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}
.search-results.list-view .search-card__price {
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 0;
}
.search-results.list-view .search-card__current-price {
  font-size: 2rem;
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 8rem 1.6rem;
  background: #f5f5f5;
  border-radius: 1.2rem;
  border: 0.1rem solid #dee2e6;
}
.no-results__icon {
  font-size: 6.4rem;
  margin-bottom: 1.6rem;
  opacity: 0.5;
}
.no-results__title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.8rem;
}
.no-results__keyword {
  color: #6366f1;
}
.no-results__message {
  color: #6c757d;
  margin-bottom: 2.4rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
.no-results__suggestions {
  text-align: left;
  max-width: 40rem;
  margin: 0 auto;
  background: #ffffff;
  padding: 1.6rem;
  border-radius: 0.8rem;
}
.no-results__suggestions h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1.2rem;
}
.no-results__suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.no-results__suggestions li {
  padding: 0.8rem 0;
  font-size: 1.4rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.no-results__suggestions li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: #6366f1;
  border-radius: 50%;
}

.search-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 4.8rem;
  padding: 1.6rem 0;
  flex-wrap: wrap;
}

.pagination__button {
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.2rem;
  border: 0.1rem solid #dee2e6;
  background: #ffffff;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__button:hover {
  border-color: #6366f1;
  color: #6366f1;
}
.pagination__button--active {
  background: #6366f1;
  border-color: #6366f1;
  color: #ffffff;
}

.mobile-filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-filter-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-filter-overlay.active .mobile-filter-panel {
  transform: translateX(0);
}

.mobile-filter-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 36rem;
  background: #ffffff;
  z-index: 1051;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.6rem;
  border-bottom: 0.1rem solid #dee2e6;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1;
}

.mobile-filter-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
}

.mobile-filter-close {
  width: 3.6rem;
  height: 3.6rem;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6c757d;
}

.mobile-filter-body {
  padding: 1.6rem;
}

.mobile-filter-footer {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  padding: 1.6rem 1.6rem;
  border-top: 0.1rem solid #dee2e6;
  display: flex;
  gap: 1rem;
}
.mobile-filter-footer button {
  flex: 1;
  padding: 1.4rem;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1023px) {
  .search-content {
    grid-template-columns: 22rem 1fr;
    gap: 2.4rem;
  }
  .search-results {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
  .search-results.list-view .search-card {
    grid-template-columns: 14rem 1fr auto;
  }
}
@media (max-width: 767px) {
  .search-page {
    padding: 1.6rem 1.6rem;
  }
  .search-content {
    grid-template-columns: 1fr;
  }
  .search-sidebar {
    display: none;
  }
  .btn-mobile-filter {
    display: flex;
  }
  .search-keyword {
    font-size: 2.2rem;
  }
  .search-result-text {
    font-size: 1.6rem;
  }
  .search-count {
    font-size: 1.4rem;
  }
  .search-toolbar {
    padding: 1.2rem 1.6rem;
    flex-wrap: wrap;
  }
  .search-sort {
    flex: 1;
    min-width: 0;
  }
  .search-sort label {
    display: none;
  }
  .search-sort select {
    width: 100%;
    min-width: 0;
  }
  .view-mode-toggle {
    display: none;
  }
  .search-results {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .search-results.list-view {
    grid-template-columns: 1fr;
  }
  .search-card__content {
    padding: 1.2rem;
  }
  .search-card__category {
    font-size: 1.1rem;
  }
  .search-card__title {
    font-size: 1.3rem;
    min-height: 3.6rem;
    margin-bottom: 0.8rem;
  }
  .search-card__original-price {
    font-size: 1.2rem;
  }
  .search-card__current-price {
    font-size: 1.5rem;
  }
  .search-card__discount {
    font-size: 1.2rem;
  }
  .search-results.list-view .search-card {
    grid-template-columns: 10rem 1fr;
    gap: 1.2rem;
    padding: 1.2rem;
  }
  .search-results.list-view .search-card__price {
    align-items: flex-start;
    flex-direction: row;
  }
  .search-results.list-view .search-card__current-price {
    font-size: 1.6rem;
  }
  .no-results {
    padding: 6rem 1.6rem;
  }
  .no-results__icon {
    font-size: 4.8rem;
  }
  .no-results__title {
    font-size: 1.8rem;
  }
  .no-results__message {
    font-size: 1.4rem;
  }
  .search-pagination {
    gap: 0.4rem;
    margin-top: 3.2rem;
  }
  .pagination__button {
    min-width: 3.6rem;
    height: 3.6rem;
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .search-results.list-view .search-card {
    grid-template-columns: 8rem 1fr;
  }
  .search-results.list-view .search-card__desc {
    display: none;
  }
}
@media (hover: none) {
  .search-card:hover {
    transform: none;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  }
  .search-card:active {
    transform: scale(0.99);
  }
  .category-item:active {
    background: #dee2e6;
  }
  .price-preset-btn:active {
    transform: scale(0.98);
  }
}
@media print {
  .search-sidebar,
  .search-toolbar,
  .search-pagination,
  .mobile-filter-overlay {
    display: none !important;
  }
  .search-content {
    grid-template-columns: 1fr !important;
  }
  .search-results {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .search-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
.color-preview-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.color-preview-wrapper .color-preview {
  width: 3rem;
  height: 3rem;
  border-radius: 0.4rem;
  border: 1px solid #dee2e6;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
}
.color-preview-wrapper .color-code {
  font-family: "Courier New", monospace;
  font-size: 1.4rem;
  color: #6c757d;
}

.color-input-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.color-input-group input[type=color] {
  width: 6rem;
  height: 4rem;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  cursor: pointer;
  padding: 0.4rem;
}
.color-input-group input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
.color-input-group input[type=color]::-webkit-color-swatch {
  border: none;
  border-radius: 0.2rem;
}
.color-input-group .color-text {
  flex: 1;
  font-family: "Courier New", monospace;
  font-size: 1.4rem;
  text-transform: uppercase;
  background: #f8f9fa;
  cursor: default;
}

.site-preview {
  border: 1px solid #dee2e6;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.site-preview .preview-header {
  padding: 1.5rem 2rem;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.site-preview .preview-header .preview-logo {
  font-size: 1.8rem;
  font-weight: 700;
}
.site-preview .preview-header .preview-menu {
  font-size: 1.4rem;
  display: flex;
  gap: 2rem;
}
.site-preview .preview-content {
  padding: 4rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.site-preview .preview-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.site-preview .preview-content p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #6c757d;
}
.site-preview .preview-content .preview-btn {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.site-preview .preview-content .preview-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
}
.site-preview .preview-footer {
  padding: 2rem;
  background: var(--secondary-color, #6c757d);
  color: #ffffff;
  text-align: center;
  transition: background 0.3s ease;
}

.form-section h4 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #dee2e6;
}
.form-section:not(:last-child) {
  margin-bottom: 3rem;
}

.form-group label input[type=checkbox] {
  margin-right: 0.8rem;
  width: 1.6rem;
  height: 1.6rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .color-preview-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .color-input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .color-input-group input[type=color] {
    width: 100%;
  }
  .site-preview .preview-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.wallet-page {
  max-width: 120rem;
  margin: 0 auto;
  padding: 3.2rem 1.6rem;
}

.page-header {
  margin-bottom: 2.4rem;
}

.page-title {
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #212529;
}

.wallet-balance-card {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 2rem;
  padding: 3.2rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-bottom: 3.2rem;
  box-shadow: 0 1rem 4rem rgba(99, 102, 241, 0.3);
}
.wallet-balance-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 30rem;
  height: 30rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.wallet-balance-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.balance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 1;
}

.balance-label {
  font-size: 1.4rem;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}

.balance-amount {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.balance-amount .amount {
  font-size: clamp(3.6rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.1rem;
}
.balance-amount .currency {
  font-size: 2rem;
  font-weight: 500;
  opacity: 0.9;
}

.wallet-icon {
  width: 5.6rem;
  height: 5.6rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
}

.balance-actions {
  display: flex;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.btn-charge {
  flex: 1;
  padding: 1.4rem 2.4rem;
  background: #ffffff;
  color: #6366f1;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.btn-charge:hover {
  background: #f0f0ff;
  transform: translateY(-0.2rem);
}

.btn-transfer {
  flex: 1;
  padding: 1.4rem 2.4rem;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 0.2rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.btn-transfer:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.charge-section {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  padding: 1.6rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  border-radius: 1.2rem;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-title .icon {
  color: #6366f1;
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.amount-btn {
  padding: 1.6rem 1.2rem;
  background: #f5f5f5;
  border: 0.2rem solid #dee2e6;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.amount-btn:hover {
  border-color: #6366f1;
  background: #f0f0ff;
  color: #6366f1;
}
.amount-btn.active {
  border-color: #6366f1;
  background: #6366f1;
  color: #ffffff;
}
.amount-btn.active .bonus {
  color: #fecaca;
}
.amount-btn .bonus {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #dc3545;
  margin-top: 0.4rem;
}

.custom-amount {
  margin-bottom: 1.6rem;
}
.custom-amount label {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.8rem;
}

.custom-amount-input {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.custom-amount-input input {
  flex: 1;
  padding: 1.4rem 1.6rem;
  border: 0.1rem solid #dee2e6;
  border-radius: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: right;
}
.custom-amount-input input:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 0.3rem rgba(99, 102, 241, 0.1);
}
.custom-amount-input .unit {
  font-size: 1.6rem;
  font-weight: 500;
  color: #6c757d;
}

.payment-methods {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  padding: 1.6rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  border-radius: 1.2rem;
  padding: 2.4rem;
  margin-bottom: 2.4rem;
}

.payment-method-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.payment-method-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem;
  border: 0.2rem solid #dee2e6;
  border-radius: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.payment-method-item:hover {
  border-color: #ced4da;
  background: #f5f5f5;
}
.payment-method-item.selected {
  border-color: #6366f1;
  background: #f5f5ff;
}
.payment-method-item input[type=radio] {
  width: 2rem;
  height: 2rem;
  accent-color: #6366f1;
  cursor: pointer;
}

.payment-icon {
  width: 4.8rem;
  height: 4.8rem;
  background: #f8f9fa;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
}

.payment-info {
  flex: 1;
}

.payment-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.2rem;
}

.payment-desc {
  font-size: 1.3rem;
  color: #6c757d;
}

.btn-proceed-payment {
  width: 100%;
  padding: 1.8rem 2.4rem;
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 1.4rem;
  font-size: 1.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.btn-proceed-payment:hover {
  background: #4f46e5;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2.4rem rgba(99, 102, 241, 0.3);
}
.btn-proceed-payment:disabled {
  background: #ced4da;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.transaction-section {
  background: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.4rem;
  padding: 1.6rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  border-radius: 1.2rem;
  padding: 2.4rem;
}

.transaction-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.transaction-tabs {
  display: flex;
  gap: 0.8rem;
}

.transaction-tab {
  padding: 1rem 2rem;
  background: #f8f9fa;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
}
.transaction-tab:hover {
  background: #dee2e6;
}
.transaction-tab.active {
  background: #6366f1;
  color: #ffffff;
}

.transaction-filter {
  display: flex;
  gap: 0.8rem;
}
.transaction-filter select {
  padding: 1rem 1.4rem;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  background: #ffffff;
  cursor: pointer;
}

.transaction-list {
  display: flex;
  flex-direction: column;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-bottom: 0.1rem solid #f8f9fa;
  transition: background 0.3s ease;
}
.transaction-item:last-child {
  border-bottom: none;
}
.transaction-item:hover {
  background: #fafbfc;
  margin: 0 -2.4rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.transaction-icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}
.transaction-icon.charge {
  background: #dcfce7;
  color: #15803d;
}
.transaction-icon.use {
  background: #fee2e2;
  color: #dc3545;
}
.transaction-icon.refund {
  background: #fef3c7;
  color: #b45309;
}
.transaction-icon.transfer {
  background: #dbeafe;
  color: #1d4ed8;
}

.transaction-info {
  flex: 1;
  min-width: 0;
}

.transaction-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transaction-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 1.3rem;
  color: #9ca3af;
}

.transaction-amount {
  text-align: right;
  flex-shrink: 0;
}
.transaction-amount .amount {
  font-size: 1.6rem;
  font-weight: 700;
}
.transaction-amount .amount.plus {
  color: #15803d;
}
.transaction-amount .amount.plus::before {
  content: "+";
}
.transaction-amount .amount.minus {
  color: #dc3545;
}
.transaction-amount .amount.minus::before {
  content: "-";
}
.transaction-amount .balance {
  font-size: 1.2rem;
  color: #9ca3af;
  margin-top: 0.2rem;
}

.empty-transactions {
  text-align: center;
  padding: 6rem 1.6rem;
  color: #9ca3af;
}
.empty-transactions .icon {
  font-size: 4.8rem;
  margin-bottom: 1.6rem;
}
.empty-transactions .message {
  font-size: 1.5rem;
}

.btn-load-more {
  width: 100%;
  padding: 1.4rem;
  background: #f8f9fa;
  border: none;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  margin-top: 1.6rem;
  transition: all 0.3s ease;
}
.btn-load-more:hover {
  background: #dee2e6;
  color: #333333;
}

.charge-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  padding: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.charge-modal.active {
  opacity: 1;
  visibility: visible;
}
.charge-modal.active .charge-modal__content {
  transform: translateY(0);
}
.charge-modal__content {
  background: #ffffff;
  border-radius: 2rem;
  width: 100%;
  max-width: 48rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(2rem);
  transition: transform 0.3s ease;
}
.charge-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2.4rem;
  border-bottom: 0.1rem solid #dee2e6;
}
.charge-modal__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
}
.charge-modal__close {
  width: 3.6rem;
  height: 3.6rem;
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #6c757d;
  transition: all 0.3s ease;
}
.charge-modal__close:hover {
  background: #dee2e6;
  color: #212529;
}
.charge-modal__body {
  padding: 2.4rem;
}
.charge-modal__footer {
  padding: 1.6rem 2.4rem 2.4rem;
}

@media (max-width: 1023px) {
  .wallet-balance-card {
    padding: 2.8rem 2.4rem;
  }
  .amount-buttons {
    grid-template-columns: repeat(3, 1fr);
  }
  .balance-actions {
    flex-direction: column;
  }
  .btn-charge,
  .btn-transfer {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wallet-page {
    padding: 1.6rem 1.6rem;
  }
  .wallet-balance-card {
    padding: 2.4rem 1.6rem;
    border-radius: 1.2rem;
  }
  .balance-header {
    margin-bottom: 1.6rem;
  }
  .wallet-icon {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2.2rem;
    border-radius: 0.8rem;
  }
  .balance-amount .amount {
    font-size: 3.2rem;
  }
  .balance-amount .currency {
    font-size: 1.6rem;
  }
  .btn-charge,
  .btn-transfer {
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
  }
  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .amount-btn {
    padding: 1.4rem 1rem;
    font-size: 1.4rem;
  }
  .charge-section,
  .payment-methods,
  .transaction-section {
    padding: 1.6rem 1.6rem;
    border-radius: 0.8rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .payment-method-item {
    padding: 1.4rem;
  }
  .payment-icon {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
  .payment-name {
    font-size: 1.4rem;
  }
  .payment-desc {
    font-size: 1.2rem;
  }
  .transaction-header {
    flex-direction: column;
    align-items: stretch;
  }
  .transaction-tabs {
    overflow-x: auto;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
  }
  .transaction-tab {
    padding: 0.8rem 1.6rem;
    font-size: 1.3rem;
    white-space: nowrap;
  }
  .transaction-filter {
    width: 100%;
  }
  .transaction-filter select {
    flex: 1;
  }
  .transaction-item {
    gap: 1.2rem;
    padding: 1.4rem 0;
  }
  .transaction-item:hover {
    margin: 0 -1.6rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
  .transaction-icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
  }
  .transaction-title {
    font-size: 1.4rem;
  }
  .transaction-meta {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 0.2rem;
  }
  .transaction-amount .amount {
    font-size: 1.5rem;
  }
  .btn-proceed-payment {
    padding: 1.6rem 1.6rem;
    font-size: 1.6rem;
    border-radius: 0.8rem;
  }
  .charge-modal__content {
    border-radius: 1.2rem;
  }
  .charge-modal__header {
    padding: 1.6rem 1.6rem;
  }
  .charge-modal__body {
    padding: 1.6rem;
  }
}
@media (max-width: 480px) {
  .wallet-balance-card {
    padding: 1.6rem 1.6rem;
  }
  .balance-amount .amount {
    font-size: 2.8rem;
  }
  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .amount-btn {
    padding: 1.2rem 0.8rem;
    font-size: 1.3rem;
  }
  .amount-btn .bonus {
    font-size: 1rem;
  }
}
@media (hover: none) {
  .transaction-item:hover {
    background: transparent;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .amount-btn:active {
    transform: scale(0.98);
  }
  .btn-charge:active,
  .btn-transfer:active,
  .btn-proceed-payment:active {
    transform: scale(0.98);
  }
  .payment-method-item:active {
    transform: scale(0.99);
  }
}
@media print {
  .balance-actions,
  .charge-section,
  .payment-methods,
  .btn-load-more,
  .charge-modal {
    display: none !important;
  }
  .wallet-balance-card {
    background: #f8f9fa !important;
    color: #212529 !important;
    box-shadow: none !important;
  }
}
.widget-content {
  padding: 3.2rem 0;
}

.widget-default {
  padding: 2rem;
  background: #f8f9fa;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.8rem;
}
.widget-default .widget-default__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.widget-default .widget-default__icon {
  font-size: 2.4rem;
  color: #6c757d;
}
.widget-default .widget-default__title {
  margin: 0;
  color: #212529;
  font-size: 1.8rem;
  font-weight: 600;
}
.widget-default .widget-default__meta {
  font-size: 1.2rem;
  color: #6c757d;
}
.widget-default .widget-default__badge {
  display: inline-block;
  background: #e9ecef;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}
.widget-default .widget-default__config {
  margin-top: 1rem;
  padding: 1rem;
  background: #ffffff;
  border: 0.1rem solid #dee2e6;
  border-radius: 0.4rem;
  font-size: 1.1rem;
}

.widget-error {
  padding: 2rem;
  background: rgb(253.8924050633, 248.6075949367, 249.1139240506);
  border: 0.1rem solid #dc3545;
  color: #dc3545;
  text-align: center;
  border-radius: 0.8rem;
}
.widget-error .widget-error__icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.widget-error .widget-error__message {
  margin: 0;
  font-size: 1.6rem;
}

.widget-hero-banner {
  position: relative;
  overflow: hidden;
}
.widget-hero-banner .hero-slide-container {
  position: relative;
  height: 50rem;
  min-height: 40rem;
}
@media (max-width: 768px) {
  .widget-hero-banner .hero-slide-container {
    height: 35rem;
    min-height: 30rem;
  }
}
.widget-hero-banner .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.widget-hero-banner .hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.widget-hero-banner .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.widget-hero-banner .slide-bg--default {
  background-color: var(--primary-color, #5f0080);
}
.widget-hero-banner .slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}
.widget-hero-banner .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}
.widget-hero-banner .slide-content .container {
  color: #ffffff;
}
.widget-hero-banner .slide-subtitle {
  display: block;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.widget-hero-banner .slide-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .widget-hero-banner .slide-title {
    font-size: 2.8rem;
  }
}
.widget-hero-banner .slide-desc {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 60rem;
}
@media (max-width: 768px) {
  .widget-hero-banner .slide-desc {
    font-size: 1.6rem;
  }
}
.widget-hero-banner .slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3rem;
  background: #ffffff;
  color: #212529;
  font-weight: 600;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.widget-hero-banner .slide-btn:hover {
  background: #212529;
  color: #ffffff;
}
.widget-hero-banner .slide-btn i {
  transition: transform 0.2s ease;
}
.widget-hero-banner .slide-btn:hover i {
  transform: translateX(0.5rem);
}
.widget-hero-banner .hero-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
}
.widget-hero-banner .hero-nav button {
  pointer-events: auto;
  width: 5rem;
  height: 5rem;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.widget-hero-banner .hero-nav button:hover {
  background: #ffffff;
}
.widget-hero-banner .hero-nav button i {
  font-size: 1.8rem;
  color: #212529;
}
.widget-hero-banner .hero-indicators {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 1rem;
}
.widget-hero-banner .hero-indicators .indicator {
  width: 1.2rem;
  height: 1.2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.widget-hero-banner .hero-indicators .indicator.active, .widget-hero-banner .hero-indicators .indicator:hover {
  background: #ffffff;
}

.widget-product-grid .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
}
.widget-product-grid .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.widget-product-grid .btn-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.2s ease-in-out;
}
.widget-product-grid .btn-more:hover {
  color: var(--primary-color, #007bff);
}
.widget-product-grid .product-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(4, 1fr);
}
.widget-product-grid .product-grid[data-columns="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.widget-product-grid .product-grid[data-columns="3"] {
  grid-template-columns: repeat(3, 1fr);
}
.widget-product-grid .product-grid[data-columns="5"] {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 992px) {
  .widget-product-grid .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .widget-product-grid .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .widget-product-grid .product-grid {
    grid-template-columns: 1fr;
  }
}
.widget-product-grid .loading-placeholder {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: #6c757d;
}
.widget-product-grid .loading-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.widget-product-grid .empty-message,
.widget-product-grid .error-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: #6c757d;
  background: #f8f9fa;
  border-radius: 0.4rem;
}
.widget-product-grid .error-message {
  color: #dc3545;
  background: rgb(253.8924050633, 248.6075949367, 249.1139240506);
}
.widget-product-grid .product-card {
  background: #ffffff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
  transition: all 0.2s ease-in-out;
}
.widget-product-grid .product-card:hover {
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15);
  transform: translateY(-0.4rem);
}
.widget-product-grid .product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.widget-product-grid .product-image {
  position: relative;
  aspect-ratio: 1;
  background: #f8f9fa;
  overflow: hidden;
}
.widget-product-grid .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .widget-product-grid .product-image img {
  transform: scale(1.05);
}
.widget-product-grid .product-image .no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #6c757d;
  font-size: 4rem;
}
.widget-product-grid .product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 0.8rem;
  background: #dc3545;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0.2rem;
}
.widget-product-grid .product-info {
  padding: 1.6rem;
}
.widget-product-grid .product-name {
  font-size: 1.6rem;
  font-weight: 500;
  color: #212529;
  margin: 0 0 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.widget-product-grid .product-desc {
  font-size: 1.4rem;
  color: #6c757d;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.widget-product-grid .product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}
.widget-product-grid .original-price {
  font-size: 1.4rem;
  color: #6c757d;
  text-decoration: line-through;
}
.widget-product-grid .sale-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
}

.widget-quick-stats .section-header {
  margin-bottom: 2.4rem;
}
.widget-quick-stats .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.widget-quick-stats .stats-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(4, 1fr);
}
.widget-quick-stats .stats-grid[data-columns="2"] {
  grid-template-columns: repeat(2, 1fr);
}
.widget-quick-stats .stats-grid[data-columns="3"] {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .widget-quick-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .widget-quick-stats .stats-grid {
    grid-template-columns: 1fr;
  }
}
.widget-quick-stats .stat-card {
  position: relative;
  padding: 2rem;
  border-radius: 0.8rem;
  color: #ffffff;
  overflow: hidden;
}
.widget-quick-stats .stat-card--primary {
  background-color: #007bff;
}
.widget-quick-stats .stat-card--success {
  background-color: #28a745;
}
.widget-quick-stats .stat-card--warning {
  background-color: #ffc107;
}
.widget-quick-stats .stat-card--danger {
  background-color: #dc3545;
}
.widget-quick-stats .stat-card--info {
  background-color: #17a2b8;
}
.widget-quick-stats .stat-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  opacity: 0.3;
}
.widget-quick-stats .stat-content {
  position: relative;
  z-index: 1;
}
.widget-quick-stats .stat-value {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.widget-quick-stats .stat-label {
  display: block;
  font-size: 1.4rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}
.widget-quick-stats .stat-change {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.2rem;
}
.widget-quick-stats .stat-change.up {
  color: rgb(133.9855072464, 226.0144927536, 155);
}
.widget-quick-stats .stat-change.down {
  color: rgb(242.5949367089, 183.4050632911, 189.0759493671);
}
.widget-quick-stats .stat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #ffffff;
  font-size: 1.4rem;
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.2s ease-in-out;
}
.widget-quick-stats .stat-link:hover {
  opacity: 1;
}

.widget-text-block {
  padding: 6rem 0;
}
.widget-text-block .text-content {
  max-width: 80rem;
  margin: 0 auto;
}
.widget-text-block .text-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 2rem;
  color: #212529;
}
@media (max-width: 768px) {
  .widget-text-block .text-title {
    font-size: 2.8rem;
  }
}
.widget-text-block .text-subtitle {
  font-size: 2rem;
  color: #6c757d;
  margin: 0 0 2rem;
  font-weight: 400;
}
.widget-text-block .text-body {
  font-size: 1.8rem;
  line-height: 1.75;
  color: #6c757d;
}
.widget-text-block .text-body p {
  margin-bottom: 1.5rem;
}
.widget-text-block .text-body p:last-child {
  margin-bottom: 0;
}
.widget-text-block .text-action {
  margin-top: 3rem;
}
.widget-text-block .btn-action {
  display: inline-block;
  padding: 1.4rem 3rem;
  background: var(--primary-color, #007bff);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0.4rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.widget-text-block .btn-action:hover {
  background: rgb(0, 98.4, 204);
}

.widget-image-gallery .section-header {
  margin-bottom: 2.4rem;
}
.widget-image-gallery .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.widget-image-gallery .gallery-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .widget-image-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .widget-image-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.widget-image-gallery .gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
}
.widget-image-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.widget-image-gallery .gallery-item:hover img {
  transform: scale(1.1);
}
.widget-image-gallery .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.widget-image-gallery .gallery-item .gallery-overlay i {
  color: #ffffff;
  font-size: 2.4rem;
}
.widget-image-gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.widget-banner-slider .banner-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
}
.widget-banner-slider .banner-slide {
  display: none;
}
.widget-banner-slider .banner-slide.active {
  display: block;
}
.widget-banner-slider .banner-slide img {
  width: 100%;
  height: auto;
}
.widget-banner-slider .banner-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #ffffff;
}
.widget-banner-slider .banner-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}
.widget-banner-slider .banner-nav button {
  pointer-events: auto;
  width: 4rem;
  height: 4rem;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.widget-banner-slider .banner-nav button:hover {
  background: #ffffff;
}
.widget-banner-slider .banner-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
}
.widget-banner-slider .banner-dots .dot {
  width: 1rem;
  height: 1rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.widget-banner-slider .banner-dots .dot.active, .widget-banner-slider .banner-dots .dot:hover {
  background: #ffffff;
}

.wishlist-page {
  max-width: 120rem;
  margin: 0 auto;
  padding: 3.2rem 1.6rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.page-title {
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.page-title .count {
  font-size: 1.6rem;
  font-weight: 500;
  color: #6c757d;
}

.wishlist-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 1.6rem;
  background: #ffffff;
  border-radius: 0.8rem;
  margin-bottom: 1.6rem;
  border: 0.1rem solid #dee2e6;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
}

.select-all-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
}
.select-all-wrap input[type=checkbox] {
  width: 2rem;
  height: 2rem;
  accent-color: #6366f1;
  cursor: pointer;
}

.wishlist-bulk-actions {
  display: flex;
  gap: 1rem;
}

.btn-bulk-delete {
  padding: 1rem 1.6rem;
  background: #ffffff;
  border: 0.1rem solid #dc3545;
  color: #dc3545;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-bulk-delete:hover {
  background: #dc3545;
  color: #ffffff;
}
.btn-bulk-delete:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-bulk-cart {
  padding: 1rem 1.6rem;
  background: #6366f1;
  border: none;
  color: #ffffff;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-bulk-cart:hover {
  background: #4f46e5;
}
.btn-bulk-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.wishlist-card {
  background: #ffffff;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 0.1rem solid #dee2e6;
}
.wishlist-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.wishlist-card.selected {
  border-color: #6366f1;
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.2);
}
.wishlist-card__checkbox {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 10;
}
.wishlist-card__checkbox input[type=checkbox] {
  width: 2.2rem;
  height: 2.2rem;
  accent-color: #6366f1;
  cursor: pointer;
  background: #ffffff;
  border-radius: 0.2rem;
}
.wishlist-card__delete {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #9ca3af;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075);
}
.wishlist-card__delete:hover {
  background: #dc3545;
  color: #ffffff;
  transform: scale(1.1);
}
.wishlist-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f8f9fa;
  overflow: hidden;
}
.wishlist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.wishlist-card__image .no-image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9ca3af;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #dee2e6 100%);
}
.wishlist-card:hover .wishlist-card__image img {
  transform: scale(1.05);
}
.wishlist-card__soldout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.wishlist-card__content {
  padding: 1.6rem;
}
.wishlist-card__category {
  display: inline-block;
  font-size: 1.2rem;
  color: #6366f1;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.wishlist-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4rem;
  text-decoration: none;
}
.wishlist-card__title:hover {
  color: #6366f1;
}
.wishlist-card__price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.wishlist-card__original-price {
  font-size: 1.3rem;
  color: #9ca3af;
  text-decoration: line-through;
}
.wishlist-card__current-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #212529;
}
.wishlist-card__discount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #dc3545;
}
.wishlist-card__date {
  font-size: 1.2rem;
  color: #9ca3af;
  margin-bottom: 1.2rem;
}
.wishlist-card__actions {
  display: flex;
  gap: 0.8rem;
}

.soldout-badge {
  background: #212529;
  color: #ffffff;
  padding: 1rem 1.6rem;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.btn-add-cart {
  flex: 1;
  padding: 1.2rem 1.6rem;
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}
.btn-add-cart:hover {
  background: #4f46e5;
}
.btn-add-cart:disabled {
  background: #ced4da;
  cursor: not-allowed;
}

.btn-view-detail {
  width: 4.4rem;
  height: 4.4rem;
  background: #f8f9fa;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #6c757d;
  transition: all 0.3s ease;
}
.btn-view-detail:hover {
  background: #dee2e6;
  color: #212529;
}

.empty-wishlist {
  grid-column: 1/-1;
  text-align: center;
  padding: 8rem 1.6rem;
  background: #f5f5f5;
  border-radius: 1.2rem;
  border: 0.1rem solid #dee2e6;
}
.empty-wishlist__icon {
  font-size: 6.4rem;
  margin-bottom: 1.6rem;
  opacity: 0.5;
}
.empty-wishlist__title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.8rem;
}
.empty-wishlist__message {
  color: #6c757d;
  margin-bottom: 2.4rem;
  font-size: 1.5rem;
  line-height: 1.5;
}

.btn-go-shopping {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.4rem 2.8rem;
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-go-shopping:hover {
  background: #4f46e5;
  transform: translateY(-0.2rem);
}

.wishlist-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 4rem;
  padding: 1.6rem 0;
  flex-wrap: wrap;
}

.pagination__button {
  min-width: 4rem;
  height: 4rem;
  padding: 0 1.2rem;
  border: 0.1rem solid #dee2e6;
  background: #ffffff;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination__button:hover {
  border-color: #6366f1;
  color: #6366f1;
}
.pagination__button--active {
  background: #6366f1;
  border-color: #6366f1;
  color: #ffffff;
}
.pagination__button--active:hover {
  color: #ffffff;
  background: #4f46e5;
}

@media (max-width: 1023px) {
  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
  .wishlist-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
  .wishlist-bulk-actions {
    width: 100%;
  }
  .btn-bulk-delete,
  .btn-bulk-cart {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .wishlist-page {
    padding: 1.6rem 1.6rem;
  }
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-title {
    font-size: 2.2rem;
  }
  .page-title .count {
    font-size: 1.4rem;
  }
  .wishlist-actions {
    padding: 1.4rem 1.6rem;
    border-radius: 1rem;
  }
  .select-all-wrap {
    font-size: 1.3rem;
  }
  .select-all-wrap input[type=checkbox] {
    width: 1.8rem;
    height: 1.8rem;
  }
  .btn-bulk-delete,
  .btn-bulk-cart {
    padding: 1rem 1.4rem;
    font-size: 1.3rem;
  }
  .wishlist-card {
    border-radius: 1rem;
  }
  .wishlist-card__checkbox {
    top: 0.8rem;
    left: 0.8rem;
  }
  .wishlist-card__checkbox input[type=checkbox] {
    width: 2rem;
    height: 2rem;
  }
  .wishlist-card__delete {
    top: 0.8rem;
    right: 0.8rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.6rem;
  }
  .wishlist-card__content {
    padding: 1.2rem;
  }
  .wishlist-card__category {
    font-size: 1.1rem;
  }
  .wishlist-card__title {
    font-size: 1.3rem;
    min-height: 3.6rem;
    margin-bottom: 0.8rem;
  }
  .wishlist-card__original-price {
    font-size: 1.2rem;
  }
  .wishlist-card__current-price {
    font-size: 1.5rem;
  }
  .wishlist-card__discount {
    font-size: 1.2rem;
  }
  .wishlist-card__date {
    font-size: 1.1rem;
  }
  .btn-add-cart {
    padding: 1rem 1.2rem;
    font-size: 1.3rem;
  }
  .btn-view-detail {
    width: 3.8rem;
    height: 3.8rem;
    font-size: 1.6rem;
  }
  .soldout-badge {
    padding: 0.8rem 1.4rem;
    font-size: 1.2rem;
  }
  .empty-wishlist {
    padding: 6rem 1.6rem;
  }
  .empty-wishlist__icon {
    font-size: 4.8rem;
  }
  .empty-wishlist__title {
    font-size: 1.8rem;
  }
  .empty-wishlist__message {
    font-size: 1.4rem;
  }
  .btn-go-shopping {
    padding: 1.2rem 2.4rem;
    font-size: 1.4rem;
  }
  .wishlist-pagination {
    gap: 0.4rem;
    margin-top: 3.2rem;
  }
  .pagination__button {
    min-width: 3.6rem;
    height: 3.6rem;
    font-size: 1.3rem;
  }
}
@media (max-width: 480px) {
  .wishlist-grid.single-column {
    grid-template-columns: 1fr;
  }
  .wishlist-card__actions {
    flex-direction: column;
  }
  .btn-view-detail {
    width: 100%;
    height: 4rem;
  }
}
@media (hover: none) {
  .wishlist-card:hover {
    transform: none;
    box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  }
  .wishlist-card:active {
    transform: scale(0.99);
  }
  .wishlist-card__delete:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #9ca3af;
    transform: none;
  }
  .wishlist-card__delete:active {
    background: #dc3545;
    color: #ffffff;
  }
  .btn-add-cart:active,
  .btn-bulk-cart:active,
  .btn-go-shopping:active {
    transform: scale(0.98);
  }
}
@media print {
  .wishlist-actions,
  .wishlist-card__checkbox,
  .wishlist-card__delete,
  .wishlist-card__actions,
  .wishlist-pagination {
    display: none !important;
  }
  .wishlist-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .wishlist-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
:root {
  --rsp-breakpoint-mobile: 767px;
  --rsp-breakpoint-tablet: 1023px;
  --rsp-breakpoint-desktop: 1024px;
  --rsp-container-mobile: 100%;
  --rsp-container-tablet: 720px;
  --rsp-container-desktop: 1200px;
  --rsp-spacing-xs: 4px;
  --rsp-spacing-sm: 8px;
  --rsp-spacing-md: 16px;
  --rsp-spacing-lg: 24px;
  --rsp-spacing-xl: 32px;
  --rsp-spacing-xxl: 48px;
  --rsp-font-size-xs: 12px;
  --rsp-font-size-sm: 14px;
  --rsp-font-size-base: 16px;
  --rsp-font-size-lg: 18px;
  --rsp-font-size-xl: 20px;
  --rsp-font-size-xxl: 24px;
  --rsp-font-size-h1: 32px;
  --rsp-font-size-h2: 28px;
  --rsp-font-size-h3: 24px;
  --rsp-font-size-h4: 20px;
  --rsp-font-size-h5: 18px;
  --rsp-font-size-h6: 16px;
  --rsp-line-height-tight: 1.25;
  --rsp-line-height-normal: 1.5;
  --rsp-line-height-relaxed: 1.75;
  --rsp-grid-columns: 12;
  --rsp-grid-gutter: 16px;
}

.rsp-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--rsp-spacing-md);
  padding-right: var(--rsp-spacing-md);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .rsp-container {
    max-width: 100%;
    padding-left: var(--rsp-spacing-sm);
    padding-right: var(--rsp-spacing-sm);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rsp-container {
    max-width: var(--rsp-container-tablet);
  }
}
@media (min-width: 1024px) {
  .rsp-container {
    max-width: var(--rsp-container-desktop);
    padding-left: var(--rsp-spacing-lg);
    padding-right: var(--rsp-spacing-lg);
  }
}
.rsp-container--fluid {
  max-width: 100% !important;
}
.rsp-container--narrow {
  max-width: 800px !important;
}
.rsp-container--wide {
  max-width: 1400px !important;
}

.rsp-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--rsp-grid-gutter) / -2);
  margin-right: calc(var(--rsp-grid-gutter) / -2);
}
.rsp-row--no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.rsp-row--no-gutter > [class*=rsp-col] {
  padding-left: 0;
  padding-right: 0;
}

[class*=rsp-col] {
  position: relative;
  width: 100%;
  padding-left: calc(var(--rsp-grid-gutter) / 2);
  padding-right: calc(var(--rsp-grid-gutter) / 2);
  box-sizing: border-box;
}

.rsp-col {
  flex: 1 0 0%;
}

.rsp-col-auto {
  flex: 0 0 auto;
  width: auto;
}

.rsp-col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.rsp-col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.rsp-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.rsp-col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.rsp-col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.rsp-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.rsp-col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.rsp-col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.rsp-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.rsp-col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.rsp-col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.rsp-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 767px) {
  .rsp-col-mobile {
    flex: 1 0 0%;
  }
  .rsp-col-mobile-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .rsp-col-mobile-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .rsp-col-mobile-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .rsp-col-mobile-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .rsp-col-mobile-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .rsp-col-mobile-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .rsp-col-mobile-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .rsp-col-mobile-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .rsp-col-mobile-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .rsp-col-mobile-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .rsp-col-mobile-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .rsp-col-mobile-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .rsp-col-mobile-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rsp-col-tablet {
    flex: 1 0 0%;
  }
  .rsp-col-tablet-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .rsp-col-tablet-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .rsp-col-tablet-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .rsp-col-tablet-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .rsp-col-tablet-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .rsp-col-tablet-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .rsp-col-tablet-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .rsp-col-tablet-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .rsp-col-tablet-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .rsp-col-tablet-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .rsp-col-tablet-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .rsp-col-tablet-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .rsp-col-tablet-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .rsp-col-desktop {
    flex: 1 0 0%;
  }
  .rsp-col-desktop-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .rsp-col-desktop-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .rsp-col-desktop-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .rsp-col-desktop-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .rsp-col-desktop-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .rsp-col-desktop-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .rsp-col-desktop-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .rsp-col-desktop-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .rsp-col-desktop-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .rsp-col-desktop-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .rsp-col-desktop-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .rsp-col-desktop-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .rsp-col-desktop-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.rsp-offset-0 {
  margin-left: 0;
}

.rsp-offset-1 {
  margin-left: 8.3333333333%;
}

.rsp-offset-2 {
  margin-left: 16.6666666667%;
}

.rsp-offset-3 {
  margin-left: 25%;
}

.rsp-offset-4 {
  margin-left: 33.3333333333%;
}

.rsp-offset-5 {
  margin-left: 41.6666666667%;
}

.rsp-offset-6 {
  margin-left: 50%;
}

.rsp-offset-7 {
  margin-left: 58.3333333333%;
}

.rsp-offset-8 {
  margin-left: 66.6666666667%;
}

.rsp-offset-9 {
  margin-left: 75%;
}

.rsp-offset-10 {
  margin-left: 83.3333333333%;
}

.rsp-offset-11 {
  margin-left: 91.6666666667%;
}

@media (max-width: 767px) {
  .rsp-offset-mobile-0 {
    margin-left: 0;
  }
  .rsp-offset-mobile-1 {
    margin-left: 8.3333333333%;
  }
  .rsp-offset-mobile-2 {
    margin-left: 16.6666666667%;
  }
  .rsp-offset-mobile-3 {
    margin-left: 25%;
  }
  .rsp-offset-mobile-4 {
    margin-left: 33.3333333333%;
  }
  .rsp-offset-mobile-5 {
    margin-left: 41.6666666667%;
  }
  .rsp-offset-mobile-6 {
    margin-left: 50%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rsp-offset-tablet-0 {
    margin-left: 0;
  }
  .rsp-offset-tablet-1 {
    margin-left: 8.3333333333%;
  }
  .rsp-offset-tablet-2 {
    margin-left: 16.6666666667%;
  }
  .rsp-offset-tablet-3 {
    margin-left: 25%;
  }
  .rsp-offset-tablet-4 {
    margin-left: 33.3333333333%;
  }
  .rsp-offset-tablet-5 {
    margin-left: 41.6666666667%;
  }
  .rsp-offset-tablet-6 {
    margin-left: 50%;
  }
}
@media (min-width: 1024px) {
  .rsp-offset-desktop-0 {
    margin-left: 0;
  }
  .rsp-offset-desktop-1 {
    margin-left: 8.3333333333%;
  }
  .rsp-offset-desktop-2 {
    margin-left: 16.6666666667%;
  }
  .rsp-offset-desktop-3 {
    margin-left: 25%;
  }
  .rsp-offset-desktop-4 {
    margin-left: 33.3333333333%;
  }
  .rsp-offset-desktop-5 {
    margin-left: 41.6666666667%;
  }
  .rsp-offset-desktop-6 {
    margin-left: 50%;
  }
}
.rsp-d-none {
  display: none !important;
}

.rsp-d-block {
  display: block !important;
}

.rsp-d-inline {
  display: inline !important;
}

.rsp-d-inline-block {
  display: inline-block !important;
}

.rsp-d-flex {
  display: flex !important;
}

.rsp-d-inline-flex {
  display: inline-flex !important;
}

.rsp-d-grid {
  display: grid !important;
}

.rsp-d-table {
  display: table !important;
}

.rsp-d-table-cell {
  display: table-cell !important;
}

.rsp-d-table-row {
  display: table-row !important;
}

@media (max-width: 767px) {
  .rsp-d-none-mobile {
    display: none !important;
  }
  .rsp-d-block-mobile {
    display: block !important;
  }
  .rsp-d-inline-mobile {
    display: inline !important;
  }
  .rsp-d-inline-block-mobile {
    display: inline-block !important;
  }
  .rsp-d-flex-mobile {
    display: flex !important;
  }
  .rsp-d-inline-flex-mobile {
    display: inline-flex !important;
  }
  .rsp-d-grid-mobile {
    display: grid !important;
  }
  .rsp-d-table-mobile {
    display: table !important;
  }
  .rsp-d-table-cell-mobile {
    display: table-cell !important;
  }
  .rsp-d-table-row-mobile {
    display: table-row !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rsp-d-none-tablet {
    display: none !important;
  }
  .rsp-d-block-tablet {
    display: block !important;
  }
  .rsp-d-inline-tablet {
    display: inline !important;
  }
  .rsp-d-inline-block-tablet {
    display: inline-block !important;
  }
  .rsp-d-flex-tablet {
    display: flex !important;
  }
  .rsp-d-inline-flex-tablet {
    display: inline-flex !important;
  }
  .rsp-d-grid-tablet {
    display: grid !important;
  }
  .rsp-d-table-tablet {
    display: table !important;
  }
  .rsp-d-table-cell-tablet {
    display: table-cell !important;
  }
  .rsp-d-table-row-tablet {
    display: table-row !important;
  }
}
@media (min-width: 1024px) {
  .rsp-d-none-desktop {
    display: none !important;
  }
  .rsp-d-block-desktop {
    display: block !important;
  }
  .rsp-d-inline-desktop {
    display: inline !important;
  }
  .rsp-d-inline-block-desktop {
    display: inline-block !important;
  }
  .rsp-d-flex-desktop {
    display: flex !important;
  }
  .rsp-d-inline-flex-desktop {
    display: inline-flex !important;
  }
  .rsp-d-grid-desktop {
    display: grid !important;
  }
  .rsp-d-table-desktop {
    display: table !important;
  }
  .rsp-d-table-cell-desktop {
    display: table-cell !important;
  }
  .rsp-d-table-row-desktop {
    display: table-row !important;
  }
}
.rsp-mobile-only,
.rsp-tablet-only,
.rsp-desktop-only {
  display: none !important;
}

@media (max-width: 767px) {
  .rsp-mobile-only {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rsp-tablet-only {
    display: block !important;
  }
}
@media (min-width: 1024px) {
  .rsp-desktop-only {
    display: block !important;
  }
}
.rsp-flex-row {
  flex-direction: row !important;
}

.rsp-flex-row-reverse {
  flex-direction: row-reverse !important;
}

.rsp-flex-column {
  flex-direction: column !important;
}

.rsp-flex-column-reverse {
  flex-direction: column-reverse !important;
}

.rsp-flex-wrap {
  flex-wrap: wrap !important;
}

.rsp-flex-nowrap {
  flex-wrap: nowrap !important;
}

.rsp-flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.rsp-justify-start {
  justify-content: flex-start !important;
}

.rsp-justify-end {
  justify-content: flex-end !important;
}

.rsp-justify-center {
  justify-content: center !important;
}

.rsp-justify-between {
  justify-content: space-between !important;
}

.rsp-justify-around {
  justify-content: space-around !important;
}

.rsp-justify-evenly {
  justify-content: space-evenly !important;
}

.rsp-align-start {
  align-items: flex-start !important;
}

.rsp-align-end {
  align-items: flex-end !important;
}

.rsp-align-center {
  align-items: center !important;
}

.rsp-align-baseline {
  align-items: baseline !important;
}

.rsp-align-stretch {
  align-items: stretch !important;
}

.rsp-align-self-auto {
  align-self: auto !important;
}

.rsp-align-self-start {
  align-self: flex-start !important;
}

.rsp-align-self-end {
  align-self: flex-end !important;
}

.rsp-align-self-center {
  align-self: center !important;
}

.rsp-align-self-stretch {
  align-self: stretch !important;
}

.rsp-flex-grow-0 {
  flex-grow: 0 !important;
}

.rsp-flex-grow-1 {
  flex-grow: 1 !important;
}

.rsp-flex-shrink-0 {
  flex-shrink: 0 !important;
}

.rsp-flex-shrink-1 {
  flex-shrink: 1 !important;
}

.rsp-gap-0 {
  gap: 0 !important;
}

.rsp-gap-xs {
  gap: var(--rsp-spacing-xs) !important;
}

.rsp-gap-sm {
  gap: var(--rsp-spacing-sm) !important;
}

.rsp-gap-md {
  gap: var(--rsp-spacing-md) !important;
}

.rsp-gap-lg {
  gap: var(--rsp-spacing-lg) !important;
}

.rsp-gap-xl {
  gap: var(--rsp-spacing-xl) !important;
}

@media (max-width: 767px) {
  .rsp-flex-row-mobile {
    flex-direction: row !important;
  }
  .rsp-flex-column-mobile {
    flex-direction: column !important;
  }
  .rsp-justify-start-mobile {
    justify-content: flex-start !important;
  }
  .rsp-justify-center-mobile {
    justify-content: center !important;
  }
  .rsp-justify-between-mobile {
    justify-content: space-between !important;
  }
  .rsp-align-start-mobile {
    align-items: flex-start !important;
  }
  .rsp-align-center-mobile {
    align-items: center !important;
  }
  .rsp-gap-sm-mobile {
    gap: var(--rsp-spacing-sm) !important;
  }
  .rsp-gap-md-mobile {
    gap: var(--rsp-spacing-md) !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rsp-flex-row-tablet {
    flex-direction: row !important;
  }
  .rsp-flex-column-tablet {
    flex-direction: column !important;
  }
  .rsp-justify-start-tablet {
    justify-content: flex-start !important;
  }
  .rsp-justify-center-tablet {
    justify-content: center !important;
  }
  .rsp-justify-between-tablet {
    justify-content: space-between !important;
  }
  .rsp-align-start-tablet {
    align-items: flex-start !important;
  }
  .rsp-align-center-tablet {
    align-items: center !important;
  }
  .rsp-gap-sm-tablet {
    gap: var(--rsp-spacing-sm) !important;
  }
  .rsp-gap-md-tablet {
    gap: var(--rsp-spacing-md) !important;
  }
}
@media (min-width: 1024px) {
  .rsp-flex-row-desktop {
    flex-direction: row !important;
  }
  .rsp-flex-column-desktop {
    flex-direction: column !important;
  }
  .rsp-justify-start-desktop {
    justify-content: flex-start !important;
  }
  .rsp-justify-center-desktop {
    justify-content: center !important;
  }
  .rsp-justify-between-desktop {
    justify-content: space-between !important;
  }
  .rsp-align-start-desktop {
    align-items: flex-start !important;
  }
  .rsp-align-center-desktop {
    align-items: center !important;
  }
  .rsp-gap-sm-desktop {
    gap: var(--rsp-spacing-sm) !important;
  }
  .rsp-gap-md-desktop {
    gap: var(--rsp-spacing-md) !important;
  }
}
.rsp-text-xs {
  font-size: var(--rsp-font-size-xs) !important;
}

.rsp-text-sm {
  font-size: var(--rsp-font-size-sm) !important;
}

.rsp-text-base {
  font-size: var(--rsp-font-size-base) !important;
}

.rsp-text-lg {
  font-size: var(--rsp-font-size-lg) !important;
}

.rsp-text-xl {
  font-size: var(--rsp-font-size-xl) !important;
}

.rsp-text-xxl {
  font-size: var(--rsp-font-size-xxl) !important;
}

.rsp-h1 {
  font-size: var(--rsp-font-size-h1);
  font-weight: 700;
  line-height: var(--rsp-line-height-tight);
  margin-bottom: var(--rsp-spacing-md);
}

.rsp-h2 {
  font-size: var(--rsp-font-size-h2);
  font-weight: 700;
  line-height: var(--rsp-line-height-tight);
  margin-bottom: var(--rsp-spacing-md);
}

.rsp-h3 {
  font-size: var(--rsp-font-size-h3);
  font-weight: 600;
  line-height: var(--rsp-line-height-tight);
  margin-bottom: var(--rsp-spacing-sm);
}

.rsp-h4 {
  font-size: var(--rsp-font-size-h4);
  font-weight: 600;
  line-height: var(--rsp-line-height-normal);
  margin-bottom: var(--rsp-spacing-sm);
}

.rsp-h5 {
  font-size: var(--rsp-font-size-h5);
  font-weight: 500;
  line-height: var(--rsp-line-height-normal);
  margin-bottom: var(--rsp-spacing-xs);
}

.rsp-h6 {
  font-size: var(--rsp-font-size-h6);
  font-weight: 500;
  line-height: var(--rsp-line-height-normal);
  margin-bottom: var(--rsp-spacing-xs);
}

.rsp-body {
  font-size: var(--rsp-font-size-base);
  line-height: var(--rsp-line-height-normal);
}

.rsp-body-sm {
  font-size: var(--rsp-font-size-sm);
  line-height: var(--rsp-line-height-normal);
}

.rsp-body-lg {
  font-size: var(--rsp-font-size-lg);
  line-height: var(--rsp-line-height-relaxed);
}

.rsp-leading-tight {
  line-height: var(--rsp-line-height-tight) !important;
}

.rsp-leading-normal {
  line-height: var(--rsp-line-height-normal) !important;
}

.rsp-leading-relaxed {
  line-height: var(--rsp-line-height-relaxed) !important;
}

.rsp-text-left {
  text-align: left !important;
}

.rsp-text-center {
  text-align: center !important;
}

.rsp-text-right {
  text-align: right !important;
}

.rsp-text-justify {
  text-align: justify !important;
}

@media (max-width: 767px) {
  :root {
    --rsp-font-size-h1: 24px;
    --rsp-font-size-h2: 22px;
    --rsp-font-size-h3: 20px;
    --rsp-font-size-h4: 18px;
    --rsp-font-size-h5: 16px;
    --rsp-font-size-h6: 14px;
  }
  .rsp-text-xs-mobile {
    font-size: var(--rsp-font-size-xs) !important;
  }
  .rsp-text-sm-mobile {
    font-size: var(--rsp-font-size-sm) !important;
  }
  .rsp-text-base-mobile {
    font-size: var(--rsp-font-size-base) !important;
  }
  .rsp-text-lg-mobile {
    font-size: var(--rsp-font-size-lg) !important;
  }
  .rsp-text-xl-mobile {
    font-size: var(--rsp-font-size-xl) !important;
  }
  .rsp-text-xxl-mobile {
    font-size: var(--rsp-font-size-xxl) !important;
  }
  .rsp-text-left-mobile {
    text-align: left !important;
  }
  .rsp-text-center-mobile {
    text-align: center !important;
  }
  .rsp-text-right-mobile {
    text-align: right !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --rsp-font-size-h1: 28px;
    --rsp-font-size-h2: 24px;
    --rsp-font-size-h3: 22px;
    --rsp-font-size-h4: 18px;
  }
  .rsp-text-xs-tablet {
    font-size: var(--rsp-font-size-xs) !important;
  }
  .rsp-text-sm-tablet {
    font-size: var(--rsp-font-size-sm) !important;
  }
  .rsp-text-base-tablet {
    font-size: var(--rsp-font-size-base) !important;
  }
  .rsp-text-lg-tablet {
    font-size: var(--rsp-font-size-lg) !important;
  }
  .rsp-text-xl-tablet {
    font-size: var(--rsp-font-size-xl) !important;
  }
  .rsp-text-xxl-tablet {
    font-size: var(--rsp-font-size-xxl) !important;
  }
  .rsp-text-left-tablet {
    text-align: left !important;
  }
  .rsp-text-center-tablet {
    text-align: center !important;
  }
  .rsp-text-right-tablet {
    text-align: right !important;
  }
}
@media (min-width: 1024px) {
  .rsp-text-xs-desktop {
    font-size: var(--rsp-font-size-xs) !important;
  }
  .rsp-text-sm-desktop {
    font-size: var(--rsp-font-size-sm) !important;
  }
  .rsp-text-base-desktop {
    font-size: var(--rsp-font-size-base) !important;
  }
  .rsp-text-lg-desktop {
    font-size: var(--rsp-font-size-lg) !important;
  }
  .rsp-text-xl-desktop {
    font-size: var(--rsp-font-size-xl) !important;
  }
  .rsp-text-xxl-desktop {
    font-size: var(--rsp-font-size-xxl) !important;
  }
  .rsp-text-left-desktop {
    text-align: left !important;
  }
  .rsp-text-center-desktop {
    text-align: center !important;
  }
  .rsp-text-right-desktop {
    text-align: right !important;
  }
}
.rsp-m-0 {
  margin: 0 !important;
}

.rsp-m-xs {
  margin: var(--rsp-spacing-xs) !important;
}

.rsp-m-sm {
  margin: var(--rsp-spacing-sm) !important;
}

.rsp-m-md {
  margin: var(--rsp-spacing-md) !important;
}

.rsp-m-lg {
  margin: var(--rsp-spacing-lg) !important;
}

.rsp-m-xl {
  margin: var(--rsp-spacing-xl) !important;
}

.rsp-m-xxl {
  margin: var(--rsp-spacing-xxl) !important;
}

.rsp-mt-0 {
  margin-top: 0 !important;
}

.rsp-mt-xs {
  margin-top: var(--rsp-spacing-xs) !important;
}

.rsp-mt-sm {
  margin-top: var(--rsp-spacing-sm) !important;
}

.rsp-mt-md {
  margin-top: var(--rsp-spacing-md) !important;
}

.rsp-mt-lg {
  margin-top: var(--rsp-spacing-lg) !important;
}

.rsp-mt-xl {
  margin-top: var(--rsp-spacing-xl) !important;
}

.rsp-mt-xxl {
  margin-top: var(--rsp-spacing-xxl) !important;
}

.rsp-mr-0 {
  margin-right: 0 !important;
}

.rsp-mr-xs {
  margin-right: var(--rsp-spacing-xs) !important;
}

.rsp-mr-sm {
  margin-right: var(--rsp-spacing-sm) !important;
}

.rsp-mr-md {
  margin-right: var(--rsp-spacing-md) !important;
}

.rsp-mr-lg {
  margin-right: var(--rsp-spacing-lg) !important;
}

.rsp-mr-xl {
  margin-right: var(--rsp-spacing-xl) !important;
}

.rsp-mr-xxl {
  margin-right: var(--rsp-spacing-xxl) !important;
}

.rsp-mb-0 {
  margin-bottom: 0 !important;
}

.rsp-mb-xs {
  margin-bottom: var(--rsp-spacing-xs) !important;
}

.rsp-mb-sm {
  margin-bottom: var(--rsp-spacing-sm) !important;
}

.rsp-mb-md {
  margin-bottom: var(--rsp-spacing-md) !important;
}

.rsp-mb-lg {
  margin-bottom: var(--rsp-spacing-lg) !important;
}

.rsp-mb-xl {
  margin-bottom: var(--rsp-spacing-xl) !important;
}

.rsp-mb-xxl {
  margin-bottom: var(--rsp-spacing-xxl) !important;
}

.rsp-ml-0 {
  margin-left: 0 !important;
}

.rsp-ml-xs {
  margin-left: var(--rsp-spacing-xs) !important;
}

.rsp-ml-sm {
  margin-left: var(--rsp-spacing-sm) !important;
}

.rsp-ml-md {
  margin-left: var(--rsp-spacing-md) !important;
}

.rsp-ml-lg {
  margin-left: var(--rsp-spacing-lg) !important;
}

.rsp-ml-xl {
  margin-left: var(--rsp-spacing-xl) !important;
}

.rsp-ml-xxl {
  margin-left: var(--rsp-spacing-xxl) !important;
}

.rsp-p-0 {
  padding: 0 !important;
}

.rsp-p-xs {
  padding: var(--rsp-spacing-xs) !important;
}

.rsp-p-sm {
  padding: var(--rsp-spacing-sm) !important;
}

.rsp-p-md {
  padding: var(--rsp-spacing-md) !important;
}

.rsp-p-lg {
  padding: var(--rsp-spacing-lg) !important;
}

.rsp-p-xl {
  padding: var(--rsp-spacing-xl) !important;
}

.rsp-p-xxl {
  padding: var(--rsp-spacing-xxl) !important;
}

.rsp-pt-0 {
  padding-top: 0 !important;
}

.rsp-pt-xs {
  padding-top: var(--rsp-spacing-xs) !important;
}

.rsp-pt-sm {
  padding-top: var(--rsp-spacing-sm) !important;
}

.rsp-pt-md {
  padding-top: var(--rsp-spacing-md) !important;
}

.rsp-pt-lg {
  padding-top: var(--rsp-spacing-lg) !important;
}

.rsp-pt-xl {
  padding-top: var(--rsp-spacing-xl) !important;
}

.rsp-pt-xxl {
  padding-top: var(--rsp-spacing-xxl) !important;
}

.rsp-pr-0 {
  padding-right: 0 !important;
}

.rsp-pr-xs {
  padding-right: var(--rsp-spacing-xs) !important;
}

.rsp-pr-sm {
  padding-right: var(--rsp-spacing-sm) !important;
}

.rsp-pr-md {
  padding-right: var(--rsp-spacing-md) !important;
}

.rsp-pr-lg {
  padding-right: var(--rsp-spacing-lg) !important;
}

.rsp-pr-xl {
  padding-right: var(--rsp-spacing-xl) !important;
}

.rsp-pr-xxl {
  padding-right: var(--rsp-spacing-xxl) !important;
}

.rsp-pb-0 {
  padding-bottom: 0 !important;
}

.rsp-pb-xs {
  padding-bottom: var(--rsp-spacing-xs) !important;
}

.rsp-pb-sm {
  padding-bottom: var(--rsp-spacing-sm) !important;
}

.rsp-pb-md {
  padding-bottom: var(--rsp-spacing-md) !important;
}

.rsp-pb-lg {
  padding-bottom: var(--rsp-spacing-lg) !important;
}

.rsp-pb-xl {
  padding-bottom: var(--rsp-spacing-xl) !important;
}

.rsp-pb-xxl {
  padding-bottom: var(--rsp-spacing-xxl) !important;
}

.rsp-pl-0 {
  padding-left: 0 !important;
}

.rsp-pl-xs {
  padding-left: var(--rsp-spacing-xs) !important;
}

.rsp-pl-sm {
  padding-left: var(--rsp-spacing-sm) !important;
}

.rsp-pl-md {
  padding-left: var(--rsp-spacing-md) !important;
}

.rsp-pl-lg {
  padding-left: var(--rsp-spacing-lg) !important;
}

.rsp-pl-xl {
  padding-left: var(--rsp-spacing-xl) !important;
}

.rsp-pl-xxl {
  padding-left: var(--rsp-spacing-xxl) !important;
}

.rsp-m-auto {
  margin: auto !important;
}

.rsp-mr-auto {
  margin-right: auto !important;
}

.rsp-ml-auto {
  margin-left: auto !important;
}

.rsp-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.rsp-mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.rsp-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.rsp-px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.rsp-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.rsp-mx-xs {
  margin-left: var(--rsp-spacing-xs) !important;
  margin-right: var(--rsp-spacing-xs) !important;
}

.rsp-my-xs {
  margin-top: var(--rsp-spacing-xs) !important;
  margin-bottom: var(--rsp-spacing-xs) !important;
}

.rsp-px-xs {
  padding-left: var(--rsp-spacing-xs) !important;
  padding-right: var(--rsp-spacing-xs) !important;
}

.rsp-py-xs {
  padding-top: var(--rsp-spacing-xs) !important;
  padding-bottom: var(--rsp-spacing-xs) !important;
}

.rsp-mx-sm {
  margin-left: var(--rsp-spacing-sm) !important;
  margin-right: var(--rsp-spacing-sm) !important;
}

.rsp-my-sm {
  margin-top: var(--rsp-spacing-sm) !important;
  margin-bottom: var(--rsp-spacing-sm) !important;
}

.rsp-px-sm {
  padding-left: var(--rsp-spacing-sm) !important;
  padding-right: var(--rsp-spacing-sm) !important;
}

.rsp-py-sm {
  padding-top: var(--rsp-spacing-sm) !important;
  padding-bottom: var(--rsp-spacing-sm) !important;
}

.rsp-mx-md {
  margin-left: var(--rsp-spacing-md) !important;
  margin-right: var(--rsp-spacing-md) !important;
}

.rsp-my-md {
  margin-top: var(--rsp-spacing-md) !important;
  margin-bottom: var(--rsp-spacing-md) !important;
}

.rsp-px-md {
  padding-left: var(--rsp-spacing-md) !important;
  padding-right: var(--rsp-spacing-md) !important;
}

.rsp-py-md {
  padding-top: var(--rsp-spacing-md) !important;
  padding-bottom: var(--rsp-spacing-md) !important;
}

.rsp-mx-lg {
  margin-left: var(--rsp-spacing-lg) !important;
  margin-right: var(--rsp-spacing-lg) !important;
}

.rsp-my-lg {
  margin-top: var(--rsp-spacing-lg) !important;
  margin-bottom: var(--rsp-spacing-lg) !important;
}

.rsp-px-lg {
  padding-left: var(--rsp-spacing-lg) !important;
  padding-right: var(--rsp-spacing-lg) !important;
}

.rsp-py-lg {
  padding-top: var(--rsp-spacing-lg) !important;
  padding-bottom: var(--rsp-spacing-lg) !important;
}

.rsp-mx-xl {
  margin-left: var(--rsp-spacing-xl) !important;
  margin-right: var(--rsp-spacing-xl) !important;
}

.rsp-my-xl {
  margin-top: var(--rsp-spacing-xl) !important;
  margin-bottom: var(--rsp-spacing-xl) !important;
}

.rsp-px-xl {
  padding-left: var(--rsp-spacing-xl) !important;
  padding-right: var(--rsp-spacing-xl) !important;
}

.rsp-py-xl {
  padding-top: var(--rsp-spacing-xl) !important;
  padding-bottom: var(--rsp-spacing-xl) !important;
}

.rsp-mx-xxl {
  margin-left: var(--rsp-spacing-xxl) !important;
  margin-right: var(--rsp-spacing-xxl) !important;
}

.rsp-my-xxl {
  margin-top: var(--rsp-spacing-xxl) !important;
  margin-bottom: var(--rsp-spacing-xxl) !important;
}

.rsp-px-xxl {
  padding-left: var(--rsp-spacing-xxl) !important;
  padding-right: var(--rsp-spacing-xxl) !important;
}

.rsp-py-xxl {
  padding-top: var(--rsp-spacing-xxl) !important;
  padding-bottom: var(--rsp-spacing-xxl) !important;
}

@media (max-width: 767px) {
  .rsp-m-0-mobile {
    margin: 0 !important;
  }
  .rsp-m-xs-mobile {
    margin: var(--rsp-spacing-xs) !important;
  }
  .rsp-m-sm-mobile {
    margin: var(--rsp-spacing-sm) !important;
  }
  .rsp-m-md-mobile {
    margin: var(--rsp-spacing-md) !important;
  }
  .rsp-m-lg-mobile {
    margin: var(--rsp-spacing-lg) !important;
  }
  .rsp-m-xl-mobile {
    margin: var(--rsp-spacing-xl) !important;
  }
  .rsp-m-xxl-mobile {
    margin: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mt-0-mobile {
    margin-top: 0 !important;
  }
  .rsp-mt-xs-mobile {
    margin-top: var(--rsp-spacing-xs) !important;
  }
  .rsp-mt-sm-mobile {
    margin-top: var(--rsp-spacing-sm) !important;
  }
  .rsp-mt-md-mobile {
    margin-top: var(--rsp-spacing-md) !important;
  }
  .rsp-mt-lg-mobile {
    margin-top: var(--rsp-spacing-lg) !important;
  }
  .rsp-mt-xl-mobile {
    margin-top: var(--rsp-spacing-xl) !important;
  }
  .rsp-mt-xxl-mobile {
    margin-top: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mr-0-mobile {
    margin-right: 0 !important;
  }
  .rsp-mr-xs-mobile {
    margin-right: var(--rsp-spacing-xs) !important;
  }
  .rsp-mr-sm-mobile {
    margin-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-mr-md-mobile {
    margin-right: var(--rsp-spacing-md) !important;
  }
  .rsp-mr-lg-mobile {
    margin-right: var(--rsp-spacing-lg) !important;
  }
  .rsp-mr-xl-mobile {
    margin-right: var(--rsp-spacing-xl) !important;
  }
  .rsp-mr-xxl-mobile {
    margin-right: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mb-0-mobile {
    margin-bottom: 0 !important;
  }
  .rsp-mb-xs-mobile {
    margin-bottom: var(--rsp-spacing-xs) !important;
  }
  .rsp-mb-sm-mobile {
    margin-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-mb-md-mobile {
    margin-bottom: var(--rsp-spacing-md) !important;
  }
  .rsp-mb-lg-mobile {
    margin-bottom: var(--rsp-spacing-lg) !important;
  }
  .rsp-mb-xl-mobile {
    margin-bottom: var(--rsp-spacing-xl) !important;
  }
  .rsp-mb-xxl-mobile {
    margin-bottom: var(--rsp-spacing-xxl) !important;
  }
  .rsp-ml-0-mobile {
    margin-left: 0 !important;
  }
  .rsp-ml-xs-mobile {
    margin-left: var(--rsp-spacing-xs) !important;
  }
  .rsp-ml-sm-mobile {
    margin-left: var(--rsp-spacing-sm) !important;
  }
  .rsp-ml-md-mobile {
    margin-left: var(--rsp-spacing-md) !important;
  }
  .rsp-ml-lg-mobile {
    margin-left: var(--rsp-spacing-lg) !important;
  }
  .rsp-ml-xl-mobile {
    margin-left: var(--rsp-spacing-xl) !important;
  }
  .rsp-ml-xxl-mobile {
    margin-left: var(--rsp-spacing-xxl) !important;
  }
  .rsp-p-0-mobile {
    padding: 0 !important;
  }
  .rsp-p-xs-mobile {
    padding: var(--rsp-spacing-xs) !important;
  }
  .rsp-p-sm-mobile {
    padding: var(--rsp-spacing-sm) !important;
  }
  .rsp-p-md-mobile {
    padding: var(--rsp-spacing-md) !important;
  }
  .rsp-p-lg-mobile {
    padding: var(--rsp-spacing-lg) !important;
  }
  .rsp-p-xl-mobile {
    padding: var(--rsp-spacing-xl) !important;
  }
  .rsp-p-xxl-mobile {
    padding: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pt-0-mobile {
    padding-top: 0 !important;
  }
  .rsp-pt-xs-mobile {
    padding-top: var(--rsp-spacing-xs) !important;
  }
  .rsp-pt-sm-mobile {
    padding-top: var(--rsp-spacing-sm) !important;
  }
  .rsp-pt-md-mobile {
    padding-top: var(--rsp-spacing-md) !important;
  }
  .rsp-pt-lg-mobile {
    padding-top: var(--rsp-spacing-lg) !important;
  }
  .rsp-pt-xl-mobile {
    padding-top: var(--rsp-spacing-xl) !important;
  }
  .rsp-pt-xxl-mobile {
    padding-top: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pr-0-mobile {
    padding-right: 0 !important;
  }
  .rsp-pr-xs-mobile {
    padding-right: var(--rsp-spacing-xs) !important;
  }
  .rsp-pr-sm-mobile {
    padding-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-pr-md-mobile {
    padding-right: var(--rsp-spacing-md) !important;
  }
  .rsp-pr-lg-mobile {
    padding-right: var(--rsp-spacing-lg) !important;
  }
  .rsp-pr-xl-mobile {
    padding-right: var(--rsp-spacing-xl) !important;
  }
  .rsp-pr-xxl-mobile {
    padding-right: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pb-0-mobile {
    padding-bottom: 0 !important;
  }
  .rsp-pb-xs-mobile {
    padding-bottom: var(--rsp-spacing-xs) !important;
  }
  .rsp-pb-sm-mobile {
    padding-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-pb-md-mobile {
    padding-bottom: var(--rsp-spacing-md) !important;
  }
  .rsp-pb-lg-mobile {
    padding-bottom: var(--rsp-spacing-lg) !important;
  }
  .rsp-pb-xl-mobile {
    padding-bottom: var(--rsp-spacing-xl) !important;
  }
  .rsp-pb-xxl-mobile {
    padding-bottom: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pl-0-mobile {
    padding-left: 0 !important;
  }
  .rsp-pl-xs-mobile {
    padding-left: var(--rsp-spacing-xs) !important;
  }
  .rsp-pl-sm-mobile {
    padding-left: var(--rsp-spacing-sm) !important;
  }
  .rsp-pl-md-mobile {
    padding-left: var(--rsp-spacing-md) !important;
  }
  .rsp-pl-lg-mobile {
    padding-left: var(--rsp-spacing-lg) !important;
  }
  .rsp-pl-xl-mobile {
    padding-left: var(--rsp-spacing-xl) !important;
  }
  .rsp-pl-xxl-mobile {
    padding-left: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mx-0-mobile {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .rsp-mx-sm-mobile {
    margin-left: var(--rsp-spacing-sm) !important;
    margin-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-px-0-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .rsp-px-sm-mobile {
    padding-left: var(--rsp-spacing-sm) !important;
    padding-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-px-md-mobile {
    padding-left: var(--rsp-spacing-md) !important;
    padding-right: var(--rsp-spacing-md) !important;
  }
  .rsp-py-0-mobile {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .rsp-py-sm-mobile {
    padding-top: var(--rsp-spacing-sm) !important;
    padding-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-py-md-mobile {
    padding-top: var(--rsp-spacing-md) !important;
    padding-bottom: var(--rsp-spacing-md) !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rsp-m-0-tablet {
    margin: 0 !important;
  }
  .rsp-m-xs-tablet {
    margin: var(--rsp-spacing-xs) !important;
  }
  .rsp-m-sm-tablet {
    margin: var(--rsp-spacing-sm) !important;
  }
  .rsp-m-md-tablet {
    margin: var(--rsp-spacing-md) !important;
  }
  .rsp-m-lg-tablet {
    margin: var(--rsp-spacing-lg) !important;
  }
  .rsp-m-xl-tablet {
    margin: var(--rsp-spacing-xl) !important;
  }
  .rsp-m-xxl-tablet {
    margin: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mt-0-tablet {
    margin-top: 0 !important;
  }
  .rsp-mt-xs-tablet {
    margin-top: var(--rsp-spacing-xs) !important;
  }
  .rsp-mt-sm-tablet {
    margin-top: var(--rsp-spacing-sm) !important;
  }
  .rsp-mt-md-tablet {
    margin-top: var(--rsp-spacing-md) !important;
  }
  .rsp-mt-lg-tablet {
    margin-top: var(--rsp-spacing-lg) !important;
  }
  .rsp-mt-xl-tablet {
    margin-top: var(--rsp-spacing-xl) !important;
  }
  .rsp-mt-xxl-tablet {
    margin-top: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mr-0-tablet {
    margin-right: 0 !important;
  }
  .rsp-mr-xs-tablet {
    margin-right: var(--rsp-spacing-xs) !important;
  }
  .rsp-mr-sm-tablet {
    margin-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-mr-md-tablet {
    margin-right: var(--rsp-spacing-md) !important;
  }
  .rsp-mr-lg-tablet {
    margin-right: var(--rsp-spacing-lg) !important;
  }
  .rsp-mr-xl-tablet {
    margin-right: var(--rsp-spacing-xl) !important;
  }
  .rsp-mr-xxl-tablet {
    margin-right: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mb-0-tablet {
    margin-bottom: 0 !important;
  }
  .rsp-mb-xs-tablet {
    margin-bottom: var(--rsp-spacing-xs) !important;
  }
  .rsp-mb-sm-tablet {
    margin-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-mb-md-tablet {
    margin-bottom: var(--rsp-spacing-md) !important;
  }
  .rsp-mb-lg-tablet {
    margin-bottom: var(--rsp-spacing-lg) !important;
  }
  .rsp-mb-xl-tablet {
    margin-bottom: var(--rsp-spacing-xl) !important;
  }
  .rsp-mb-xxl-tablet {
    margin-bottom: var(--rsp-spacing-xxl) !important;
  }
  .rsp-ml-0-tablet {
    margin-left: 0 !important;
  }
  .rsp-ml-xs-tablet {
    margin-left: var(--rsp-spacing-xs) !important;
  }
  .rsp-ml-sm-tablet {
    margin-left: var(--rsp-spacing-sm) !important;
  }
  .rsp-ml-md-tablet {
    margin-left: var(--rsp-spacing-md) !important;
  }
  .rsp-ml-lg-tablet {
    margin-left: var(--rsp-spacing-lg) !important;
  }
  .rsp-ml-xl-tablet {
    margin-left: var(--rsp-spacing-xl) !important;
  }
  .rsp-ml-xxl-tablet {
    margin-left: var(--rsp-spacing-xxl) !important;
  }
  .rsp-p-0-tablet {
    padding: 0 !important;
  }
  .rsp-p-xs-tablet {
    padding: var(--rsp-spacing-xs) !important;
  }
  .rsp-p-sm-tablet {
    padding: var(--rsp-spacing-sm) !important;
  }
  .rsp-p-md-tablet {
    padding: var(--rsp-spacing-md) !important;
  }
  .rsp-p-lg-tablet {
    padding: var(--rsp-spacing-lg) !important;
  }
  .rsp-p-xl-tablet {
    padding: var(--rsp-spacing-xl) !important;
  }
  .rsp-p-xxl-tablet {
    padding: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pt-0-tablet {
    padding-top: 0 !important;
  }
  .rsp-pt-xs-tablet {
    padding-top: var(--rsp-spacing-xs) !important;
  }
  .rsp-pt-sm-tablet {
    padding-top: var(--rsp-spacing-sm) !important;
  }
  .rsp-pt-md-tablet {
    padding-top: var(--rsp-spacing-md) !important;
  }
  .rsp-pt-lg-tablet {
    padding-top: var(--rsp-spacing-lg) !important;
  }
  .rsp-pt-xl-tablet {
    padding-top: var(--rsp-spacing-xl) !important;
  }
  .rsp-pt-xxl-tablet {
    padding-top: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pr-0-tablet {
    padding-right: 0 !important;
  }
  .rsp-pr-xs-tablet {
    padding-right: var(--rsp-spacing-xs) !important;
  }
  .rsp-pr-sm-tablet {
    padding-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-pr-md-tablet {
    padding-right: var(--rsp-spacing-md) !important;
  }
  .rsp-pr-lg-tablet {
    padding-right: var(--rsp-spacing-lg) !important;
  }
  .rsp-pr-xl-tablet {
    padding-right: var(--rsp-spacing-xl) !important;
  }
  .rsp-pr-xxl-tablet {
    padding-right: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pb-0-tablet {
    padding-bottom: 0 !important;
  }
  .rsp-pb-xs-tablet {
    padding-bottom: var(--rsp-spacing-xs) !important;
  }
  .rsp-pb-sm-tablet {
    padding-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-pb-md-tablet {
    padding-bottom: var(--rsp-spacing-md) !important;
  }
  .rsp-pb-lg-tablet {
    padding-bottom: var(--rsp-spacing-lg) !important;
  }
  .rsp-pb-xl-tablet {
    padding-bottom: var(--rsp-spacing-xl) !important;
  }
  .rsp-pb-xxl-tablet {
    padding-bottom: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pl-0-tablet {
    padding-left: 0 !important;
  }
  .rsp-pl-xs-tablet {
    padding-left: var(--rsp-spacing-xs) !important;
  }
  .rsp-pl-sm-tablet {
    padding-left: var(--rsp-spacing-sm) !important;
  }
  .rsp-pl-md-tablet {
    padding-left: var(--rsp-spacing-md) !important;
  }
  .rsp-pl-lg-tablet {
    padding-left: var(--rsp-spacing-lg) !important;
  }
  .rsp-pl-xl-tablet {
    padding-left: var(--rsp-spacing-xl) !important;
  }
  .rsp-pl-xxl-tablet {
    padding-left: var(--rsp-spacing-xxl) !important;
  }
  .rsp-px-0-tablet {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .rsp-px-sm-tablet {
    padding-left: var(--rsp-spacing-sm) !important;
    padding-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-px-md-tablet {
    padding-left: var(--rsp-spacing-md) !important;
    padding-right: var(--rsp-spacing-md) !important;
  }
  .rsp-py-0-tablet {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .rsp-py-sm-tablet {
    padding-top: var(--rsp-spacing-sm) !important;
    padding-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-py-md-tablet {
    padding-top: var(--rsp-spacing-md) !important;
    padding-bottom: var(--rsp-spacing-md) !important;
  }
}
@media (min-width: 1024px) {
  .rsp-m-0-desktop {
    margin: 0 !important;
  }
  .rsp-m-xs-desktop {
    margin: var(--rsp-spacing-xs) !important;
  }
  .rsp-m-sm-desktop {
    margin: var(--rsp-spacing-sm) !important;
  }
  .rsp-m-md-desktop {
    margin: var(--rsp-spacing-md) !important;
  }
  .rsp-m-lg-desktop {
    margin: var(--rsp-spacing-lg) !important;
  }
  .rsp-m-xl-desktop {
    margin: var(--rsp-spacing-xl) !important;
  }
  .rsp-m-xxl-desktop {
    margin: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mt-0-desktop {
    margin-top: 0 !important;
  }
  .rsp-mt-xs-desktop {
    margin-top: var(--rsp-spacing-xs) !important;
  }
  .rsp-mt-sm-desktop {
    margin-top: var(--rsp-spacing-sm) !important;
  }
  .rsp-mt-md-desktop {
    margin-top: var(--rsp-spacing-md) !important;
  }
  .rsp-mt-lg-desktop {
    margin-top: var(--rsp-spacing-lg) !important;
  }
  .rsp-mt-xl-desktop {
    margin-top: var(--rsp-spacing-xl) !important;
  }
  .rsp-mt-xxl-desktop {
    margin-top: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mr-0-desktop {
    margin-right: 0 !important;
  }
  .rsp-mr-xs-desktop {
    margin-right: var(--rsp-spacing-xs) !important;
  }
  .rsp-mr-sm-desktop {
    margin-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-mr-md-desktop {
    margin-right: var(--rsp-spacing-md) !important;
  }
  .rsp-mr-lg-desktop {
    margin-right: var(--rsp-spacing-lg) !important;
  }
  .rsp-mr-xl-desktop {
    margin-right: var(--rsp-spacing-xl) !important;
  }
  .rsp-mr-xxl-desktop {
    margin-right: var(--rsp-spacing-xxl) !important;
  }
  .rsp-mb-0-desktop {
    margin-bottom: 0 !important;
  }
  .rsp-mb-xs-desktop {
    margin-bottom: var(--rsp-spacing-xs) !important;
  }
  .rsp-mb-sm-desktop {
    margin-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-mb-md-desktop {
    margin-bottom: var(--rsp-spacing-md) !important;
  }
  .rsp-mb-lg-desktop {
    margin-bottom: var(--rsp-spacing-lg) !important;
  }
  .rsp-mb-xl-desktop {
    margin-bottom: var(--rsp-spacing-xl) !important;
  }
  .rsp-mb-xxl-desktop {
    margin-bottom: var(--rsp-spacing-xxl) !important;
  }
  .rsp-ml-0-desktop {
    margin-left: 0 !important;
  }
  .rsp-ml-xs-desktop {
    margin-left: var(--rsp-spacing-xs) !important;
  }
  .rsp-ml-sm-desktop {
    margin-left: var(--rsp-spacing-sm) !important;
  }
  .rsp-ml-md-desktop {
    margin-left: var(--rsp-spacing-md) !important;
  }
  .rsp-ml-lg-desktop {
    margin-left: var(--rsp-spacing-lg) !important;
  }
  .rsp-ml-xl-desktop {
    margin-left: var(--rsp-spacing-xl) !important;
  }
  .rsp-ml-xxl-desktop {
    margin-left: var(--rsp-spacing-xxl) !important;
  }
  .rsp-p-0-desktop {
    padding: 0 !important;
  }
  .rsp-p-xs-desktop {
    padding: var(--rsp-spacing-xs) !important;
  }
  .rsp-p-sm-desktop {
    padding: var(--rsp-spacing-sm) !important;
  }
  .rsp-p-md-desktop {
    padding: var(--rsp-spacing-md) !important;
  }
  .rsp-p-lg-desktop {
    padding: var(--rsp-spacing-lg) !important;
  }
  .rsp-p-xl-desktop {
    padding: var(--rsp-spacing-xl) !important;
  }
  .rsp-p-xxl-desktop {
    padding: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pt-0-desktop {
    padding-top: 0 !important;
  }
  .rsp-pt-xs-desktop {
    padding-top: var(--rsp-spacing-xs) !important;
  }
  .rsp-pt-sm-desktop {
    padding-top: var(--rsp-spacing-sm) !important;
  }
  .rsp-pt-md-desktop {
    padding-top: var(--rsp-spacing-md) !important;
  }
  .rsp-pt-lg-desktop {
    padding-top: var(--rsp-spacing-lg) !important;
  }
  .rsp-pt-xl-desktop {
    padding-top: var(--rsp-spacing-xl) !important;
  }
  .rsp-pt-xxl-desktop {
    padding-top: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pr-0-desktop {
    padding-right: 0 !important;
  }
  .rsp-pr-xs-desktop {
    padding-right: var(--rsp-spacing-xs) !important;
  }
  .rsp-pr-sm-desktop {
    padding-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-pr-md-desktop {
    padding-right: var(--rsp-spacing-md) !important;
  }
  .rsp-pr-lg-desktop {
    padding-right: var(--rsp-spacing-lg) !important;
  }
  .rsp-pr-xl-desktop {
    padding-right: var(--rsp-spacing-xl) !important;
  }
  .rsp-pr-xxl-desktop {
    padding-right: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pb-0-desktop {
    padding-bottom: 0 !important;
  }
  .rsp-pb-xs-desktop {
    padding-bottom: var(--rsp-spacing-xs) !important;
  }
  .rsp-pb-sm-desktop {
    padding-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-pb-md-desktop {
    padding-bottom: var(--rsp-spacing-md) !important;
  }
  .rsp-pb-lg-desktop {
    padding-bottom: var(--rsp-spacing-lg) !important;
  }
  .rsp-pb-xl-desktop {
    padding-bottom: var(--rsp-spacing-xl) !important;
  }
  .rsp-pb-xxl-desktop {
    padding-bottom: var(--rsp-spacing-xxl) !important;
  }
  .rsp-pl-0-desktop {
    padding-left: 0 !important;
  }
  .rsp-pl-xs-desktop {
    padding-left: var(--rsp-spacing-xs) !important;
  }
  .rsp-pl-sm-desktop {
    padding-left: var(--rsp-spacing-sm) !important;
  }
  .rsp-pl-md-desktop {
    padding-left: var(--rsp-spacing-md) !important;
  }
  .rsp-pl-lg-desktop {
    padding-left: var(--rsp-spacing-lg) !important;
  }
  .rsp-pl-xl-desktop {
    padding-left: var(--rsp-spacing-xl) !important;
  }
  .rsp-pl-xxl-desktop {
    padding-left: var(--rsp-spacing-xxl) !important;
  }
  .rsp-px-0-desktop {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .rsp-px-sm-desktop {
    padding-left: var(--rsp-spacing-sm) !important;
    padding-right: var(--rsp-spacing-sm) !important;
  }
  .rsp-px-md-desktop {
    padding-left: var(--rsp-spacing-md) !important;
    padding-right: var(--rsp-spacing-md) !important;
  }
  .rsp-px-lg-desktop {
    padding-left: var(--rsp-spacing-lg) !important;
    padding-right: var(--rsp-spacing-lg) !important;
  }
  .rsp-py-0-desktop {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .rsp-py-sm-desktop {
    padding-top: var(--rsp-spacing-sm) !important;
    padding-bottom: var(--rsp-spacing-sm) !important;
  }
  .rsp-py-md-desktop {
    padding-top: var(--rsp-spacing-md) !important;
    padding-bottom: var(--rsp-spacing-md) !important;
  }
  .rsp-py-lg-desktop {
    padding-top: var(--rsp-spacing-lg) !important;
    padding-bottom: var(--rsp-spacing-lg) !important;
  }
}
.rsp-img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.rsp-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rsp-img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rsp-ratio {
  position: relative;
  width: 100%;
}
.rsp-ratio::before {
  content: "";
  display: block;
}
.rsp-ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rsp-ratio-1x1::before {
  padding-top: 100%;
}

.rsp-ratio-4x3::before {
  padding-top: 75%;
}

.rsp-ratio-16x9::before {
  padding-top: 56.25%;
}

.rsp-ratio-21x9::before {
  padding-top: 42.857%;
}

.rsp-ratio-3x4::before {
  padding-top: 133.333%;
}

.rsp-ratio-9x16::before {
  padding-top: 177.778%;
}

.rsp-bg-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rsp-bg-contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.rsp-w-auto {
  width: auto !important;
}

.rsp-w-25 {
  width: 25% !important;
}

.rsp-w-50 {
  width: 50% !important;
}

.rsp-w-75 {
  width: 75% !important;
}

.rsp-w-100 {
  width: 100% !important;
}

.rsp-w-screen {
  width: 100vw !important;
}

.rsp-max-w-100 {
  max-width: 100% !important;
}

.rsp-min-w-0 {
  min-width: 0 !important;
}

.rsp-h-auto {
  height: auto !important;
}

.rsp-h-25 {
  height: 25% !important;
}

.rsp-h-50 {
  height: 50% !important;
}

.rsp-h-75 {
  height: 75% !important;
}

.rsp-h-100 {
  height: 100% !important;
}

.rsp-h-screen {
  height: 100vh !important;
}

.rsp-min-h-screen {
  min-height: 100vh !important;
}

@media (max-width: 767px) {
  .rsp-w-100-mobile {
    width: 100% !important;
  }
  .rsp-w-auto-mobile {
    width: auto !important;
  }
  .rsp-h-auto-mobile {
    height: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .rsp-w-100-tablet {
    width: 100% !important;
  }
  .rsp-w-auto-tablet {
    width: auto !important;
  }
  .rsp-h-auto-tablet {
    height: auto !important;
  }
}
@media (min-width: 1024px) {
  .rsp-w-100-desktop {
    width: 100% !important;
  }
  .rsp-w-auto-desktop {
    width: auto !important;
  }
  .rsp-h-auto-desktop {
    height: auto !important;
  }
}
.rsp-position-static {
  position: static !important;
}

.rsp-position-relative {
  position: relative !important;
}

.rsp-position-absolute {
  position: absolute !important;
}

.rsp-position-fixed {
  position: fixed !important;
}

.rsp-position-sticky {
  position: sticky !important;
}

.rsp-sticky-top {
  position: sticky !important;
  top: 0;
  z-index: 1020;
}

.rsp-sticky-bottom {
  position: sticky !important;
  bottom: 0;
  z-index: 1020;
}

.rsp-fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.rsp-fixed-bottom {
  position: fixed !important;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.rsp-overflow-auto {
  overflow: auto !important;
}

.rsp-overflow-hidden {
  overflow: hidden !important;
}

.rsp-overflow-visible {
  overflow: visible !important;
}

.rsp-overflow-scroll {
  overflow: scroll !important;
}

.rsp-overflow-x-auto {
  overflow-x: auto !important;
}

.rsp-overflow-x-hidden {
  overflow-x: hidden !important;
}

.rsp-overflow-y-auto {
  overflow-y: auto !important;
}

.rsp-overflow-y-hidden {
  overflow-y: hidden !important;
}

.rsp-z-0 {
  z-index: 0 !important;
}

.rsp-z-10 {
  z-index: 10 !important;
}

.rsp-z-20 {
  z-index: 20 !important;
}

.rsp-z-30 {
  z-index: 30 !important;
}

.rsp-z-40 {
  z-index: 40 !important;
}

.rsp-z-50 {
  z-index: 50 !important;
}

.rsp-z-auto {
  z-index: auto !important;
}

.rsp-rounded-none {
  border-radius: 0 !important;
}

.rsp-rounded-sm {
  border-radius: 4px !important;
}

.rsp-rounded {
  border-radius: 8px !important;
}

.rsp-rounded-lg {
  border-radius: 12px !important;
}

.rsp-rounded-xl {
  border-radius: 16px !important;
}

.rsp-rounded-full {
  border-radius: 9999px !important;
}

.rsp-shadow-none {
  box-shadow: none !important;
}

.rsp-shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.rsp-shadow {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.rsp-shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.rsp-shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
}

.rsp-shadow-xl {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1) !important;
}

.rsp-cursor-pointer {
  cursor: pointer !important;
}

.rsp-cursor-default {
  cursor: default !important;
}

.rsp-cursor-not-allowed {
  cursor: not-allowed !important;
}

.rsp-select-none {
  user-select: none !important;
}

.rsp-select-text {
  user-select: text !important;
}

.rsp-select-all {
  user-select: all !important;
}

@media (max-width: 1023px) {
  .rsp-touch-target {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .rsp-no-tap-highlight {
    -webkit-tap-highlight-color: transparent;
  }
  .rsp-scroll-smooth {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}
@media print {
  .rsp-d-print-none {
    display: none !important;
  }
  .rsp-d-print-block {
    display: block !important;
  }
  .rsp-d-print-inline {
    display: inline !important;
  }
  .rsp-d-print-inline-block {
    display: inline-block !important;
  }
  .rsp-row {
    display: block;
  }
  [class*=rsp-col] {
    width: 100%;
    max-width: 100%;
  }
}
.rsp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.rsp-sr-only-focusable:focus, .rsp-sr-only-focusable:active {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.rsp-focus-visible:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .rsp-container,
  [class*=rsp-col] {
    border: 1px solid currentColor;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --admin-sidebar-width: 260px;
  --admin-sidebar-collapsed-width: 70px;
  --admin-header-height: 60px;
  --admin-breakpoint-mobile: 767px;
  --admin-breakpoint-tablet: 1023px;
  --admin-breakpoint-desktop: 1024px;
  --admin-touch-target: 44px;
  --admin-transition-fast: 0.2s ease;
  --admin-transition-normal: 0.3s ease;
}

.admin-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--admin-transition-normal);
}
.admin-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

html.dark-mode .admin-mobile-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.admin-hamburger {
  display: none;
  position: fixed;
  top: 10px;
  left: 10px;
  width: var(--admin-touch-target);
  height: var(--admin-touch-target);
  padding: 10px;
  background: var(--primary-color, #6366f1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: var(--admin-transition-fast);
}
.admin-hamburger:hover {
  background: var(--primary-dark, #4f46e5);
}
.admin-hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: var(--admin-transition-fast);
}
.admin-hamburger.active .admin-hamburger__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.admin-hamburger.active .admin-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.admin-hamburger.active .admin-hamburger__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .admin-sidebar {
    width: var(--admin-sidebar-collapsed-width) !important;
  }
  .admin-sidebar .sidebar-brand span,
  .admin-sidebar .nav-text,
  .admin-sidebar .nav-badge,
  .admin-sidebar .nav-title,
  .admin-sidebar .user-info,
  .admin-sidebar .sidebar-user {
    display: none !important;
  }
  .admin-sidebar .sidebar-nav {
    padding: 0 8px;
  }
  .admin-sidebar .nav-link {
    justify-content: center;
    padding: 12px !important;
  }
  .admin-sidebar .nav-icon {
    margin: 0;
    font-size: 18px;
  }
  .admin-sidebar .sidebar-brand {
    justify-content: center;
    padding: 16px 8px;
  }
  .admin-sidebar .brand-logo {
    margin: 0;
  }
  .admin-main {
    margin-left: var(--admin-sidebar-collapsed-width) !important;
    width: calc(100% - var(--admin-sidebar-collapsed-width)) !important;
  }
}
@media (max-width: 767px) {
  .admin-hamburger {
    display: flex;
  }
  .admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--admin-sidebar-width);
    transform: translateX(-100%);
    transition: transform var(--admin-transition-normal);
    z-index: 1000;
  }
  .admin-sidebar.mobile-open {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .admin-header {
    padding-left: 60px;
  }
  .admin-sidebar-close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    color: var(--text-muted, #9ca3af);
    border-radius: 4px;
  }
  .admin-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary, #fff);
  }
}
@media (min-width: 1024px) {
  .admin-hamburger,
  .admin-sidebar-close {
    display: none;
  }
}
.admin-content {
  padding: 24px;
  transition: padding var(--admin-transition-fast);
}
@media (max-width: 1023px) {
  .admin-content {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .admin-content {
    padding: 16px;
    padding-top: calc(var(--admin-header-height) + 16px);
  }
}

.page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
}

.page-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
@media (max-width: 767px) {
  .page-header-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .page-header-actions .btn,
  .page-header-actions .form-select {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .page-title {
    font-size: 20px !important;
  }
}

.grid.cols-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) {
  .grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
}

.grid.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }
}

.grid-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
@media (max-width: 1200px) {
  .grid-main {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  .grid-main {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  padding: 20px;
  background: var(--card-bg, #fff);
  border-radius: 12px;
  box-shadow: var(--card-shadow, 0 1px 3px rgba(0, 0, 0, 0.1));
}
.stat-card .stat-value {
  font-size: 28px;
  font-weight: 700;
}
.stat-card .stat-label {
  font-size: 13px;
  color: var(--text-muted, #6b7280);
}
@media (max-width: 767px) {
  .stat-card {
    padding: 16px;
  }
  .stat-card .stat-value {
    font-size: 24px;
  }
  .stat-card .stat-label {
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .stat-card .stat-value {
    font-size: 20px;
  }
  .stat-card.mini {
    padding: 12px;
  }
  .stat-card.mini .stat-value {
    font-size: 16px;
  }
}

.card {
  background: var(--card-bg, #fff);
  border-radius: 12px;
  box-shadow: var(--card-shadow, 0 1px 3px rgba(0, 0, 0, 0.1));
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 767px) {
  .card-header {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .card-title {
    font-size: 15px;
  }
}

.card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .card-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.card-body {
  padding: 20px;
}
@media (max-width: 767px) {
  .card-body {
    padding: 16px;
  }
  .card-body.p-0 {
    padding: 0;
  }
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
  white-space: nowrap;
}
.admin-table th {
  background: var(--bg-secondary, #f8fafc);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted, #6b7280);
}
.admin-table td {
  font-size: 14px;
}
@media (max-width: 767px) {
  .admin-table {
    min-width: 500px;
  }
  .admin-table th,
  .admin-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  .admin-table th {
    font-size: 12px;
  }
}

.admin-table-card {
  display: none;
}

@media (max-width: 576px) {
  .table-wrapper.card-mode .admin-table {
    display: none;
  }
  .table-wrapper.card-mode .admin-table-card {
    display: block;
  }
  .admin-table-card-item {
    padding: 16px;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
  }
  .admin-table-card-item:last-child {
    border-bottom: none;
  }
  .admin-table-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
  }
  .admin-table-card-label {
    font-size: 12px;
    color: var(--text-muted, #6b7280);
    font-weight: 500;
  }
  .admin-table-card-value {
    font-size: 14px;
    color: var(--text-primary, #1f2937);
    text-align: right;
  }
}
.search-form {
  margin-bottom: 20px;
}

.search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.search-row .form-select,
.search-row .form-input {
  min-width: 150px;
  flex: 1;
  max-width: 200px;
}
.search-row .form-input[type=text] {
  max-width: 300px;
}
@media (max-width: 991px) {
  .search-row {
    gap: 10px;
  }
  .search-row .form-select,
  .search-row .form-input {
    min-width: 120px;
    max-width: none;
    flex: 1 1 auto;
  }
}
@media (max-width: 767px) {
  .search-row {
    flex-direction: column;
    align-items: stretch;
  }
  .search-row .form-select,
  .search-row .form-input {
    width: 100%;
    max-width: none;
  }
  .search-row .btn {
    width: 100%;
  }
}

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

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.form-row .form-group {
  flex: 1;
  min-width: 250px;
}
@media (max-width: 767px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-row .form-group {
    min-width: 100%;
  }
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary, #1f2937);
}
@media (max-width: 767px) {
  .form-label {
    font-size: 13px;
    margin-bottom: 6px;
  }
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color, #6366f1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
@media (max-width: 767px) {
  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px;
    font-size: 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--admin-transition-fast);
  white-space: nowrap;
  min-height: var(--admin-touch-target);
}
@media (max-width: 767px) {
  .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
  min-height: 32px;
}
@media (max-width: 767px) {
  .btn-sm {
    padding: 8px 12px;
    min-height: 36px;
  }
}

.btn-lg {
  padding: 14px 24px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .btn-group-mobile-full {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .btn-group-mobile-full .btn {
    width: 100%;
  }
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .status-badge {
    padding: 3px 8px;
    font-size: 11px;
  }
}

.modal-dialog {
  margin: 1.75rem auto;
  max-width: 500px;
}

.modal-lg {
  max-width: 800px;
}

.modal-xl {
  max-width: 1140px;
}

@media (max-width: 767px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }
  .modal-lg,
  .modal-xl {
    max-width: calc(100% - 1rem);
  }
  .modal-content {
    border-radius: 12px;
  }
  .modal-header {
    padding: 16px;
  }
  .modal-body {
    padding: 16px;
    max-height: 60vh;
    overflow-y: auto;
  }
  .modal-footer {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .modal-footer .btn {
    flex: 1;
    min-width: 0;
  }
}
.dropdown-menu {
  min-width: 160px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .dropdown-menu {
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .dropdown-item {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.todo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.todo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}
.todo-item:last-child {
  border-bottom: none;
}
.todo-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
@media (max-width: 767px) {
  .todo-item {
    padding: 10px 0;
  }
  .todo-item input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
}

.todo-text {
  flex: 1;
  font-size: 14px;
}
.todo-text.completed {
  text-decoration: line-through;
  color: var(--text-muted, #9ca3af);
}
@media (max-width: 767px) {
  .todo-text {
    font-size: 13px;
  }
}

.todo-badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.member-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.member-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}
.member-item:last-child {
  border-bottom: none;
}

.member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light, #e0e7ff);
  color: var(--primary-color, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .member-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.member-info {
  flex: 1;
  min-width: 0;
}

.member-name {
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  .member-name {
    font-size: 13px;
  }
}

.member-email {
  font-size: 12px;
  color: var(--text-muted, #9ca3af);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 576px) {
  .member-email {
    font-size: 11px;
  }
}

.member-date {
  font-size: 12px;
  color: var(--text-muted, #9ca3af);
  flex-shrink: 0;
}

.status-chart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-chart-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 576px) {
  .status-chart-item {
    gap: 8px;
  }
}

.status-label {
  width: 80px;
  font-size: 13px;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .status-label {
    width: 60px;
    font-size: 12px;
  }
}

.status-bar {
  flex: 1;
  height: 8px;
  background: var(--bg-secondary, #f1f5f9);
  border-radius: 4px;
  overflow: hidden;
}

.status-fill {
  height: 100%;
  background: var(--primary-color, #6366f1);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.status-count {
  width: 50px;
  text-align: right;
  font-size: 13px;
  color: var(--text-muted, #9ca3af);
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .status-count {
    width: 40px;
    font-size: 12px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted, #9ca3af);
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--primary-color, #6366f1);
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .separator {
  color: var(--text-muted, #9ca3af);
}
.breadcrumb .current {
  color: var(--text-primary, #1f2937);
}
@media (max-width: 767px) {
  .breadcrumb {
    font-size: 12px;
    display: none;
  }
}

.admin-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color, #e5e7eb);
  font-size: 13px;
  color: var(--text-muted, #9ca3af);
  text-align: center;
}
@media (max-width: 767px) {
  .admin-footer {
    padding: 12px 16px;
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  .nav-link,
  .table-row--clickable td {
    min-height: var(--admin-touch-target);
  }
  a, button, .table-row--clickable {
    -webkit-tap-highlight-color: transparent;
  }
  .table-wrapper,
  .modal-body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
}
.btn:focus-visible,
.form-input:focus-visible,
.form-select:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--primary-color, #6366f1);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.d-none-mobile {
  display: block;
}

.d-block-mobile {
  display: none;
}

@media (max-width: 767px) {
  .d-none-mobile {
    display: none !important;
  }
  .d-block-mobile {
    display: block !important;
  }
}
.mt-24 {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .mt-24 {
    margin-top: 16px;
  }
}

.mt-16 {
  margin-top: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .mb-24 {
    margin-bottom: 16px;
  }
}

.mb-16 {
  margin-bottom: 16px;
}

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

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

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

.text-muted {
  color: var(--text-muted, #9ca3af);
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}
.detail-table th,
.detail-table td {
  padding: 12px 16px;
  border: 1px solid var(--border-color, #e5e7eb);
  text-align: left;
}
.detail-table th {
  background: var(--bg-secondary, #f8fafc);
  font-weight: 600;
  width: 140px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .detail-table,
  .detail-table tbody,
  .detail-table tr,
  .detail-table th,
  .detail-table td {
    display: block;
    width: 100%;
  }
  .detail-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    overflow: hidden;
  }
  .detail-table th {
    width: 100%;
    padding: 10px 12px;
    font-size: 12px;
    color: var(--text-muted, #6b7280);
  }
  .detail-table td {
    padding: 10px 12px;
    border-top: none;
    border-bottom: none;
  }
  .detail-table td[colspan] {
    width: 100%;
  }
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-item label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .detail-item label {
    font-size: 11px;
  }
}
.detail-item span {
  font-size: 14px;
  color: var(--text-primary, #1f2937);
}
@media (max-width: 767px) {
  .detail-item span {
    font-size: 13px;
  }
}

.detail-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}
.detail-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.detail-section h3,
.detail-section h4 {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary, #1f2937);
}
@media (max-width: 767px) {
  .detail-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .detail-section h3,
  .detail-section h4 {
    margin-bottom: 12px;
    font-size: 15px;
  }
}

.btn-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color, #e5e7eb);
}
@media (max-width: 767px) {
  .btn-area {
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
  }
  .btn-area > .btn {
    width: 100%;
  }
}

.btn-right {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .btn-right {
    width: 100%;
    flex-direction: column;
  }
  .btn-right .btn {
    width: 100%;
  }
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.payment-row.discount {
  color: var(--danger-color, #ef4444);
}
.payment-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color, #6366f1);
}
@media (max-width: 576px) {
  .payment-row.total {
    font-size: 16px;
  }
}

.settings-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.settings-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.settings-card__body {
  padding: 24px;
  text-align: center;
}
@media (max-width: 576px) {
  .settings-card__body {
    padding: 20px 16px;
  }
}
.settings-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
@media (max-width: 576px) {
  .settings-card__icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}
.settings-card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .settings-card__title {
    font-size: 14px;
  }
}
.settings-card__desc {
  font-size: 13px;
  color: var(--text-muted, #6b7280);
  margin: 0;
}
@media (max-width: 576px) {
  .settings-card__desc {
    font-size: 12px;
  }
}

.sub-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sub-table th,
.sub-table td {
  padding: 10px 12px;
  border: 1px solid var(--border-color, #e5e7eb);
  text-align: left;
}
.sub-table th {
  background: var(--bg-secondary, #f8fafc);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .sub-table {
    font-size: 13px;
  }
  .sub-table th,
  .sub-table td {
    padding: 8px 10px;
  }
  .sub-table th {
    font-size: 12px;
  }
}

.no-data-box {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted, #9ca3af);
}
.no-data-box i {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}
@media (max-width: 576px) {
  .no-data-box {
    padding: 30px 16px;
  }
  .no-data-box i {
    font-size: 36px;
  }
}

.no-data-text {
  font-size: 14px;
  margin: 0;
}
@media (max-width: 576px) {
  .no-data-text {
    font-size: 13px;
  }
}

.no-data-hint {
  font-size: 12px;
  margin-top: 8px;
  color: var(--text-muted, #9ca3af);
}

@media print {
  .admin-sidebar,
  .admin-hamburger,
  .admin-mobile-overlay {
    display: none !important;
  }
  .admin-main {
    margin-left: 0 !important;
    width: 100% !important;
  }
  .no-print {
    display: none !important;
  }
}
:root {
  --mobile-menu-width: 280px;
  --sidebar-width: 250px;
  --header-height-desktop: 80px;
  --header-height-tablet: 70px;
  --header-height-mobile: 60px;
  --primary-color: #007bff;
  --text-color: #212529;
  --border-color: #dee2e6;
  --bg-overlay: rgba(0, 0, 0, 0.5);
  --transition-speed: 0.3s;
  --z-overlay: 1040;
  --z-mobile-menu: 1050;
  --z-sidebar: 1045;
  --z-hamburger: 1100;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-overlay);
  opacity: 0;
  visibility: hidden;
  z-index: var(--z-overlay);
  transition: opacity var(--transition-speed), visibility var(--transition-speed);
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: var(--z-hamburger);
  position: relative;
}
.hamburger-menu__bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all var(--transition-speed) ease;
  transform-origin: center;
}
.hamburger-menu.active .hamburger-menu__bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger-menu.active .hamburger-menu__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-menu.active .hamburger-menu__bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-menu-close {
  display: none;
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text-color);
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 1;
  z-index: 10;
}
.mobile-menu-close:hover {
  color: var(--primary-color);
}

.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: var(--z-sidebar);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
}
.sidebar-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.sidebar-toggle__icon {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
}
.sidebar-toggle__icon::before, .sidebar-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.sidebar-toggle__icon::before {
  top: -6px;
}
.sidebar-toggle__icon::after {
  top: 6px;
}
.sidebar-toggle__text {
  display: none;
}

.sidebar-close {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-color);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.sidebar-close:hover {
  color: var(--primary-color);
}

.sidebar-header {
  display: none;
}
.sidebar-header__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
}

.widget-area {
  position: relative;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  min-height: calc(100vh - 300px);
}

.sub-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 30px;
  min-height: calc(100vh - 300px);
}
.sub-wrapper.has-sidebar .sub-container {
  flex: 1;
  min-width: 0;
}
.sub-wrapper .widget-sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
}

.hide-mobile {
  display: block;
}

.show-mobile {
  display: none;
}

.hide-tablet {
  display: block;
}

.show-tablet {
  display: none;
}

body.menu-open,
body.sidebar-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  :root {
    --header-height: var(--header-height-tablet);
  }
  .main-container,
  .sub-wrapper {
    padding: 15px;
  }
  .sub-wrapper {
    gap: 20px;
  }
  .sub-wrapper .widget-sidebar {
    width: 220px;
  }
  .hide-tablet {
    display: none;
  }
  .show-tablet {
    display: block;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: var(--header-height-mobile);
  }
  .hamburger-menu {
    display: flex;
  }
  .mobile-menu-close {
    display: block;
  }
  .sidebar-toggle {
    display: flex;
  }
  .sidebar-close {
    display: block;
  }
  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    background: #f8f8f8;
  }
  .main-container,
  .sub-wrapper {
    padding: 12px;
  }
  .sub-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .sub-wrapper.has-sidebar {
    position: relative;
  }
  .sub-wrapper .widget-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: var(--mobile-menu-width);
    height: 100vh;
    background: #fff;
    z-index: var(--z-sidebar);
    overflow-y: auto;
    transition: left var(--transition-speed) ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  .sub-wrapper .widget-sidebar.active {
    left: 0;
  }
  .hide-mobile {
    display: none;
  }
  .show-mobile {
    display: block;
  }
}
@media (max-width: 480px) {
  :root {
    --mobile-menu-width: 100%;
  }
  .main-container,
  .sub-wrapper {
    padding: 10px;
  }
  .hamburger-menu {
    width: 24px;
    height: 18px;
  }
  .hamburger-menu__bar {
    height: 2px;
  }
  .hamburger-menu.active .hamburger-menu__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-menu.active .hamburger-menu__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .sidebar-toggle {
    width: 45px;
    height: 45px;
    bottom: 15px;
    left: 15px;
  }
  .sidebar-toggle__icon {
    width: 16px;
  }
  .sub-wrapper .widget-sidebar {
    width: 100%;
    left: -100%;
  }
}
@media (hover: none) and (pointer: coarse) {
  .hamburger-menu,
  .sidebar-toggle,
  .mobile-menu-close,
  .sidebar-close {
    min-width: 44px;
    min-height: 44px;
  }
}
.hamburger-menu:focus-visible,
.sidebar-toggle:focus-visible,
.mobile-menu-close:focus-visible,
.sidebar-close:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

@media print {
  .hamburger-menu,
  .sidebar-toggle,
  .mobile-overlay,
  .mobile-menu-close,
  .sidebar-close {
    display: none !important;
  }
  .widget-menu,
  .widget-sidebar {
    position: static !important;
    width: auto !important;
    height: auto !important;
    left: 0 !important;
  }
}
body {
  font-family: "S-CoreDream", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.6rem;
}

.container-fluid {
  width: 100%;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
  margin-right: auto;
  margin-left: auto;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

.hidden {
  display: none !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-end {
  align-items: flex-end !important;
}

.align-center {
  align-items: center !important;
}

.align-stretch {
  align-items: stretch !important;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-1 {
  flex: 1 !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-primary-color {
  color: #007bff !important;
}

.text-secondary-color {
  color: #6c757d !important;
}

.text-success {
  color: #28a745 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-white {
  color: #ffffff !important;
}

.text-dark {
  color: #333333 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.8rem !important;
}

.m-2 {
  margin: 1.6rem !important;
}

.m-3 {
  margin: 2.4rem !important;
}

.m-4 {
  margin: 3.2rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.8rem !important;
}

.mt-2 {
  margin-top: 1.6rem !important;
}

.mt-3 {
  margin-top: 2.4rem !important;
}

.mt-4 {
  margin-top: 3.2rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.8rem !important;
}

.mb-2 {
  margin-bottom: 1.6rem !important;
}

.mb-3 {
  margin-bottom: 2.4rem !important;
}

.mb-4 {
  margin-bottom: 3.2rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 0.8rem !important;
}

.ml-2 {
  margin-left: 1.6rem !important;
}

.ml-3 {
  margin-left: 2.4rem !important;
}

.ml-4 {
  margin-left: 3.2rem !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 0.8rem !important;
}

.mr-2 {
  margin-right: 1.6rem !important;
}

.mr-3 {
  margin-right: 2.4rem !important;
}

.mr-4 {
  margin-right: 3.2rem !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.8rem !important;
}

.p-2 {
  padding: 1.6rem !important;
}

.p-3 {
  padding: 2.4rem !important;
}

.p-4 {
  padding: 3.2rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.8rem !important;
}

.pt-2 {
  padding-top: 1.6rem !important;
}

.pt-3 {
  padding-top: 2.4rem !important;
}

.pt-4 {
  padding-top: 3.2rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.8rem !important;
}

.pb-2 {
  padding-bottom: 1.6rem !important;
}

.pb-3 {
  padding-bottom: 2.4rem !important;
}

.pb-4 {
  padding-bottom: 3.2rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pl-1 {
  padding-left: 0.8rem !important;
}

.pl-2 {
  padding-left: 1.6rem !important;
}

.pl-3 {
  padding-left: 2.4rem !important;
}

.pl-4 {
  padding-left: 3.2rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pr-1 {
  padding-right: 0.8rem !important;
}

.pr-2 {
  padding-right: 1.6rem !important;
}

.pr-3 {
  padding-right: 2.4rem !important;
}

.pr-4 {
  padding-right: 3.2rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.bg-primary {
  background-color: #007bff !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.rounded {
  border-radius: 0.4rem !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded-lg {
  border-radius: 0.8rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175) !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.right-0 {
  right: 0 !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.left-0 {
  left: 0 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.table-col--num {
  width: 6rem;
}

.table-col--checkbox {
  width: 4rem;
}

.table-col--title {
  width: auto;
}

.table-col--author {
  width: 12rem;
}

.table-col--date {
  width: 10rem;
}

.table-col--views {
  width: 8rem;
}

.table-col--status {
  width: 10rem;
}

.table-col--actions {
  width: 12rem;
}

.table-row--clickable {
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.table-row--clickable:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

.thumbnail--sm {
  max-width: 10rem;
  max-height: 5rem;
  object-fit: cover;
}

.thumbnail--md {
  max-width: 15rem;
  max-height: 10rem;
  object-fit: cover;
}

.form--inline {
  display: inline;
}

.col-10 {
  width: 10% !important;
}

.col-12 {
  width: 12% !important;
}

.col-13 {
  width: 13% !important;
}

.col-15 {
  width: 15% !important;
}

.col-20 {
  width: 20% !important;
}

.col-30 {
  width: 30% !important;
}

.font-xs {
  font-size: 1.1rem !important;
}

.font-sm {
  font-size: 1.4rem !important;
}

.font-base {
  font-size: 1.6rem !important;
}

.font-lg {
  font-size: 1.8rem !important;
}

.font-xl {
  font-size: 2rem !important;
}

.font-xxl {
  font-size: 2.4rem !important;
}

.font-3xl {
  font-size: 3rem !important;
}

.font-4xl {
  font-size: 4rem !important;
}

.font-5xl {
  font-size: 5rem !important;
}

.text-end {
  text-align: right !important;
}

.chart-container {
  position: relative;
  width: 100%;
}
.chart-container--sm {
  height: 20rem;
}
.chart-container--md {
  height: 30rem;
}
.chart-container--lg {
  height: 40rem;
}
.chart-container--xl {
  height: 50rem;
}

.chart-canvas {
  width: 100%;
  height: 100%;
}

.stats-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid #dee2e6;
}
.stats-list-item:last-child {
  border-bottom: none;
}

.ranking-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid #dee2e6;
}
.ranking-item:last-child {
  border-bottom: none;
}
.ranking-item__info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-width: 0;
  flex: 1;
}
.ranking-item__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  background: #6c757d;
  border-radius: 50%;
  flex-shrink: 0;
}
.ranking-item__rank.rank-1 {
  background: #f59e0b;
}
.ranking-item__rank.rank-2 {
  background: #94a3b8;
}
.ranking-item__rank.rank-3 {
  background: #cd7f32;
}
.ranking-item__rank.rank-4, .ranking-item__rank.rank-5 {
  background: #007bff;
}
.ranking-item__name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.4rem;
}
.ranking-item__value {
  font-weight: 600;
  color: #007bff;
  flex-shrink: 0;
  margin-left: 1.2rem;
}

.ranking-list {
  max-height: 40rem;
  overflow-y: auto;
}

.grid--2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .grid--2-1 {
    grid-template-columns: 1fr;
  }
}

.grid--1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .grid--1-1 {
    grid-template-columns: 1fr;
  }
}

.analytics-dashboard .chart-container {
  position: relative;
  height: 30rem;
  width: 100%;
}

.summary-item {
  text-align: center;
  padding: 1.6rem;
  background: #f8fafc;
  border-radius: 0.8rem;
}
.summary-item .summary-label {
  display: block;
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 0.8rem;
}
.summary-item .summary-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212529;
}

.filter-form .filter-row {
  display: flex;
  align-items: flex-end;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.filter-form .filter-item label {
  display: block;
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 0.6rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
}
.empty-state i {
  font-size: 4rem;
  opacity: 0.3;
  margin-bottom: 1.6rem;
  display: block;
}
.empty-state p {
  margin: 0;
  font-size: 1.4rem;
}

.icon--primary {
  color: #007bff !important;
}

.icon--success {
  color: #28a745 !important;
}

.icon--warning {
  color: #ffc107 !important;
}

.icon--danger {
  color: #dc3545 !important;
}

.icon--info {
  color: #17a2b8 !important;
}

.icon--muted {
  color: #6c757d !important;
}

.feature-table {
  width: 100%;
}
.feature-table th, .feature-table td {
  padding: 1.2rem 1rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}
.feature-table th {
  background: #f8f9fa;
  font-weight: 600;
}
.feature-table th.col--code {
  width: 15%;
}
.feature-table th.col--name {
  width: 30%;
}
.feature-table th.col--toggle {
  width: 12%;
}
.feature-table th.col--payment {
  width: 10%;
}
.feature-table th.col--expire {
  width: 13%;
}
.feature-table th.col--status {
  width: 10%;
}
.feature-table th.col--action {
  width: 10%;
}

.td--label {
  width: 12rem;
  text-align: right !important;
}

.input--narrow {
  width: 20rem !important;
}

.input--medium {
  width: 30rem !important;
}

.input--wide {
  width: 40rem !important;
}

.mt-16 {
  margin-top: 1.6rem !important;
}

.mt-24 {
  margin-top: 2.4rem !important;
}

.mb-16 {
  margin-bottom: 1.6rem !important;
}

.mb-24 {
  margin-bottom: 2.4rem !important;
}

code {
  background: #f8f9fa;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  color: #007bff;
}

.settings-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.settings-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
}
.settings-card__body {
  text-align: center;
  padding: 4rem;
}
.settings-card__icon {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
}
.settings-card__icon i {
  font-size: 2.8rem;
}
.settings-card__icon--primary {
  background: rgba(0, 123, 255, 0.1);
}
.settings-card__icon--primary i {
  color: #007bff;
}
.settings-card__icon--success {
  background: rgba(40, 167, 69, 0.1);
}
.settings-card__icon--success i {
  color: #28a745;
}
.settings-card__icon--info {
  background: rgba(23, 162, 184, 0.1);
}
.settings-card__icon--info i {
  color: #17a2b8;
}
.settings-card__icon--warning {
  background: rgba(255, 193, 7, 0.1);
}
.settings-card__icon--warning i {
  color: #ffc107;
}
.settings-card__icon--danger {
  background: rgba(220, 53, 69, 0.1);
}
.settings-card__icon--danger i {
  color: #dc3545;
}
.settings-card__icon--purple {
  background: rgba(168, 85, 247, 0.1);
}
.settings-card__icon--purple i {
  color: #a855f7;
}
.settings-card__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.settings-card__desc {
  color: #6c757d;
  font-size: 1.4rem;
}

.info-card__title {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #6c757d;
}
.info-card__desc {
  font-size: 1.3rem;
  color: #6c757d;
  margin: 0;
}

.no-data-box {
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
}
.no-data-box i {
  font-size: 3.2rem;
  color: #94a3b8;
  margin-bottom: 1.2rem;
  display: block;
}

.no-data-text {
  color: #6c757d;
  margin-bottom: 0.8rem;
}

.no-data-hint {
  font-size: 1.3rem;
  color: #6c757d;
  margin: 0;
}

.sns-profile-img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  object-fit: cover;
}

.form-control--disabled {
  display: block;
  background: #f1f5f9;
  cursor: not-allowed;
}

.btn--full {
  width: 100% !important;
}

.mr-10 {
  margin-right: 1rem !important;
}

.form--inline {
  display: inline-block;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-50 {
  width: 50% !important;
}

.section-title {
  margin: 2.4rem 0 1.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #212529;
}

.inquiry-box {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 0.8rem;
}
.inquiry-box h5 {
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.inquiry-box pre {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  font-family: inherit;
  font-size: 1.4rem;
  line-height: 1.6;
}

.answer-box {
  background: #e0f2fe;
  padding: 2rem;
  border-radius: 0.8rem;
}
.answer-box .answer-meta {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 0.8rem;
}
.answer-box pre {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  font-family: inherit;
  font-size: 1.4rem;
  line-height: 1.6;
}

.row-clickable {
  cursor: pointer;
}
.row-clickable:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

.menu-name[data-depth="1"] {
  padding-left: 0;
}
.menu-name[data-depth="2"] {
  padding-left: 2rem;
}
.menu-name[data-depth="3"] {
  padding-left: 4rem;
}
.menu-name[data-depth="4"] {
  padding-left: 6rem;
}

.info-header {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #64748b;
}

.text-xs {
  font-size: 1rem !important;
}

.text-sm {
  font-size: 1.2rem !important;
}

.grid--2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .grid--2-1 {
    grid-template-columns: 1fr;
  }
}

.content-view {
  max-width: 90rem;
  margin: 0 auto;
  padding: 2rem;
}

.empty-content {
  text-align: center;
  padding: 6rem 2rem;
  color: #6c757d;
}
.empty-content i {
  font-size: 4.8rem;
  margin-bottom: 1.6rem;
  opacity: 0.5;
}
.empty-content p {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.empty-content small {
  display: block;
  margin-bottom: 1.6rem;
}

.content-summary {
  padding: 1.6rem;
  background: #f8fafc;
  border-radius: 0.8rem;
  margin-bottom: 2.4rem;
  color: #64748b;
  font-size: 1.5rem;
  line-height: 1.6;
}

.content-body {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #1e293b;
}
.content-body h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 4rem 0 2rem;
  color: #0f172a;
}
.content-body h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 3.2rem 0 1.6rem;
  color: #0f172a;
}
.content-body h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 2.4rem 0 1.2rem;
  color: #1e293b;
}
.content-body p {
  margin-bottom: 1.6rem;
}
.content-body ul, .content-body ol {
  margin-bottom: 1.6rem;
  padding-left: 2.4rem;
}
.content-body li {
  margin-bottom: 0.8rem;
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6rem 0;
}
.content-body table th, .content-body table td {
  padding: 1.2rem 1.4rem;
  border: 1px solid #e2e8f0;
  text-align: left;
}
.content-body table th {
  background: #f8fafc;
  font-weight: 600;
}
.content-body blockquote {
  margin: 1.6rem 0;
  padding: 1.2rem 2rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  color: #475569;
}
.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.8rem;
  margin: 1.6rem 0;
}
.content-body a {
  color: #3b82f6;
  text-decoration: underline;
}
.content-body a:hover {
  color: #1d4ed8;
}
.content-body code {
  background: #f1f5f9;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  font-family: "Consolas", monospace;
  font-size: 1.4rem;
}
.content-body pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1.6rem;
  border-radius: 0.8rem;
  overflow-x: auto;
  margin: 1.6rem 0;
}
.content-body pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.content-body .about-hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 1.2rem;
  margin-bottom: 3.2rem;
}
.content-body .about-section {
  margin-bottom: 3.2rem;
}
.content-body .about-contact {
  background: #f8fafc;
  padding: 2.4rem;
  border-radius: 0.8rem;
}
.content-body .about-contact address {
  font-style: normal;
}

@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (max-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
.slecs-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.slecs-loading-overlay.show {
  opacity: 1;
  visibility: visible;
}

.slecs-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #007bff;
  border-radius: 50%;
  animation: slecs-spin 0.8s linear infinite;
}

@keyframes slecs-spin {
  to {
    transform: rotate(360deg);
  }
}
.slecs-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  padding: 16px 24px;
  border-radius: 0.4rem;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 500;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
  z-index: 10000;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  max-width: 400px;
}
.slecs-toast.show {
  transform: translateX(0);
}
.slecs-toast.slecs-toast-success {
  background: #28a745;
}
.slecs-toast.slecs-toast-danger {
  background: #dc3545;
}
.slecs-toast.slecs-toast-warning {
  background: #ffc107;
  color: #333333;
}
.slecs-toast.slecs-toast-info {
  background: #17a2b8;
}

.btn.loading,
button.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}
.btn.loading i.fa-spinner,
button.loading i.fa-spinner {
  margin-right: 8px;
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 0.4rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
  min-width: 300px;
  max-width: 450px;
  animation: slideInRight 0.3s ease;
}
.toast i {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.toast span {
  flex: 1;
  line-height: 1.4;
}
.toast .toast-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  margin-left: 8px;
  flex-shrink: 0;
}
.toast .toast-close:hover {
  opacity: 1;
}

.toast-success {
  background: #28a745;
}

.toast-error {
  background: #dc3545;
}

.toast-warning {
  background: #ffc107;
  color: #333333;
}

.toast-info {
  background: #17a2b8;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slecs-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.slecs-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.slecs-modal {
  background: #ffffff;
  border-radius: 0.8rem;
  width: 100%;
  max-width: 420px;
  margin: 20px;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
  transform: scale(0.9);
  transition: transform 0.2s ease;
}
.show .slecs-modal {
  transform: scale(1);
}

.modal-container {
  background: #ffffff;
  border-radius: 0.8rem;
  width: 100%;
  max-width: 60rem;
  margin: 2rem;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.175);
}
.modal-container--sm {
  max-width: 50rem;
}
.modal-container--md {
  max-width: 60rem;
}
.modal-container--lg {
  max-width: 80rem;
}
.modal-container--xl {
  max-width: 100rem;
}

.slecs-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #dee2e6;
}
.slecs-modal-header .slecs-modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 10px;
}
.slecs-modal-header .slecs-modal-title i {
  font-size: 20px;
}
.slecs-modal-header .slecs-modal-title .text-success {
  color: #28a745;
}
.slecs-modal-header .slecs-modal-title .text-danger {
  color: #dc3545;
}

.slecs-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}
.slecs-modal-close:hover {
  color: #212529;
}

.slecs-modal-body {
  padding: 24px;
}
.slecs-modal-body .slecs-modal-message {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #6c757d;
  text-align: center;
}

.slecs-modal-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px 24px;
}
.slecs-modal-footer .btn {
  min-width: 100px;
}
