.profile {
  display: grid;
  grid-template-columns: 250px 1fr;
  grid-template-rows: auto 1fr;
  gap: 14px 50px;
  font-size: 15px;
}
.profile .profile-shop {
  grid-column: 1/3;
}
.profile .profile-header {
  grid-column: 1/3;
}
.profile .about-part {
  grid-row: 2/3;
  grid-column: 1/2;
}
.profile .body-part {
  grid-row: 2/3;
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .profile {
    display: flex;
    flex-direction: column;
  }
}

.profile-header {
  filter: url(#graphicBlur);
  background: var(--target-default);
  padding: 20px 20px;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.profile-header .user-avatar {
  grid-column: 1/2;
  grid-row: 1/2;
}
.profile-header .img-avatar {
  filter: url(#graphicBlur);
  border-radius: 25px;
}
.profile-header .main-info {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-header .actions {
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.profile-header .actions .action-item {
  display: flex;
  filter: url(#graphicBlur);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8784313725);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.profile-header .login {
  font-size: 17px;
  font-weight: 600;
}
.profile-header .activity {
  opacity: 0.8;
  line-height: 1.5;
}
.profile-header .userid {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  border-radius: 10px 20px 10px 10px;
  background: var(--brand-light);
  padding: 4px 6px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  color: #2b2534;
  align-items: baseline;
  gap: 5px;
}
.profile-header .group {
  background: var(--brand-light);
  border-radius: 15px;
  padding: 6px 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.product-title {
  font-size: 21px;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 7px;
}

.cat-name,
.for-name {
  max-width: 190px !important;
}

.profile-shop {
  margin-top: 16px;
  background: var(--target-default);
  border-radius: 12px;
  margin-bottom: 25px;
  color: #fff;
}
.profile-shop .shop-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  gap: 16px;
}
.profile-shop .shop-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.profile-shop .shop-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f5f7;
  display: grid;
  place-items: center;
}
.profile-shop .shop-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-shop .shop-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.profile-shop .shop-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-shop .shop-name {
  font-weight: 700;
  font-size: 20px;
}
.profile-shop .shop-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-shop .chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 6px 10px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #111827;
  font-size: 12px;
  white-space: nowrap;
}
.profile-shop .chip i {
  color: #6b7280;
}
.profile-shop .chip-premium {
  background: #fef3c7;
  color: #92400e;
}
.profile-shop .chip-premium i {
  color: #d97706;
}
.profile-shop .chip-neutral {
  background: #eef2ff;
  color: #3730a3;
}
.profile-shop .chip-neutral i {
  color: #6366f1;
}
.profile-shop .shop-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-shop .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 8px 12px;
  cursor: pointer;
  color: #111827;
  font-size: 13px;
  transition: 0.15s ease-in-out;
  text-decoration: none;
}
.profile-shop .btn:hover {
  background: #f9fafb;
}
.profile-shop .btn.ghost {
  border-color: #d1d5db;
}
.profile-shop .btn.icon {
  padding: 8px;
  width: 36px;
  height: 36px;
  justify-content: center;
}
@media (max-width: 768px) {
  .profile-shop .shop-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-shop .shop-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* --- Seller info card (about-part) --- */
.about-part .seller-info-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  gap: 16px;
}
.about-part .seller-info-card.is-banned {
  border: 1px solid #ffacaa;
  background: #fff4f4;
}
.about-part .seller-info-card .shop-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-part .seller-info-card .shop-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f5f7;
  display: grid;
  place-items: center;
}
.about-part .seller-info-card .shop-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-part .seller-info-card .avatar-wrap {
  position: relative;
  display: inline-block;
}
.about-part .seller-info-card .status-dot {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 2px #fff;
}
.about-part .seller-info-card .status-dot.offline {
  background: #9ca3af;
}
.about-part .seller-info-card .shop-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-part .seller-info-card .shop-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.about-part .seller-info-card .shop-name {
  font-weight: 700;
  font-size: 20px;
}
.about-part .seller-info-card .shop-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-part .seller-info-card .shop-stats .fa-circle.online {
  color: #16a34a;
}
.about-part .seller-info-card .shop-stats .fa-circle.offline {
  color: #9ca3af;
}
.about-part .seller-info-card .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 6px 10px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #111827;
  font-size: 12px;
  white-space: nowrap;
}
.about-part .seller-info-card .chip i {
  color: #6b7280;
}
.about-part .seller-info-card .chip-premium {
  background: #fef3c7;
  color: #92400e;
}
.about-part .seller-info-card .chip-premium i {
  color: #d97706;
}
.about-part .seller-info-card .chip-neutral {
  background: #eef2ff;
  color: #3730a3;
}
.about-part .seller-info-card .chip-neutral i {
  color: #6366f1;
}
.about-part .seller-info-card .socials {
  display: inline-flex;
  gap: 8px;
  margin-right: 6px;
  margin-top: 10px;
}
.about-part .seller-info-card .socials .social.icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  transition: 0.15s ease-in-out;
  text-decoration: none;
}
.about-part .seller-info-card .socials .social.icon:hover {
  background: #f9fafb;
}
.about-part .seller-info-card .socials .social.icon.vk {
  color: #0077ff;
  border-color: #dbeafe;
}
.about-part .seller-info-card .socials .social.icon.tg {
  color: #229ED9;
  border-color: #d1f1fb;
}
.about-part .seller-info-card .socials .social.icon.yt {
  color: #FF0000;
  border-color: #fde2e2;
}
.about-part .seller-info-card .socials .social.icon.ig {
  color: #C13584;
  border-color: #fde2f2;
}
.about-part .seller-info-card .socials .social.icon.tw {
  color: #111827;
  border-color: #e5e7eb;
}
.about-part .seller-info-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 8px 12px;
  cursor: pointer;
  color: #111827;
  font-size: 13px;
  transition: 0.15s ease-in-out;
  text-decoration: none;
}
.about-part .seller-info-card .btn:hover {
  background: #f9fafb;
}
.about-part .seller-info-card .btn.ghost {
  border-color: #d1d5db;
}
.about-part .seller-info-card .btn.icon {
  padding: 8px;
  width: 36px;
  height: 36px;
  justify-content: center;
}
@media (max-width: 768px) {
  .about-part .seller-info-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-part .seller-info-card .shop-right {
    width: 100%;
    justify-content: space-between;
  }
}