/* <------- GLOBAL -------> */
.card,
.video,
.catalog {
	padding: 50px 0;
}
.card + section,
.video + section,
.catalog + section {
	padding-top: 0;
}

/* <------- CARD -------> */
.card__wrapper {
	padding-top: 25px;
	display: flex;
	align-items: flex-start;
	gap: 30px;
	font-size: 14px;
}
.card__media {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 750px;
	max-width: 750px;
}
.card__gallery,
.card__details {
	width: 100%;
}
.card__favorites {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
	border-radius: 50%;
}
.card__gallery-item {
	position: relative;
	min-height: 750px;
	max-height: 750px;
	border-radius: 10px;
}
.card__gallery-item > img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	object-fit: cover;
	object-position: center;
	border-radius: inherit;
}
.card__gallery-prev,
.card__gallery-next {
	height: fit-content;
	cursor: pointer;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 1;
	margin: auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	font-size: 20px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	transition:
		background-color 250ms ease-out,
		color 250ms ease-out;
}
.card__gallery-prev.swiper-button-disabled,
.card__gallery-next.swiper-button-disabled {
	display: none;
}
.card__gallery-prev {
	left: 20px;
}
.card__gallery-next {
	right: 20px;
}
.card__gallery-prev:hover,
.card__gallery-next:hover {
	background-color: #00acd5;
	color: #fff;
}
.card__gallery-dots {
	bottom: 20px !important;
}
.card__gallery-dots > span {
	width: 10px;
	height: 10px;
	opacity: 1;
	background-color: #fff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	transition: background-color 250ms ease-out;
}
.card__gallery-dots > span:hover,
.card__gallery-dots > span.swiper-pagination-bullet-active {
	background-color: #00acd5;
}
.card__head {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(160, 160, 160, 0.25);
}
.card__heading {
	margin-bottom: 15px;
	font-weight: 700;
}
.card__sku {
	font-size: 500;
	color: #62798e;
}
.card__body {
	padding-top: 20px;
}
.card__excerpt {
	line-height: 1.5;
	margin-bottom: 25px;
}
.card__price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
	line-height: 1;
	color: #00b9f2;
}
.card__price-current {
	font-size: 20px;
	font-weight: 700;
}
.card__price-sale {
	font-size: 16px;
	font-weight: 500;
	text-decoration: line-through;
	color: #989b9a;
}
.card__price-off {
	padding: 6px 10px;
	border-radius: 5px;
	font-weight: 500;
	background-color: #00acd5;
	color: #fff;
}
.card__stock {
	font-weight: 500;
}
.card__stock.out {
	color: #ff4f64;
}

.card__info-tabs {
	position: relative;
	display: flex;
	align-items: flex-end;
	padding-top: 25px;
}
.card__info-tabs::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 3px;
	border-radius: 9999px;
	background-color: #cbe2ff;
}
.card__info-tab {
	position: relative;
	padding: 0 15px 15px;
	font-weight: 500;
	transition: color 250ms ease-out;
}
.card__info-tab::after {
	content: '';
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
	z-index: 1;
	width: 100%;
	height: 3px;
	border-radius: 9999px;
	background-color: transparent;
	transition: background-color 250ms ease-out;
}
.card__info-tab:hover,
.card__info-tab.picked {
	color: #00acd5;
}
.card__info-tab:hover::after,
.card__info-tab.picked::after {
	background-color: #00acd5;
}
.card__info-description,
.card__info-characteristics {
	margin-top: 20px;
	padding: 20px;
	display: none;
	background-color: #cbe2ff;
	line-height: 1.8;
	border-radius: 10px;
}
.card__info-description.picked,
.card__info-characteristics.picked {
	display: block;
}
.card__info-characteristic {
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 8px;
}
.card__info-characteristic + .card__info-characteristic {
	margin-top: 2px;
}
.card__info-characteristic > span:first-child {
	font-weight: 500;
}
.card__foot {
	padding-top: 20px;
	display: flex;
	gap: 10px;
}
.card__qty {
	display: flex;
	border: 1px solid rgba(0, 0, 0, 0.45);
	border-radius: 5px;
}
.card__qty-input {
	width: 60px;
	appearance: none;
	background-color: #fff;
	color: #777;
	padding: 0 20px;
	border-radius: inherit;
}
.card__qty-box {
	display: flex;
	flex-direction: column;
	border-radius: inherit;
}
.card__qty-minus,
.card__qty-plus {
	height: 50%;
	padding: 0 8px;
	background-color: #fff;
	color: #777;
	border-left: 1px solid rgba(0, 0, 0, 0.45);
}
.card__qty-minus {
	border-top-right-radius: inherit;
}
.card__qty-plus {
	border-top: 1px solid rgba(0, 0, 0, 0.45);
	border-bottom-right-radius: inherit;
}
.card__cart,
.card__cart-loader {
	min-width: 160px;
	width: fit-content;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 50px;
	border-radius: 4px;
	padding: 0 30px;
}
.card__cart > span {
	font-weight: 500;
}
.card__cart > i {
	font-size: 18px;
}
.card__cart:not(.hidden),
.card__cart-loader:not(.hidden) {
	display: flex;
}
.card__cart-loader > svg {
	width: 24px;
	height: 24px;
}
.card__benefits {
	max-width: 500px;
	padding: 20px;
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
}
.card__benefit {
	display: flex;
	align-items: center;
	gap: 10px;
}
.card__benefit + .card__benefit {
	border-top: 1px solid #e5e5e5;
	margin-top: 15px;
	padding-top: 15px;
}
.card__benefit-icon {
	min-width: 22px;
	max-width: 22px;
	min-height: 22px;
	max-height: 22px;
	display: flex;
	align-items: center;
}
.card__benefit-icon > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.card__benefit-text {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.6;
	color: #333;
}

/* <------- ABOUT -------> */
.about__top {
	padding: 15px 0;
	box-shadow:
		rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
		rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.about__list {
	display: flex;
	gap: 40px;
	font-weight: 700;
}
.about__group {
	padding-top: 50px;
}
.about__heading {
	text-transform: uppercase;
	color: #333;
	font-weight: 700;
	border-bottom: solid 1px #d3d3d3;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
.about__description {
	line-height: 1.7;
	font-size: 14px;
	color: #333;
}
.about__description h1 {
	font-size: 32px;
}
.about__description h2 {
	font-size: 28px;
}
.about__description h3 {
	font-size: 24px;
}
.about__description h4 {
	font-size: 20px;
}
.about__description h5 {
	font-size: 18px;
}
.about__description h6 {
	font-size: 16px;
}
.about__description h1,
.about__description h2,
.about__description h3,
.about__description h4,
.about__description h5,
.about__description h6 {
	font-weight: 700;
	margin: 20px 0 10px;
	color: #00acd5;
	line-height: 1.3;
}
.about__description p {
	margin-bottom: 12px;
}
.about__description li a,
.about__description p а {
	display: inline;
}
.about__description ul,
.about__description ol {
	padding-left: 20px;
	margin: 10px 0;
}
.about__description ul li {
	list-style: disc;
}
.about__description ol li {
	list-style: decimal;
}
.about__description li {
	margin-bottom: 6px;
}
.about__description a {
	font-weight: 600;
	text-decoration: underline;
	transition: opacity 200ms ease;
}
.about__description a:hover {
	opacity: 0.7;
}
.about__description img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	margin: 15px 0;
}
.about__description table {
	width: 100%;
	border-collapse: collapse;
	margin: 15px 0;
}
.about__description td,
.about__description th {
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 8px;
	text-align: left;
}
.about__description blockquote {
	border-left: 3px solid #cbe2ff;
	padding: 10px 15px;
	margin: 15px 0;
	background: #f6fbff;
	font-style: italic;
}
.about__characteristics {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.about__characteristic {
	display: flex;
	gap: 10px;
	word-break: break-all;
	text-transform: capitalize;
}
.about__characteristic-label,
.about__characteristic-value {
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-color: #f2f2f2;
	border-radius: 5px;
	padding: 10px 12px;
}
.about__characteristic-label {
	width: 30%;
	font-weight: 500;
}
.about__characteristic-value {
	width: 70%;
}
.about__attachments {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.about__attachment {
	display: flex;
}
.about__attachment-link {
	font-size: 14px;
	font-weight: 500;
	width: 100%;
	height: 100%;
	padding: 12px 24px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 5px;
	color: #333;
	border: 2px solid #d3d3d3;
}

/* <------- VIDEO -------> */
.video__wrapper {
    min-width: 300px;
	aspect-ratio: 9 / 16;
}
.about__box {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.video__wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 15px;
}

/* <------- CATALOG PRODUCTS -------> */
.catalog__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 40px;
	row-gap: 20px;
	margin-bottom: 20px;
}
.catalog__more {
	min-width: fit-content;
	text-transform: uppercase;
	font-size: 14px;
}
.catalog__products {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.catalog__product {
	max-width: calc(100% / 6 - 25px);
}
