@charset "UTF-8";
/* Фиксированный блок быстрого доступа */
.fixed-quick-access {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.fixed-quick-access:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.quick-access-inner {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.quick-access-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 5px 0;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.quick-access-item:hover {
  background: #007cba;
  color: white;
  transform: translateX(-5px);
}

.quick-access-item svg {
  width: 24px;
  height: 24px;
}

.quick-access-label {
  position: absolute;
  right: 100%;
  margin-right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.quick-access-label:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-left: 5px solid rgba(0, 0, 0, 0.8);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.quick-access-item:hover .quick-access-label {
  opacity: 1;
  visibility: visible;
}

/* Счетчик корзины */
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3b30;
  color: white;
  font-size: 11px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 9px;
  padding: 0 4px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .fixed-quick-access {
    right: 10px;
    bottom: 20px;
    top: auto;
    transform: none;
    flex-direction: row;
  }
  .quick-access-inner {
    flex-direction: row;
    padding: 5px;
  }
  .quick-access-item {
    width: 45px;
    height: 45px;
    margin: 0 3px;
  }
  .quick-access-label {
    display: none;
  }
}
/* ===== Общие стили личного кабинета ===== */
.woocommerce-MyAccount-navigation {
  width: 100%;
  margin-bottom: 40px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce-MyAccount-navigation ul li {
  margin: 0 !important;
  width: 100%;
}

.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 12px 24px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 180px;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background: rgb(245, 112, 59);
  color: white;
  border-color: rgba(245, 112, 59, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 124, 186, 0.2);
}

.woocommerce-MyAccount-content {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

/* ===== Анкорные секции ===== */
.woocommerce-MyAccount-content-wrapper {
  position: relative;
}

.woocommerce-MyAccount-section {
  scroll-margin-top: 100px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.woocommerce-MyAccount-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.woocommerce-MyAccount-section h2 {
  color: #212529;
  font-size: 28px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #007cba;
}

/* ===== Стили для таблицы заказов ===== */
.woocommerce-MyAccount-section table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.woocommerce-MyAccount-section table th {
  background: #f8f9fa;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
}

.woocommerce-MyAccount-section table td {
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}

.woocommerce-MyAccount-section table tr:hover {
  background: #f8f9fa;
}

.woocommerce-button {
  display: inline-block;
  padding: 10px 20px;
  background: #007cba;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.woocommerce-button:hover {
  background: #005a87;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

/* ===== Стили для формы редактирования адреса ===== */
.woocommerce-address-fields .form-row {
  margin-bottom: 20px;
}

.woocommerce-address-fields input,
.woocommerce-address-fields select,
.woocommerce-address-fields textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.woocommerce-address-fields input:focus,
.woocommerce-address-fields select:focus,
.woocommerce-address-fields textarea:focus {
  border-color: #007cba;
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
  outline: none;
}

/* ===== Адаптивность ===== */
@media (max-width: 768px) {
  .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
  }
  .woocommerce-MyAccount-navigation ul li a {
    min-width: auto;
    width: 100%;
  }
  .woocommerce-MyAccount-content {
    padding: 20px;
  }
  .woocommerce-MyAccount-section h2 {
    font-size: 24px;
  }
  .woocommerce-MyAccount-section table {
    display: block;
    overflow-x: auto;
  }
}
/* ===== Иконки в навигации ===== */
.woocommerce-MyAccount-navigation ul li a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ===== Карточка бонусов в личном кабинете ===== */
.bonus-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  padding: 30px;
  color: white;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.bonus-card:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 1;
}

.bonus-card-content {
  position: relative;
  z-index: 2;
}

.bonus-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bonus-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.bonus-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-card-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.bonus-amount {
  font-size: 48px;
  font-weight: 800;
  margin: 10px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bonus-amount-label {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.bonus-amount-currency {
  font-size: 24px;
  font-weight: 600;
}

.bonus-progress {
  margin: 25px 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: white;
  border-radius: 5px;
  transition: width 0.5s ease;
}

.bonus-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.bonus-button {
  flex: 1;
  display: inline-block;
  padding: 12px 20px;
  background: white;
  color: #667eea;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.bonus-button:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bonus-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.bonus-button-secondary:hover {
  background: white;
  color: #667eea;
}

/* Статистика бонусов */
.bonus-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
}

/* История бонусов */
.bonus-history {
  margin-top: 40px;
}

.bonus-history h3 {
  color: #212529;
  margin-bottom: 20px;
  font-size: 20px;
}

.bonus-history-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bonus-history-table th {
  background: #f8f9fa;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
}

.bonus-history-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.bonus-history-table tr:last-child td {
  border-bottom: none;
}

.bonus-positive {
  color: #28a745;
  font-weight: 600;
}

.bonus-negative {
  color: #dc3545;
  font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
  .bonus-card {
    padding: 20px;
    margin: 20px 0;
  }
  .bonus-amount {
    font-size: 36px;
  }
  .bonus-actions {
    flex-direction: column;
  }
  .bonus-stats {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-history-table {
    display: block;
    overflow-x: auto;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 21% !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
  width: 77% !important;
}

/* ===== Карточка бонусов на Dashboard ===== */
.bonus-card-dashboard {
  background: white;
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef2f7;
  transition: all 0.3s ease;
}

.bonus-card-dashboard:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.bonus-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f9fa;
}

.bonus-card-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bonus-card-title h3 {
  margin: 0;
  color: #212529;
  font-size: 24px;
  font-weight: 700;
}

.bonus-card-subtitle {
  margin: 5px 0 0;
  color: #6c757d;
  font-size: 14px;
}

.status-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* Основной баланс */
.bonus-balance-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .bonus-balance-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.bonus-balance-main {
  padding-right: 30px;
  border-right: 1px solid #dee2e6;
}

@media (max-width: 768px) {
  .bonus-balance-main {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 20px;
  }
}
.bonus-balance-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}

.bonus-balance-amount {
  margin: 10px 0;
}

.bonus-balance-amount .amount {
  font-size: 48px;
  font-weight: 800;
  color: #212529;
  line-height: 1;
}

.bonus-balance-amount .currency {
  font-size: 20px;
  color: #6c757d;
  margin-left: 5px;
  font-weight: 500;
}

.bonus-balance-conversion {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #ced4da;
}

.conversion-rate {
  color: #6c757d;
  font-size: 14px;
}

.conversion-value {
  color: #28a745;
  font-weight: 600;
  font-size: 18px;
}

/* Кэшбэк секция */
.bonus-cashback-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cashback-icon {
  font-size: 48px;
  line-height: 1;
}

.cashback-info {
  flex-grow: 1;
}

.cashback-title {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 5px;
}

.cashback-percent {
  font-size: 32px;
  font-weight: 700;
  color: #007bff;
  line-height: 1;
}

.cashback-desc {
  color: #6c757d;
  font-size: 12px;
  margin-top: 5px;
}

/* Особенности */
.bonus-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #e9ecef;
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.feature-content h4 {
  margin: 0 0 8px 0;
  color: #212529;
  font-size: 16px;
  font-weight: 600;
}

.feature-content p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
}

/* Кнопки действий */
.bonus-actions {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .bonus-actions {
    flex-direction: column;
  }
}
.bonus-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
}

.bonus-button.primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
}

.bonus-button.primary:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.bonus-button.secondary {
  background: white;
  color: #495057;
  border: 2px solid #e9ecef;
}

.bonus-button.secondary:hover {
  background: #f8f9fa;
  border-color: #007bff;
  color: #007bff;
  transform: translateY(-2px);
}

/* Прогресс бар */
.bonus-progress {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #495057;
}

.progress-header span:last-child {
  font-weight: 600;
  color: #007bff;
}

.progress-bar {
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
  border-radius: 4px;
}

.progress-hint {
  font-size: 13px;
  color: #6c757d;
  margin-top: 8px;
}

/*для аккаунта*/
.bfw-card {
  margin-top: 20px;
}/*# sourceMappingURL=common.css.map */