﻿.page-title {
	padding-bottom: 4rem;

	.page-title-container {
		min-height: 430px;
	}

	.container {
		position: relative;
	}

	.page-breadcrumbs {
		position: absolute;
		top: 0;
		right: 0;
		background: transparent;

		.breadcrumbs {
			color: #fff !important;

			a {
				color: #fff !important;

				&:hover {
					color: #fff !important;
				}
			}
		}
	}
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;

	.page-item {
		margin: 0px 2px;

		.page-link {
			display: flex;
			align-items: center;
			justify-content: center;
			width: 30px;
			height: 30px;
			background-color: var(--bg-1);
			border: solid 1px var(--secondary-color-light-1);
			border-radius: 5px;
			font-size: 13px;
			color: var(--Black);
			font-family: 'Arial';
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			-ms-border-radius: 5px;
			-o-border-radius: 5px;

			span {
				display: block;
				line-height: 0;
			}
		}

		&.active,
		&:hover {
			.page-link {
				background-color: var(--secondary-color-light-1);
				border: solid 1px var(--secondary-color-light-1);
				color: var(--bg-1);
			}
		}

		.check-moding {
			select {
				width: 100%;
			}
		}

	}
}


.offers-page {
	position: relative;
	z-index: 1;
	transform: translateY(-10rem);
	-webkit-transform: translateY(-10rem);
	-moz-transform: translateY(-10rem);
	-ms-transform: translateY(-10rem);
	-o-transform: translateY(-10rem);

	.product-list {
		background-color: #fff;
		border-radius: 1.5rem;
		-webkit-border-radius: 1.5rem;
		-moz-border-radius: 1.5rem;
		-ms-border-radius: 1.5rem;
		-o-border-radius: 1.5rem;
		border: solid 1px var(--texture-color-7);
		padding: 1.2rem;

		.item-holder {
			display: inline-block;
			vertical-align: top;
			width: calc((100% / 6) - 0.6rem);
			margin: 0 0.2rem 0.8rem;

			.content {
				padding: 0.4rem;
			}

			.item {
				display: flex;
				flex-direction: column;
				justify-content: space-between;
				min-height: 23.7rem;
				border: solid 1px var(--texture-color-7);
				border-radius: var(--radius);
				-webkit-border-radius: var(--radius);
				-moz-border-radius: var(--radius);
				-ms-border-radius: var(--radius);
				-o-border-radius: var(--radius);
				background-color: white;
				overflow: hidden;

				.img-box {
					display: block;
					margin-bottom: 0.8rem;

					img {
						width: 100%;
						border-radius: var(--radius);
						-webkit-border-radius: var(--radius);
						-moz-border-radius: var(--radius);
						-ms-border-radius: var(--radius);
						-o-border-radius: var(--radius);
					}
				}

				.title {
					font-size: 1rem;
					text-align: right;
					min-height: 3.7rem;
					line-height: 1.8;
					margin-bottom: 0.8rem;
				}

				.price-box {
					min-height: 4rem;

					strong {
						color: var(--texture-color-1);
						font-size: 0.9rem;
						font-weight: 500;
					}

					strike {
						color: var(--texture-color-4);
						font-size: 0.9rem;
						font-weight: 500;
					}
				}


				.discount {
					position: absolute;
					top: 0;
					left: 0;
					width: 30px;
					height: 30px;
					background-color: var(--secondary-color-light-1);
					border-radius: 50%;
					font-size: 0.8rem;
					color: #fff;
				}
			}

			.discount-box {
				padding: 0.6rem;
				background: var(--secondary-color-light-1);

				.soon {
					direction: ltr;

					.soon-label {
						display: none;
					}

					.soon-separator {
						font-size: 1rem;
						font-weight: bold;
						color: #fff;
						margin: 0px 0.3rem;
					}

					.soon-group-inner {
						display: flex;
						align-items: center;
						justify-content: center;

						.soon-group-sub {
							display: flex;
							align-items: center;
							justify-content: center;
							width: 30px;
							height: 30px;
							border-radius: 5px;
							-webkit-border-radius: 5px;
							-moz-border-radius: 5px;
							-ms-border-radius: 5px;
							-o-border-radius: 5px;
							background-color: #fff;
							font-size: 1rem;
							font-weight: bold;
							color: #000;
							padding-top: 4px;
						}
					}
				}
			}
		}

		@media(max-width:1320px) {
			.item-holder {
				width: calc((100% / 4) - 0.95rem);

				.discount-box {
					flex-direction: column;
					gap: 0.3rem;
					padding: 0.4rem 0.6rem;
				}
			}
		}


		@media(max-width:990px) {
			.item-holder {
				width: calc((100% / 3) - 0.95rem);
			}
		}

		@media(max-width:570px) {
			.item-holder {
				width: calc((100% / 2) - 0.95rem);
			}
		}

		@media(max-width:480px) {
			.item-holder {
				width: calc((100% / 1) - 0.95rem);

				.discount-box {
					flex-direction: row;
					gap: 0;
					padding: 0.4rem 0.6rem;
				}
			}
		}
	}
}