

/* Start:/bitrix/templates/eshop_bootstrap_v4/components/bitrix/sale.personal.section/bootstrap_v5/style.css?17772011742717*/
/* ===== Personal Section Dashboard ===== */

.ps-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #EF5823 0%, #c94418 100%);
    border-radius: 16px;
    margin-bottom: 28px;
    color: #fff;
}

.ps-hero__avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.ps-hero__name {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.ps-hero__email {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

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

@media (max-width: 991px) {
    .ps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .ps-grid { grid-template-columns: 1fr; gap: 10px; }
    .ps-hero { padding: 20px; gap: 16px; }
    .ps-hero__name { font-size: 18px; }
    .ps-hero__avatar { width: 56px; height: 56px; font-size: 22px; }
}

/* Card */
.ps-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 14px;
    text-decoration: none;
    color: #1a1a2e;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ps-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #EF5823;
    text-decoration: none;
    color: #1a1a2e;
}

.ps-card--logout:hover {
    border-color: #ef4444;
}

/* Icon */
.ps-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--icon-bg);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Body */
.ps-card__body {
    flex: 1;
    min-width: 0;
}

.ps-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.3;
}

.ps-card__desc {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow */
.ps-card__arrow {
    color: #d1d5db;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.ps-card:hover .ps-card__arrow {
    color: #EF5823;
    transform: translateX(3px);
}

.ps-card--logout:hover .ps-card__arrow {
    color: #ef4444;
}

/* End */
/* /bitrix/templates/eshop_bootstrap_v4/components/bitrix/sale.personal.section/bootstrap_v5/style.css?17772011742717 */
