﻿.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: #fff;
			border: solid 1px #EBEBEB;
			border-radius: 5px;
			font-size: 13px;
			color: #484848;
			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(--button-color);
				border: solid 1px var(--button-color);
				color: #fff;
			}
		}

		.check-moding {
			select {
				width: 100%;
			}
		}

	}
}

.b-shaddow-1 {
	box-shadow: 0px 0px 5px -3px #000;
}

.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: 10px;

		.item-grid {
			width: calc((100% / 4) - 8px);
			margin: 4px;
			padding: 0;
			border-radius: 4px;
			background-color: #FBFBFB;

			&:hover {
				box-shadow: 0px 0px 4px -3px #000;
			}

			.discount-box {
				padding: 0.6rem;
				border-radius: 5px;
				background: var(--accent-color);

				svg {
					width: 18px;
					height: 18px;
					stroke: #F5B014;
					margin-left: 0.5rem;
				}

				.caption {
					font-size: 0.9rem;
					color: #fff;
				}

				.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;
						}
					}
				}
			}

			.content {
				padding: 0 0.5rem 0.6rem;
			}

			.cat-logo {
				display: flex;
				align-items: center;
				justify-content: center;
				position: absolute;
				top: 10px;
				left: 10px;
				width: 30px;
				height: 30px;
				border: solid 1px #F5F5F5;
				padding: 2px;
				background: #fff;
				border-radius: 5px;
				-webkit-border-radius: 5px;
				-moz-border-radius: 5px;
				-ms-border-radius: 5px;
				-o-border-radius: 5px;
				overflow: hidden;
			}

			.price-box {
				min-height: 43px;

				strike {
					font-size: 0.8rem;
				}

				strong {
					font-size: 1rem;
				}
			}

			.rate-and-discount {
				min-height: 30px;
				margin-bottom: 0.3rem;
			}

			.discount {
				width: 30px;
				height: 30px;
				background-color: var(--button-color);
				border-radius: 50%;
				font-size: 11px;
				color: #fff;
				font-family: 'Arial';
			}
		}

		@media(max-width:1320px) {
			.discount-box {
				flex-direction: column;
				gap: 0.3rem;
				padding: 0.4rem 0.6rem;
			}
		}

		@media(max-width:960px) {
			.item-grid {
				width: calc((100% /3) - 8px);
			}
		}

		@media(max-width:760px) {
			.item-grid {
				width: calc((100% /2) - 8px);
			}
		}

		@media(max-width:480px) {
			.item-grid {
				width: calc(100% - 8px);

				.discount-box {
					flex-direction: row;
					gap: 0;
					padding: 0.4rem 0.6rem;
				}
			}
		}
	}
}