/**
 * PPC Rebels - Стили для личного кабинета
 *
 * @package PPC_Rebels
 */

/* ========================================
   СБРОС СТАНДАРТНЫХ СТИЛЕЙ WOOCOMMERCE
   ======================================== */

/* Убираем ограничение ширины для контента */
.woocommerce-MyAccount-content {
	width: 100%;
	float: none;
	padding: 0;
	margin: 0;
}

/* ========================================
   ОБЩИЕ СТИЛИ
   ======================================== */

.woocommerce-account .woocommerce {
	margin: 0 auto;
	padding: 40px 20px;
}

/* ========================================
   БОКОВОЕ МЕНЮ НАВИГАЦИИ
   ======================================== */

.ppc-account {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 30px;
	align-items: start;
}

.ppc-account__nav {
	background: #E6EEF0;
	border-radius: 20px;
	padding: 25px;
	position: sticky;
	top: 20px;
}

.ppc-account__nav-title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #045B6C;
}

.ppc-account__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ppc-account__nav-item {
	margin-bottom: 8px;
}

.ppc-account__nav-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 12px;
	color: #000;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s ease;
}

.ppc-account__nav-link:hover {
	background: rgba(4, 91, 108, 0.1);
	color: #045B6C;
}

.ppc-account__nav-link.is-active {
	background: #045B6C;
	color: #fff;
}

.ppc-account__nav-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.ppc-account__nav-icon svg {
	width: 100%;
	height: 100%;
	stroke: currentColor;
}

/* Logout кнопка */
.ppc-account__nav-link--logout {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	color: #F44336;
}

.ppc-account__nav-link--logout:hover {
	background: rgba(244, 67, 54, 0.1);
	color: #c62828;
}

/* ========================================
   КОНТЕНТ ОБЛАСТЬ
   ======================================== */

.ppc-account__content {
	background: #fff;
	border-radius: 20px;
	padding: 0;
	min-height: 400px;
}

.ppc-account__content-title {
	color: #000;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 25px;
	position: relative;
}

.ppc-account__content-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: #045B6C;
	margin-top: 10px;
	border-radius: 999px;
}

/* ========================================
   DASHBOARD (ГЛАВНАЯ)
   ======================================== */

.ppc-dashboard {
	padding: 0;
}

.ppc-dashboard__header {
	margin-bottom: 30px;
}

.ppc-dashboard__title {
	color: #000;
	font-size: 28px;
	font-weight: 600;
	margin: 0;
}

.ppc-dashboard__title strong {
	color: #045B6C;
}

.ppc-dashboard__welcome {
	margin-bottom: 30px;
}

.ppc-dashboard__welcome-text {
	color: #666;
	font-size: 16px;
	margin-top: 10px;
}

/* Статистика */
.ppc-dashboard__stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.ppc-stat-card {
	background: #E6EEF0;
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	transition: all 0.25s ease;
}

.ppc-stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(4, 91, 108, 0.15);
}

.ppc-stat-card__icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 15px;
	background: #045B6C;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.ppc-stat-card__icon svg {
	width: 28px;
	height: 28px;
}

.ppc-stat-card__value {
	color: #045B6C;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 5px;
}

.ppc-stat-card__label {
	color: #666;
	font-size: 14px;
	font-weight: 500;
}

/* Последние заказы */
.ppc-dashboard__recent {
	margin-top: 30px;
}

.ppc-dashboard__section-title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.ppc-dashboard__recent-title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.ppc-recent-orders {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ppc-recent-order {
	display: block;
	background: #E6EEF0;
	border-radius: 12px;
	padding: 18px 20px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.ppc-recent-order:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(4, 91, 108, 0.15);
}

.ppc-recent-order__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.ppc-recent-order__number {
	color: #045B6C;
	font-size: 16px;
	font-weight: 600;
}

.ppc-recent-order__details {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ppc-recent-order__date {
	color: #666;
	font-size: 14px;
}

.ppc-recent-order__total {
	color: #000;
	font-size: 16px;
	font-weight: 600;
}

.ppc-dashboard__link {
	display: inline-block;
	margin-top: 20px;
	color: #045B6C;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ppc-dashboard__link:hover {
	color: #0a6f86;
}

.ppc-dashboard__empty {
	text-align: center;
	padding: 40px 20px;
	color: #666;
}

.ppc-dashboard__empty p {
	margin-bottom: 15px;
}

/* ========================================
   СТРАНИЦА ЗАКАЗОВ
   ======================================== */

.ppc-orders {
	padding: 0;
}

.ppc-orders__title {
	color: #000;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 25px;
}

.ppc-orders__empty {
	text-align: center;
	padding: 60px 20px;
}

.ppc-orders__empty p {
	color: #666;
	font-size: 16px;
	margin-bottom: 20px;
}

/* ========================================
   ТАБЛИЦА ЗАКАЗОВ
   ======================================== */

.ppc-orders-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}

.ppc-orders-table__head {
	background: #F5F5F5;
	border-radius: 10px;
}

.ppc-orders-table__head th {
	padding: 15px;
	text-align: left;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ppc-orders-table__head th:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.ppc-orders-table__head th:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.ppc-orders-table__body tr {
	border-bottom: 1px solid #E0E0E0;
	transition: all 0.2s ease;
}

.ppc-orders-table__body tr:hover {
	background: #FAFAFA;
}

.ppc-orders-table__body td {
	padding: 18px 15px;
	color: #000;
	font-size: 15px;
}

.ppc-orders-table__number {
	color: #045B6C;
	font-weight: 600;
}

.ppc-orders-table__date {
	color: #666;
	font-size: 14px;
}

/* Статусы заказов */
.ppc-order-status {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.ppc-order-status--pending {
	background: #E0E0E0;
	color: #666;
}

.ppc-order-status--processing {
	background: #FFF3E0;
	color: #FF9800;
}

.ppc-order-status--completed {
	background: #E8F5E9;
	color: #4CAF50;
}

.ppc-order-status--cancelled {
	background: #FFEBEE;
	color: #F44336;
}

.ppc-orders-table__total {
	font-weight: 600;
	color: #045B6C;
}

.ppc-orders-table__actions {
	text-align: center !important;
}

.ppc-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
	border: none;
	cursor: pointer;
}

.ppc-btn--primary {
	background: #045B6C;
	color: #fff;
}

.ppc-btn--primary:hover {
	background: #0a6f86;
	transform: translateY(-2px);
}

.ppc-btn--secondary {
	background: #E6EEF0;
	color: #045B6C;
}

.ppc-btn--secondary:hover {
	background: #d0dde0;
}

.ppc-btn--sm {
	padding: 8px 20px;
	font-size: 14px;
}

/* ========================================
   ПАГИНАЦИЯ
   ======================================== */

.ppc-pagination {
	margin-top: 30px;
	text-align: center;
}

.ppc-pagination .page-numbers {
	display: inline-flex;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ppc-pagination .page-numbers li {
	display: inline-block;
}

.ppc-pagination a,
.ppc-pagination span {
	display: inline-block;
	min-width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	padding: 0 12px;
	border-radius: 8px;
	color: #045B6C;
	text-decoration: none;
	transition: all 0.2s ease;
	font-weight: 500;
}

.ppc-pagination a:hover {
	background: #E6EEF0;
}

.ppc-pagination .current {
	background: #045B6C;
	color: #ffffff;
	font-weight: 600;
}

.ppc-pagination .prev,
.ppc-pagination .next {
	font-size: 18px;
}

/* Пустое состояние */
.ppc-empty-state {
	text-align: center;
	padding: 60px 20px;
}

.ppc-empty-state__icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 20px;
	opacity: 0.3;
}

.ppc-empty-state__title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.ppc-empty-state__text {
	color: #666;
	font-size: 15px;
	margin-bottom: 25px;
}

/* ========================================
   СТРАНИЦА ПРОСМОТРА ЗАКАЗА
   ======================================== */

.ppc-order-view {
	padding: 0;
}

.ppc-order-view__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.ppc-order-view__title {
	color: #000;
	font-size: 28px;
	font-weight: 600;
	margin: 0;
}

.ppc-order-view__info {
	background: #E6EEF0;
	border-radius: 15px;
	padding: 20px 25px;
	margin-bottom: 25px;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.ppc-order-view__info-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ppc-order-view__info-label {
	color: #666;
	font-size: 14px;
}

.ppc-order-view__info-value {
	color: #000;
	font-size: 15px;
	font-weight: 600;
}

.ppc-order-view__section-title {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Состав заказа */
.ppc-order-view__items {
	background: #E6EEF0;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 25px;
}

.ppc-order-item {
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


.ppc-order-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.ppc-order-item:nth-child(2) {
	padding-top: 0 !important;
}

.ppc-order-item__name {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}

.ppc-order-item__qty {
	color: #666;
	font-weight: 400;
}

.ppc-order-item__total {
	color: #045B6C;
	font-size: 16px;
	font-weight: 600;
	margin-top: 5px;
}

.ppc-order-item__meta {
	margin-top: 10px;
}

.ppc-order-item__meta-item {
	color: #666;
	font-size: 13px;
	margin-bottom: 3px;
}

.ppc-order-item__meta-item strong {
	color: #000;
}

/* Info блок для статуса заказа */
.ppc-order-info-block {
	display: flex;
	gap: 20px;
	padding: 25px 30px;
	border-radius: 15px;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
	animation: slideInDown 0.4s ease;
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ppc-order-info-block--processing {
	background: linear-gradient(135deg, #192230 0%, #1a2942 100%);
	border: none !important;
	box-shadow: 0 8px 24px rgba(4, 91, 108, 0.2);

}

.ppc-order-info-block--processing::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #045B6C 0%, #0a6f86 100%);
}

.ppc-order-info-block__icon {
	width: 52px;
	height: 52px;
	flex-shrink: 0;
	background: linear-gradient(135deg, #045B6C 0%, #0a6f86 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	box-shadow: 0 4px 16px rgba(4, 91, 108, 0.4);
	position: relative;
}

.ppc-order-info-block__icon::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.2);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.1);
		opacity: 0.7;
	}
}

.ppc-order-info-block__icon svg {
	width: 28px;
	height: 28px;
	position: relative;
	z-index: 1;
}

.ppc-order-info-block__content {
	flex: 1;
}

.ppc-order-info-block__title {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ppc-order-info-block__text {
	color: rgba(255, 255, 255, 0.85);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

/* Сообщение менеджера */
.ppc-order-view__message {
	background: #fff;
	padding: 20px;
	border: 1px solid #045B6C;
	border-left: 4px solid #045B6C;
	border-radius: 8px;
	margin-bottom: 25px;
}

.ppc-order-view__message-title {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}

.ppc-order-view__message-text {
	color: #666;
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
}

/* Файлы заказа */
.ppc-order-view__files {
	background: #E6EEF0;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 25px;
}

.ppc-files-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ppc-file-item__desc {
	color: #666;
	font-size: 13px;
	margin-top: 3px;
}

/* Контакты */
.ppc-order-view__contacts {
	background: #E6EEF0;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 25px;
}

.ppc-order-view__contacts-title {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.ppc-order-view__contacts-text {
	color: #666;
	font-size: 14px;
	margin-bottom: 15px;
}

.ppc-contacts {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.ppc-contact {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: #fff;
	border-radius: 10px;
	color: #000;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ppc-contact:hover {
	background: #045B6C;
	color: #fff;
	transform: translateY(-2px);
}

.ppc-contact svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.ppc-contact--telegram:hover {
	background: #0088cc;
}

.ppc-contact--email:hover {
	background: #045B6C;
}

/* Кнопки действий */
.ppc-order-view__actions {
	margin-top: 30px;
}

/* ========================================
   СТРАНИЦА ЗАКАЗА (старое)
   ======================================== */

.ppc-order {
	padding: 0;
}

.ppc-order__header {
	background: #192230;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
	color: #fff;
}

.ppc-order__header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.ppc-order__number {
	font-size: 24px;
	font-weight: 700;
}

.ppc-order__date {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

/* Детали заказа */
.ppc-order__items {
	background: #E6EEF0;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 25px;
}

.ppc-order__items-title {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.ppc-order__item {
	display: flex;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ppc-order__item:last-child {
	border-bottom: none;
}

.ppc-order__item-image {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
}

.ppc-order__item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ppc-order__item-info {
	flex: 1;
}

.ppc-order__item-name {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.ppc-order__item-options {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.ppc-order__item-option {
	color: #666;
	font-size: 13px;
}

.ppc-order__item-price {
	flex-shrink: 0;
	color: #045B6C;
	font-size: 18px;
	font-weight: 700;
}

.ppc-order__total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.ppc-order__total-label {
	color: #000;
	font-size: 20px;
	font-weight: 700;
}

.ppc-order__total-value {
	color: #045B6C;
	font-size: 24px;
	font-weight: 700;
}

/* Блок файлов */
.ppc-order__files {
	background: #E6EEF0;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 25px;
}

.ppc-order__files-title {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}

.ppc-order__manager-message {
	background: #fff;
	border-left: 4px solid #045B6C;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.ppc-order__manager-message p {
	color: #000;
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}

.ppc-order__files-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ppc-file-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding: 15px 20px;
	border-radius: 12px;
	transition: all 0.2s ease;
	gap: 10px;
}

.ppc-file-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ppc-file-item__info {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.ppc-file-item__icon {
	width: 40px;
	height: 40px;
	background: #045B6C;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
}

.ppc-file-item__icon svg {
	width: 20px;
	height: 20px;
}

.ppc-file-item__name {
	color: #000;
	font-size: 15px;
	font-weight: 500;
}

.ppc-file-item__description {
	color: #666;
	font-size: 13px;
	margin-top: 3px;
}

.ppc-file-item__download {
	padding: 10px 20px;
	background: #045B6C;
	color: #fff;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ppc-file-item__download:hover {
	background: #0a6f86;
	transform: translateY(-2px);
	color: #fff !important;
}

/* Контакты */
.ppc-order__contacts {
	background: #E6EEF0;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 25px;
}

.ppc-order__contacts-title {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 15px;
}

.ppc-order__contacts-list {
	display: flex;
	gap: 15px;
}

.ppc-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 20px;
	background: #fff;
	border-radius: 10px;
	color: #000;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ppc-contact-link:hover {
	background: #045B6C;
	color: #fff;
	transform: translateY(-2px);
}

.ppc-contact-link svg {
	width: 20px;
	height: 20px;
}

/* Кнопка назад */
.ppc-order__back {
	margin-top: 30px;
}

/* ========================================
   ФОРМА ПРОФИЛЯ
   ======================================== */

.ppc-edit-account {
	padding: 0;
}

.ppc-edit-account__title {
	color: #000;
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 30px;
}

.ppc-account-form {
	max-width: 600px;
}

.ppc-account-form__row {
	margin-bottom: 20px;
}

.ppc-account-form__label {
	display: block;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.ppc-account-form__label .required {
	color: #F44336;
}

.ppc-account-form__input {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid #D0D0D0;
	border-radius: 10px;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	transition: all 0.25s ease;
	box-sizing: border-box;
}

.ppc-account-form__input:focus {
	outline: none;
	border-color: #045B6C;
	box-shadow: 0 0 0 3px rgba(4, 91, 108, 0.1);
}

.ppc-account-form__hint {
	display: block;
	color: #666;
	font-size: 13px;
	margin-top: 6px;
}

.ppc-account-form__divider {
	height: 1px;
	background: #E0E0E0;
	margin: 30px 0;
}

.ppc-account-form__subtitle {
	color: #000;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.ppc-account-form__actions {
	margin-top: 30px;
}

/* Старые классы (для совместимости) */
.ppc-form-row {
	margin-bottom: 20px;
}

.ppc-form-label {
	display: block;
	color: #000;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.ppc-form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1.5px solid #D0D0D0;
	border-radius: 10px;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	transition: all 0.25s ease;
}

.ppc-form-input:focus {
	outline: none;
	border-color: #045B6C;
	box-shadow: 0 0 0 3px rgba(4, 91, 108, 0.1);
}

.ppc-form-submit {
	margin-top: 25px;
}

.woocommerce-account .woocommerce {
	padding: 0 !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 992px) {
	.ppc-account {
		grid-template-columns: 1fr;
	}

	.ppc-account__nav {
		position: static;
	}

	.ppc-dashboard__stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.ppc-orders-table {
		font-size: 14px;
	}

	.ppc-orders-table__head th,
	.ppc-orders-table__body td {
		padding: 12px 10px;
	}
}

@media (max-width: 768px) {


	.ppc-dashboard__stats {
		grid-template-columns: 1fr;
	}

	/* Преобразуем таблицу в карточки на мобильных */
	.ppc-orders-table {
		border: 0;
	}

	.ppc-orders-table__head {
		display: none;
	}

	.ppc-orders-table__body tr {
		display: block;
		margin-bottom: 15px;
		background: #E6EEF0;
		border-radius: 15px;
		padding: 15px;
		border-bottom: none;
	}

	.ppc-orders-table__body tr:hover {
		background: #d0dde0;
	}

	.ppc-orders-table__body td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
		text-align: left;
	}

	.ppc-orders-table__body td:last-child {
		border-bottom: none;
	}

	.ppc-orders-table__body td::before {
		content: attr(data-label);
		font-weight: 600;
		color: #666;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	/* Выделяем блок с кнопкой действий */
	.ppc-orders-table__actions {
		text-align: left;
		border-bottom: none !important;
		padding-top: 15px !important;
		margin-top: 5px;
	}

	.ppc-orders-table__actions::before {
		display: none;
	}

	.ppc-btn--sm {
		width: 100%;
		text-align: center;
		background: #045B6C;
		color: #fff;
		padding: 12px 20px;
	}

	.ppc-btn--sm:hover {
		background: #0a6f86;
		color: #fff;
	}

	.ppc-order__header-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.ppc-order__item {
		flex-direction: column;
	}

	.ppc-order__contacts-list {
		flex-direction: column;
	}

	.ppc-file-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	/* Адаптивные стили для view-order */
	.ppc-order-view__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.ppc-order-view__info {
		flex-direction: column;
		gap: 15px;
	}

	.ppc-contacts {
		flex-direction: column;
	}

	/* Info блок на мобильных */
	.ppc-order-info-block {
		flex-direction: column;
		text-align: center;
		padding: 20px;
	}

	.ppc-order-info-block__icon {
		margin: 0 auto;
	}

	/* Адаптивные стили для dashboard */
	.ppc-recent-order__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.ppc-recent-order__details {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
}