.p_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px;
  
}

.p_cards .owl-stage-outer {
	/*overflow: unset !important;*/
}

.p_cards.all_visible .p_card {
  display: block !important;
}

.p_card {
  border-radius: 20px;
  overflow: hidden;
  /*filter: drop-shadow(6px 6px 16px rgba(0, 0, 0, 0.25)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(2px 2px 4px #EEEDED);*/
  border: 1px solid #EEEDED;
}

.p_card:nth-child(n+10) {
  display: none;
}

.pc_img {
  display: block;
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #fff;
}

.pc_img a {
	display: block;
	width: 100%;
	height: 100%;
}

.pc_img:hover img {
  scale: 1.1;
}

.pc_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  transition: 0.5s;
}

.pc_icon {
	position: absolute;
	z-index: 1;
	top: 10px;
    right: 10px;
	display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 80%;
}

.pc_icon_value {
	display: block;
	padding: 4px 10px;
	background: #D72225;
    border-radius: 10px;
    font-size: 14px;
    color: #F8F8F8;
    font-weight: 600;
	box-shadow: 0 1px 3px 0px #747474;
}

.pc_icon_value.gift {
	position: relative;
	padding: 4px 5px 4px 30px;
}
.pc_icon_value.gift:before {
	content: '';
	width: 16px;
	height: 16px;
	position: absolute;
	background-image: url('/bitrix/templates/furniture_gray/images/gift.png');
	background-size: cover;
	left: 7px;
	top: 5px;
}

.pc_icon_value.spec {
	background: #22d74a;
}

.pc_icon_value.new {
	background: #22a6d7;
}

.pc_icon_value.vip {
	background: #D72225;
}

.pc_content {
  background: #fff;
  padding: 10px;
}

.pc_name {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 5px;
	height: 40px;
	overflow: hidden;
}

.pc_name>span {
  display: block;
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
}

.pci_line {
  display: flex;
  justify-content: space-between;
}

.pci_line>div {
  font-size: 14px;
}

.pci_line>div:nth-child(2) {
  font-weight: 600;
  text-decoration: underline;
}

.pci_line>div:last-child {
  margin-bottom: 0;
}

.pc_info {
  margin-bottom: 15px;
}

.pc_bot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

.pcb_left>div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pcb_left>div>span {
  display: block;
  width: 30px;
  text-align: center;
}

.pcb_left>div>span>img {
  display: inline-block;
}

.pcb_left>div>div {
  font-size: 14px;
  color: #000;
}

.pcb_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.pc_price {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 15px;
}

.pc_socials_2 {
  justify-content: center;
  display: flex;
  gap: 5px;
  align-items: center;
}

.pc_socials_2 > a {
	display: block;
	height: 30px;
	width: 30px;
}

.pc_socials_2 > a > img {
	height: 100%;
	width: 100%;
}

.pc_btn {
  display: block;
  width: 100px;
  height: 46px;
  background: #D72225;
  border-radius: 10px;
  font-size: 14px;
  line-height: 46px;
  color: #F8F8F8;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
}

.pc_btn:hover {
  opacity: 0.7;
}