section.banner {
	padding-top: 1em;
	padding-bottom: 2em;
}

.banner-carousel {
    width: 100%;
}

.banner-cell {
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    padding: 30px;
}

.banner-content {
    display: flex;
    width: 100%;
}

.banner-content .banner-column:first-child {
    padding: 20px 60px;

    display: flex;
    flex-direction: column;
    flex: 0 1 40%;

    row-gap: 30px;
}

.banner-content .banner-column:last-child {
    padding: 20px;

    display: flex;
    flex-direction: column;
    flex: 0 1 60%;
}

.banner-content h2 {
	font-size: 50px;
	font-weight: 500;
	line-height: 100%;

	margin: 0;

	text-transform: uppercase;

	color: #503629;
}

.banner-content p {
	font-size: 18px;
	font-weight: 300;

	margin: 0;

	color: #503629;
}

.banner-content .date-info {
	display: flex;
	align-items: center;

	font-size: 16px;
	text-transform: uppercase;
	color: #503629;
}

.banner-content .date-info svg {
	margin-right: 5px;
}

.text-underlined {
	position: relative;
}

.text-underlined:after {
	content: "";
	position: absolute;
	bottom: -45px;
	left: 0;
	right: unset;
	width: 100%;
	height: 100%;
	background-image: url(https://p4.kochuk.com.ua/wp-content/uploads/2024/11/vector-2.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

span.text-colored-1 {
	color: #D5BA8D !important;
}

.page-title {
    padding: 3em 0;
}

.page-title .container {
    display: flex;
    justify-content: center;
    align-items: center;
    
    gap: 45px;
}

.page-title h1 {
    margin: 0;
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 120%;
    color: #503629;
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
}

.tags-list a {
	color: #503629;
	font-size: 30px;
	font-weight: 500;

	text-transform: uppercase;
	text-decoration: none;

	position: relative;
}

.tags-list .tag.current {
    font-weight: bold;
    color: #0073aa; /* Можна змінити на бажаний колір */
}

.products-list {
/*		padding: 2em 0;*/
	padding-top: 2em;
	padding-bottom: 3em;
}

.flickity-prev-next-button {
	border-radius: 0;
	background: #FFFFFF;
}

.flickity-prev-next-button:visited, .flickity-prev-next-button:focus {
	box-shadow: unset;
	border: unset;
	outline: unset;
}

.flickity-prev-next-button .flickity-button-icon {
	fill: #503629;
}

.flickity-prev-next-button.previous {
	left: 15px;
}

.flickity-prev-next-button.next {
	right: 15px;
}

.flickity-page-dots {
	display: none;
}

.custom-product-thumbnail {
	cursor: pointer;
}

@media (max-width:1280px) {
	.banner-cell {
		min-height: 420px;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}

	.banner-content .banner-column:first-child {
		padding: 20px 80px;
	}
}


@media (max-width:767px) {

	section.banner {
		padding-top: 0;
		padding-bottom: 2em;
	}

	section.products-block {
		padding: 2em 0;
	}

	.banner-content {
		flexf-wrap: wrap;
	}

	.banner-cell {
		padding: 40px 10px;
		align-items: flex-end;
		min-height: 370px;

		background-position: top;

		aspect-ratio: 1/1;
	}

	.banner-content h2 {
		font-size: 25px;
	}

	.banner-content p {
		font-size: 13px;
	}

	.banner-content .banner-column:first-child {
		flex: 1 1 100%;

		padding: 20px;
		row-gap: 20px;
	}

	.banner-content .banner-column:last-child {
		display: none;
	}

	.banner-content .date-info {
		font-size: 13px;
	}

	.banner-content .shoco-btn {
		margin-top: 2em;
        padding: 14px 12px;
	    font-size: 10px;
	}

	.banner-content .shoco-btn svg {
		width: 12px;
		height: 12px;
	}

	.text-underlined:after {
		bottom: -20px;
	}

	.page-title {
		padding: 1em 0;
	}

	.page-title .container {
		gap: 15px;
	}

	.page-title svg {
		width: 75px;
		height: 45px;
	}

	.tags-list {
		gap: 15px;
	}

	.tags-list a {
		color: #503629;
		font-size: 11px;
		font-weight: 500;
		text-align: center;
	}

	.products.columns-3, .products.columns-4 {
		padding-top: 1em;
	}

	.flickity-prev-next-button {
		display: none;
	}

	.flickity-page-dots {
		display: flex;
	}

	.flickity-page-dots .dot {
		flex: 1 1 auto;
		height: 1px;
		background: #FDF7ED;
	}

	.flickity-page-dots .dot.is-selected {
		background: #9ECFCA;
		border-radius: 0;
		margin: 0;
	}


}