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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #111827;
  color: #ffffff;
  min-height: 100vh;
}

.hidden {
  display: none !important;
}

#page-catalog {
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
}

/* ГЛАВНЫЙ ХЕДЕР */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  background: #111827;
  border-bottom: none;
  text-align: left;
}

.main-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-header-logo {
  font-size: 36px;
  line-height: 1;
}

.main-header-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.main-header-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  margin-top: 2px;
}

.main-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-switcher-inline {
  display: flex;
  gap: 4px;
}

.gift-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.gift-btn:active {
  opacity: 0.7;
}

/* HERO BANNER */
.hero-banner {
  margin: 12px 16px;
  background: linear-gradient(135deg, #0d1f3c 0%, #1a3a6e 50%, #0d2a4a 100%);
  background-image: url('banner_bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  display: none;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 60px;
  width: 120px;
  height: 120px;
  background: rgba(100,160,255,0.08);
  border-radius: 50%;
}

.hero-text {
  flex: 1;
  z-index: 1;
}

.hero-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.3px;
}

.hero-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 220px;
}

.hero-icon {
  font-size: 64px;
  flex-shrink: 0;
  margin-left: 12px;
  opacity: 0.6;
  align-self: flex-end;
}

/* ПЛИТКИ ПРЕИМУЩЕСТВ */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 4px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.feature-icon {
  font-size: 28px;
}

.feature-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}

/* КАТАЛОГ */
.catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}

.card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.placeholder-img {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a4a, #1a1a3e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.card-body {
  padding: 10px;
}

.card-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-price {
  font-size: 12px;
  color: #f0c040;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-actions {
  display: flex;
  gap: 6px;
}

.card-btn-detail {
  flex: 1;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: transparent;
  color: white;
  font-size: 12px;
  cursor: pointer;
}

.card-btn {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 10px;
  background: #0f3460;
  color: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.card-btn.in-cart {
  background: #27ae60;
}

/* НИЖНЯЯ ПАНЕЛЬ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: rgba(15, 30, 56, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.custom-bar-btn {
  flex-shrink: 0;
  padding: 12px 16px;
  background: rgba(100,180,255,0.12);
  border: 1px solid rgba(100,180,255,0.3);
  border-radius: 14px;
  color: #64b4ff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.custom-bar-btn:active {
  opacity: 0.7;
}

.cart-bar {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cart-info {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

#checkout-btn {
  background: #f0c040;
  color: #1a1a2e;
  border: none;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

#checkout-btn:active {
  opacity: 0.8;
}

/* ОФОРМЛЕНИЕ ЗАКАЗА */
#page-checkout {
  min-height: 100vh;
  padding-bottom: 40px;
}

#page-checkout header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #16213e, #0f3460);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}

#page-checkout header h1 {
  font-size: 20px;
}

#back-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.checkout-form {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-summary {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.order-summary h3 {
  font-size: 15px;
  margin-bottom: 12px;
  color: #f0c040;
}

.order-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.order-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  padding-top: 12px;
  color: #f0c040;
}

.form-section {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-section h3 {
  font-size: 15px;
  color: #f0c040;
  margin-bottom: 4px;
}

.form-section input,
.form-section textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 14px;
  color: white;
  font-size: 14px;
  outline: none;
  width: 100%;
}

.form-section input::placeholder,
.form-section textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-section input:focus,
.form-section textarea:focus {
  border-color: #f0c040;
}

.form-section textarea {
  height: 80px;
  resize: none;
}

.payment-info {
  font-size: 14px;
  line-height: 1.6;
}

.ton-address {
  background: rgba(0,0,0,0.3);
  border-radius: 10px;
  padding: 12px;
  font-size: 12px;
  word-break: break-all;
  color: #f0c040;
  margin: 8px 0;
  font-family: monospace;
}

.payment-note {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 8px;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #f0c040;
  color: #1a1a2e;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.submit-btn:active {
  opacity: 0.8;
}

.in-cart-btn {
  background: #27ae60 !important;
  color: white !important;
}

/* СТРАНИЦА ДЕТАЛИ */
#page-detail {
  min-height: 100vh;
  padding-bottom: 40px;
}

#page-detail header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #16213e, #0f3460);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

#page-detail header button {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

#page-detail header h1 {
  font-size: 18px;
  font-weight: 700;
}

.detail-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.detail-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a4a, #1a1a3e);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.detail-price {
  font-size: 28px;
  font-weight: 700;
  color: #f0c040;
  text-align: center;
}

.detail-desc {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

/* ЭКРАН ОПЛАТЫ */
.payment-success-icon {
  font-size: 64px;
  text-align: center;
  margin: 8px 0;
}

.payment-success-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #f0c040;
}

.payment-success-sub {
  font-size: 15px;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
}

.pay-btn:active {
  opacity: 0.8;
}

.pay-btn-wallet {
  background: linear-gradient(135deg, #0088cc, #005fa3);
}

.pay-btn-tonkeeper {
  background: linear-gradient(135deg, #0098ea, #006aaa);
}

.pay-btn-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.pay-btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pay-btn-text strong {
  font-size: 15px;
  font-weight: 600;
}

.pay-btn-text small {
  font-size: 12px;
  opacity: 0.75;
}

.payment-manual {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-manual-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.payment-address-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-address {
  font-size: 11px;
  color: #f0c040;
  font-family: monospace;
  word-break: break-all;
  flex: 1;
  background: rgba(0,0,0,0.2);
  padding: 8px 10px;
  border-radius: 8px;
}

.payment-amount-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.payment-amount-row strong {
  color: #f0c040;
  font-size: 18px;
  flex: 1;
}

.copy-btn {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.payment-after {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.6;
}

.payment-after a {
  color: #64b4ff;
  text-decoration: none;
}

/* СТРАНИЦА ПОД ЗАКАЗ */
.custom-example-label {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: -8px;
}

.custom-heading {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.custom-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.custom-timeline {
  text-align: center;
  font-size: 14px;
  color: #f0c040;
  font-weight: 600;
}

.custom-steps {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-steps-title {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-step {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-section {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #f0c040;
  margin-bottom: 4px;
}

.custom-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 11px 14px;
  color: white;
  font-size: 14px;
  outline: none;
  width: 100%;
  font-family: inherit;
}

.custom-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.custom-input:focus {
  border-color: #f0c040;
}

.custom-textarea {
  height: 72px;
  resize: none;
}

.custom-hint {
  font-size: 12px;
  color: rgba(100,180,255,0.7);
  line-height: 1.5;
  padding: 8px 10px;
  background: rgba(100,180,255,0.06);
  border-radius: 8px;
  border: 1px solid rgba(100,180,255,0.12);
}

.custom-conditions {
  gap: 10px;
}

.custom-condition-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.custom-condition-value {
  color: #f0c040;
  font-weight: 600;
}

/* AUTOCOMPLETE */
.autocomplete-wrap {
  position: relative;
}

.autocomplete-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #16213e;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0 0 10px 10px;
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}

.autocomplete-item {
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.4;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: rgba(255,255,255,0.08);
}

/* LANGUAGE SWITCHER */
.lang-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
}

.lang-active {
  background: rgba(240,192,64,0.15);
  border-color: #f0c040;
  color: #f0c040;
}
.feature-icon-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
/* ФИЛЬТР */
.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0 12px;
  grid-column: 1 / -1;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.filter-active {
  background: rgba(240,192,64,0.15);
  border-color: #f0c040;
  color: #f0c040;
}

/* КАТАЛОГ ГРИД */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  grid-column: 1 / -1;
}

.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
}

/* КАРТОЧКА SOLD */
.card-sold {
  opacity: 0.7;
}

.card-img-wrap {
  position: relative;
}

.card-img-wrap img,
.card-img-wrap .placeholder-img {
  width: 100%;
}

.sold-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sold-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.card-btn-sold {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.3) !important;
  cursor: not-allowed !important;
}

/* БОЛЬШАЯ КАРТОЧКА КАСТОМНОГО ЗАКАЗА */
.custom-order-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0d1f3c, #1a3a6e);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(100,180,255,0.2);
  display: flex;
  gap: 0;
}

.custom-order-card-img {
  width: 120px;
  flex-shrink: 0;
}

.custom-order-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-order-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.custom-order-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.custom-order-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.custom-order-card-price {
  font-size: 13px;
  color: #f0c040;
  font-weight: 600;
}

.custom-order-card-btn {
  margin-top: 4px;
  padding: 8px 16px;
  background: rgba(100,180,255,0.15);
  border: 1px solid rgba(100,180,255,0.3);
  border-radius: 10px;
  color: #64b4ff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

/* ДИСКЛЕЙМЕР */
.custom-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  text-align: center;
  padding: 12px 4px 4px;
}
/* ЭТАПЫ ПРОИЗВОДСТВА */
.production-stages {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.production-stage {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stage-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.stage-text {
  flex: 1;
}

.stage-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.stage-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.stage-connector {
  width: 2px;
  height: 16px;
  background: rgba(255,255,255,0.1);
  margin-left: 23px;
}
/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  gap: 12px;
}

.faq-arrow {
  color: rgba(255,255,255,0.4);
  font-size: 16px;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 16px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.faq-answer.faq-open {
  display: block;
}

.faq-link-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  cursor: pointer;
  margin-top: 4px;
}
/* ГАЛЕРЕЯ */
.gallery {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  transition: transform 0.3s ease;
  touch-action: pan-y;
}

.gallery-slide {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 1;
  object-fit: cover;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 4px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-dot-active {
  background: #f0c040;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: white;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  line-height: 1;
  padding: 0;
}

.gallery-arrow-left {
  left: 10px;
}

.gallery-arrow-right {
  right: 10px;
}
.payment-requisites {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-req-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.payment-req-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.payment-req-name {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

.payment-req-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-req-value {
  flex: 1;
  font-size: 12px;
  color: #f0c040;
  font-family: monospace;
  background: rgba(0,0,0,0.2);
  padding: 7px 10px;
  border-radius: 8px;
  word-break: break-all;
}

.payment-req-amount {
  font-size: 16px;
  font-weight: 700;
}

.payment-req-order {
  font-size: 15px;
  font-weight: 700;
  color: #64b4ff;
  letter-spacing: 1px;
  word-break: normal;
}

.payment-req-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.payment-note-info {
  background: rgba(100,180,255,0.08);
  border: 1px solid rgba(100,180,255,0.15);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(100,180,255,0.8);
  line-height: 1.5;
  text-align: center;
}
