:root {
  --background: #110017;
  --surface-dim: #210a26;
  --surface-dark: #1e1e1e;
  --surface-container-lowest: #1b0520;
  --surface-container-low: #2a122e;
  --surface-container: #2e1633;
  --surface-container-high: #3a213e;
  --surface-container-highest: #452b49;

  --primary: #dcb8ff;
  --primary-container: #8a2be2;
  --on-primary-container: #eed9ff;

  --secondary: #bfc1ff;
  --secondary-container: #150fe7;

  --gold-accent: #f2c94c;
  --light-violet: #a972f2;
  --error: #ffb4ab;
  --error-container: #93000a;

  --text-primary: #e7e0f5;
  --text-secondary: #a99fc0;
  --on-surface-variant: #cfc2d7;
  --outline-variant: #4c4354;
  --outline: #988ca0;

  --font-main: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-container) var(--surface-container-lowest);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--surface-container-lowest);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--primary-container),
    var(--light-violet)
  );
  border-radius: 8px;
  border: 2px solid var(--surface-container-lowest);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-accent);
}

::-webkit-scrollbar-corner {
  background: var(--surface-container-lowest);
}

body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.label-caps {
  font-size: 18px;
  line-height: 14px;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

.body-sm {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}

.headline-md {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.display-gold {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.05em;
  font-weight: 800;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  height: 64px;
  background-color: rgba(17, 0, 23, 0);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.btn-pill {
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  background-color: rgba(138, 43, 226, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 0.3s ease;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.btn-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-pill:hover::before {
  left: 150%;
}

.btn-pill:hover {
  background-color: rgba(138, 43, 226, 0.6);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.currency-selector {
  position: relative;
}

.currency-selector-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--on-surface-variant);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.currency-selector-btn:hover,
.currency-selector.open .currency-selector-btn {
  color: #ffffff;
}

.currency-selector .material-symbols-outlined {
  transition: transform 0.3s ease;
}

.currency-selector.open .material-symbols-outlined {
  transform: rotate(180deg);
}

.currency-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 100px;
  background-color: var(--surface-container-high);
  border: 1px solid var(--outline-variant);
  border-radius: 6px;
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 20;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.currency-selector.open .currency-dropdown {
  display: flex;
}

.currency-option {
  padding: 10px 16px;
  color: var(--on-surface-variant);
  background: none;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.currency-option:hover {
  background-color: var(--primary-container);
  color: #ffffff;
}

.currency-option.active {
  color: var(--gold-accent);
  font-weight: 600;
  background-color: var(--surface-container-highest);
  border-left-color: var(--gold-accent);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface-variant);
  transition: color 0.3s ease;
}

.cart-btn:hover {
  color: #ffffff;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 9999px;
  background-color: var(--gold-accent);
  color: var(--surface-container-lowest);
  font-size: 10px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0.25s;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0s;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  background-color: var(--surface-dark);
  border-left: 1px solid var(--outline-variant);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background-color: var(--surface-container-high);
  border-bottom: 1px solid var(--outline-variant);
  flex-shrink: 0;
}

.cart-drawer-header h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  text-align: center;
}

.cart-empty .material-symbols-outlined {
  font-size: 48px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background-color: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-radius: 6px;
}

.cart-item-medallion {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 6px;
  background-color: var(--surface-container-highest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
}

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

.cart-item-name {
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  color: var(--gold-accent);
  font-weight: 700;
  margin-top: 2px;
}

.cart-item-remove {
  color: var(--on-surface-variant);
  transition: color 0.2s ease;
  display: flex;
  flex-shrink: 0;
}

.cart-item-remove:hover {
  color: var(--error);
}

.cart-drawer-footer {
  padding: 20px 24px;
  background-color: var(--surface-container-high);
  border-top: 1px solid var(--outline-variant);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
}

.cart-total-amount {
  color: var(--gold-accent);
  font-size: 20px;
  font-weight: 800;
}

.cart-checkout-btn {
  background: linear-gradient(90deg, var(--gold-accent), #ffe08a);
  color: var(--surface-container-lowest);
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.cart-checkout-btn:hover {
  opacity: 0.9;
}

@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0.25s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.25s ease,
    visibility 0s linear 0s;
}

.login-modal {
  width: 100%;
  max-width: 380px;
  background-color: var(--surface-dark);
  border-top: 2px solid var(--primary-container);
  border: 1px solid var(--outline-variant);
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.modal-overlay.open .login-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.login-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background-color: var(--surface-container-high);
  border-bottom: 1px solid var(--outline-variant);
}

.login-modal-header h3 {
  color: var(--text-primary);
}

.login-modal-close {
  background: none;
  border: none;
  color: var(--on-surface-variant);
  cursor: pointer;
  display: flex;
  transition: color 0.2s ease;
}

.login-modal-close:hover {
  color: #ffffff;
}

.login-modal-body {
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.login-modal-avatar {
  width: 64px;
  transform: scaleX(-1);
}

.login-modal-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-modal-field label {
  color: var(--on-surface-variant);
}

.login-modal-input {
  background-color: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--text-primary);
  transition: border-color 0.2s ease;
}

.login-modal-input:focus {
  outline: none;
  border-color: var(--gold-accent);
}

.login-modal-footer {
  padding: 0 24px 24px;
}

.login-modal-submit {
  width: 100%;
  color: var(--gold-accent);
  border: 1px solid rgba(242, 201, 76, 0.5);
  padding: 10px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.login-modal-submit:hover {
  background-color: rgba(242, 201, 76, 0.1);
}

.login-modal-submit:disabled {
  opacity: 0.6;
  cursor: default;
  background-color: transparent;
}

.login-modal-error {
  min-height: 16px;
  color: var(--error);
  font-size: 12px;
  line-height: 16px;
}

.user-section {
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 16px;
  padding-right: 16px;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  object-fit: cover;
  transform: scaleX(-1);
}

.user-name {
  display: block;
  color: var(--on-surface-variant);
}

.btn-login {
  color: var(--gold-accent);
  border: 1px solid rgba(242, 201, 76, 0.5);
  padding: 4px 12px;
  transition: background-color 0.3s ease;
}

.btn-login:hover {
  background-color: rgba(242, 201, 76, 0.1);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(17, 0, 23, 0.4),
    rgba(17, 0, 23, 0.2),
    rgba(17, 0, 23, 1)
  );
  z-index: 10;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 20;
  width: 100%;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.hero-col-left {
  align-items: flex-end;
  text-align: right;
}
.hero-col-right {
  align-items: flex-start;
  text-align: left;
}

.hero-col-center {
  justify-content: center;
}

.server-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 9999px;
  width: fit-content;
}

.status-badge.primary {
  background-color: var(--primary-container);
}
.status-badge.secondary {
  background-color: var(--secondary-container);
}

.status-badge span.material-symbols-outlined {
  font-size: 14px;
  color: white;
}

.status-badge-text {
  font-size: 10px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-card {
  width: 100%;
  background-color: rgba(27, 5, 32, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card:hover {
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-card-header img {
  width: 32px;
  height: 32px;
  display: block;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.info-card-header.primary {
  color: var(--primary);
}
.info-card-header.secondary {
  color: var(--secondary);
}

.info-card-header .material-symbols-outlined {
  font-size: 24px;
}
.info-card-header .label-caps {
  letter-spacing: 0.1em;
}

.info-card-title {
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.info-card-action {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-accent);
}

.info-card-action .body-sm {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.info-card-action .material-symbols-outlined {
  font-size: 14px;
}

.hero-logo {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.6));
  border-radius: 50%;
}

.main-content {
  position: relative;
  z-index: 30;
  margin-top: -64px;
  padding-bottom: 96px;
  flex-grow: 1;
}

.store-grid {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-card {
  background-color: var(--surface-dark);
  border-top: 2px solid var(--primary-container);
  display: flex;
  flex-direction: column;
}

.menu-header {
  padding: 30px;
  border-bottom: 1px solid var(--outline-variant);
  background-color: var(--surface-container-high);
  text-align: center;
  color: var(--text-primary);
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  height: 80px;
  color: var(--on-surface-variant);
  border-left: 4px solid transparent;
  transition: background-color 0.3s ease;
}

.menu-link:hover {
  background-color: var(--surface-container-high);
}

.menu-link.active {
  background-color: var(--primary-container);
  color: var(--on-primary-container);
  border-left-color: var(--gold-accent);
}

.menu-link .material-symbols-outlined.icon {
  font-size: 30px;
}

.menu-link .material-symbols-outlined.arrow {
  margin-left: auto;
  font-size: 28px;
  transition: transform 0.3s ease;
}

.menu-link.active .material-symbols-outlined.arrow {
  transform: rotate(180deg);
}

.menu-link.last {
  border-bottom: 1px solid rgba(76, 67, 84, 0.3);
}

.sub-menu {
  height: 0;
  overflow: hidden;
}

.donor-card {
  margin-top: 16px;
  background-color: var(--surface-container-highest);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(76, 67, 84, 0.5);
  overflow: hidden;
}

.donor-avatar-wrapper {
  width: 110px;
  height: 130px;
  flex-shrink: 0;
  overflow: hidden;
  transform: scaleX(-1);
}

.donor-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.donor-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 16px 0;
}

.donor-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-accent);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.donor-crown-icon {
  font-size: 20px;
  line-height: 1;
}

.donor-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.donor-description {
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

.store-panel {
  background-color: var(--surface-dark);
  border-top: 2px solid var(--gold-accent);
  padding: 32px;
}

.store-title {
  color: var(--gold-accent);
  margin-bottom: 8px;
  text-align: left;
}

.store-subtitle {
  color: var(--light-violet);
  margin-bottom: 24px;
  text-align: left;
}

.store-text-content {
  color: var(--text-secondary);
  text-align: justify;
  line-height: 1.6;
}

.store-text-content p {
  margin-bottom: 16px;
  font-size: 14px;
}

.store-text-content p:last-child {
  margin-bottom: 0;
}

.text-bold-gold {
  color: var(--gold-accent);
  font-weight: 700;
}
.text-bold-violet {
  color: var(--light-violet);
  font-weight: 700;
}

.store-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(76, 67, 84, 0.3);
  color: rgba(169, 159, 192, 0.6);
  text-align: center;
}

.store-tab-panel {
  display: none;
}

.store-tab-panel.active {
  display: block;
}

.product-grid-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-grid-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-grid-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-accent);
}

.product-grid-title .material-symbols-outlined {
  font-size: 26px;
}

.product-grid-subtitle {
  color: var(--text-secondary);
}

.product-grid-count {
  background-color: var(--surface-container-high);
  border: 1px solid var(--outline-variant);
  color: var(--on-surface-variant);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(42, 18, 46, 0.75) 0%,
    rgba(27, 5, 32, 0.75) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-container),
    var(--light-violet)
  );
  opacity: 0.9;
}

.product-card:hover {
  border-color: var(--light-violet);
  box-shadow: 0 0 24px rgba(138, 43, 226, 0.35);
  transform: translateY(-4px);
}

.product-card.featured {
  border-color: rgba(242, 201, 76, 0.35);
  background: linear-gradient(
    160deg,
    rgba(58, 33, 62, 0.85) 0%,
    rgba(27, 5, 32, 0.85) 70%
  );
}

.product-card.featured::before {
  background: linear-gradient(90deg, var(--gold-accent), #ffe08a);
}

.product-card.featured:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 0 24px rgba(242, 201, 76, 0.3);
}

.product-card-tags {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.product-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.product-card-tag .material-symbols-outlined {
  font-size: 13px;
}

.product-card-tag-discount {
  background-color: var(--gold-accent);
  color: #2a1200;
  margin-right: auto;
}

.product-card-tag-featured {
  background-color: var(--primary-container);
  color: #ffffff;
  margin-left: auto;
}

.product-card-medallion {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 6px;
  background: radial-gradient(
    circle at 35% 30%,
    var(--surface-container-highest),
    var(--surface-container-lowest) 75%
  );
  border: 3px solid var(--surface-container-high);
  box-shadow: inset 0 0 0 2px rgba(220, 184, 255, 0.15);
  color: var(--primary);
}

.product-card.featured .product-card-medallion {
  border-color: rgba(242, 201, 76, 0.5);
  color: var(--gold-accent);
  box-shadow: inset 0 0 0 2px rgba(242, 201, 76, 0.2);
}

.product-card-medallion .material-symbols-outlined {
  font-size: 38px;
}

.product-card-name {
  color: var(--text-primary);
  letter-spacing: 0.03em;
}

.product-card-desc {
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 42px;
}

.product-card-perks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin: 6px 0 4px;
}

.product-card-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--on-surface-variant);
  font-size: 12px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 7px 10px;
}

.product-card-perk .material-symbols-outlined {
  font-size: 15px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(220, 184, 255, 0.15);
  color: var(--light-violet);
}

.product-card.featured .product-card-perk .material-symbols-outlined {
  background-color: rgba(242, 201, 76, 0.18);
  color: var(--gold-accent);
}

.product-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 12px;
  width: 100%;
  border-top: 1px solid rgba(76, 67, 84, 0.4);
}

.product-card-price-original {
  color: var(--text-secondary);
  font-size: 13px;
  text-decoration: line-through;
  opacity: 0.7;
}

.product-card-price-amount {
  color: var(--gold-accent);
  font-size: 22px;
  font-weight: 800;
}

.product-card-period {
  color: var(--text-secondary);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-card-buy {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  border: none;
  background: linear-gradient(
    90deg,
    var(--primary-container),
    var(--light-violet)
  );
  color: #ffffff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition:
    filter 0.3s ease,
    transform 0.15s ease;
}

.product-card.featured .product-card-buy {
  background: linear-gradient(90deg, var(--gold-accent), #ffe08a);
  color: #2a1200;
}

.product-card-buy:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.product-card-buy .material-symbols-outlined {
  font-size: 16px;
}

.product-card-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.product-card-actions .product-card-buy {
  flex: 1;
}

.product-card-info {
  flex-shrink: 0;
  width: 44px;
  border-radius: 8px;
  border: 1px solid var(--outline-variant);
  background-color: var(--surface-container-high);
  color: var(--on-surface-variant);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.product-card-info:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  background-color: rgba(242, 201, 76, 0.1);
}

.product-card-info .material-symbols-outlined {
  font-size: 20px;
}

.item-info-modal {
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background-color: var(--surface-dark);
  border-top: 2px solid var(--primary-container);
  border: 1px solid var(--outline-variant);
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.9) translateY(12px);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.modal-overlay.open .item-info-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.item-info-modal-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item-info-modal-image {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border-radius: 8px;
  background-color: var(--surface-container);
}

.item-info-modal-text {
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item-info-modal-text h4 {
  color: var(--text-primary);
}

.item-info-modal-text ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.help-section {
  background-color: var(--surface-dark);
  border-top: 2px solid var(--secondary);
  padding: 24px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.help-header-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.help-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.help-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.help-title-row .material-symbols-outlined {
  font-size: 24px;
}
.help-title-row h2 {
  color: var(--text-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.help-desc {
  color: rgba(169, 159, 192, 0.8);
}

.help-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.help-btn {
  border: 1px solid rgba(76, 67, 84, 0.5);
  background-color: var(--surface-container-low);
  padding: 16px;
  text-align: center;
  color: var(--text-primary);
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.help-btn img {
  width: 32px;
  height: 32px;
  display: block;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.help-btn:hover {
  background-color: var(--surface-container);
}
.help-separator {
  color: var(--outline);
  display: block;
  font-size: 40px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.policy-card {
  background-color: var(--surface-dark);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
}

.policy-card.error {
  border-top: 2px solid var(--error);
}
.policy-card.violet {
  border-top: 2px solid var(--light-violet);
}
.policy-card.secondary {
  border-top: 2px solid var(--secondary);
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.policy-card.error .policy-card-header {
  color: var(--error);
}
.policy-card.violet .policy-card-header {
  color: var(--light-violet);
}
.policy-card.secondary .policy-card-header {
  color: var(--secondary);
}

.policy-desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.policy-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  max-width: fit-content;
}
.policy-link:hover {
  color: #b980ff;
  gap: 20px;
}

.policy-link .material-symbols-outlined {
  font-size: 20px;
}

.socials-header-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.socials-subtitle {
  color: rgba(169, 159, 192, 0.6);
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  flex-grow: 1;
}

.social-icon {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-icon img {
  width: 32px;
  height: 32px;
  display: block;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.social-icon:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.social-icon:hover {
  color: var(--light-violet);
}
.social-icon .material-symbols-outlined {
  font-size: 28px;
}

.socials-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(76, 67, 84, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials-email {
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: fit-content;
  transition: color 0.3s ease;
  cursor: pointer;
}

.socials-email::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -5px;
  width: 100%;
  height: 2px;
  opacity: 0;
  background: #b980ff;
  transition: opacity 0.3s ease;
}

.socials-email:hover::after {
  opacity: 1;
}

.socials-email:hover {
  color: #b980ff;
}

.footer {
  width: 100%;
  padding: 48px 0;
  background-color: var(--surface-dim);
  border-top: 1px solid var(--outline-variant);
  margin-top: auto;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-title {
  margin-bottom: 8px;
  font-size: 16px;
}

.footer-copyright {
  color: var(--on-surface-variant);
  opacity: 0.8;
  max-width: fit-content;
  width: 600px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-link {
  color: var(--on-surface-variant);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}
