section.banner {
	padding-top: 1em;
	padding-bottom: 5em;
}

.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 65px;

    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;
}

.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;
}

section.products-block {
	background: #FDF7ED;

	padding: 4em 0;
}

.products-block .container {
	display: flex;
	flex-wrap: wrap;

	gap: 3em;
}

.products-block .container .column-1 {
	display: flex;
	flex-direction: column;

	flex: 1 1 calc(25% - 3em);

	row-gap: 10px;
}

.products-block .container .column-2 {
	display: flex;

	flex: 1 1 calc(75% - 3em);
}

.c-top-title {
	font-family: Adobe Handwriting Tiffany;
	font-size: 19px;
	font-weight: 400;

	color: #9ECFCA;
}

.c-main-title {
	font-size: 50px;
	font-weight: 500;
	line-height: 110%;
	text-transform: uppercase;

	color: #503629;
}

.c-main-title span {
	text-transform: initial;

	color: #D5BA8D;
}

.c-sub-title {
	font-size: 18px;
	font-weight: 300;
	line-height: 22px;

	color: #503629;

	margin: 25px 0px;
}

.product-items-list {
	display: flex;
	flex-wrap: wrap;

	gap: 30px;
}

.product-items-list .ts-item {
	display: flex;
	flex-direction: column;
	row-gap: 10px;

	flex: 1 1 calc(33% - 30px);

	text-decoration: none;
}

.product-items-list .ts-item img {
	height: 328px;
	object-fit: cover;
}

.product-items-list .ts-item p {
	margin: 0;
	font-size: 25px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}

section.news-info {
	background: #fff;

	padding: 3em 0;
}

section.trends-block .container {
	flex-direction: row-reverse;
}

.trends-block .product-items-list {
	padding-top: 30px;
}

section.categories {
	background: #fff;

	padding: 3em 0;
}

.categories-list {
	display: flex;
	flex-wrap: wrap;

	gap: 20px;
}

.categories-list .category-item {
	display: flex;
	flex-direction: column;

	text-decoration: none;
}

.category-item.col-1 {
	flex: 1 1 calc(25% - 20px);
}

.category-item.col-2 {
	flex: 1 1 calc(50% - 20px);
}

.category-item img {
	height: 333px;
	width: 100%;
	object-fit: cover;
}

.category-content {
	padding: 25px 30px;

	background: #FDF7ED;

	display: flex;
	align-items: center;
	justify-content: space-between;

	transition: background 250ms ease-in;
}	

.category-item:hover .category-content {
	background: #9ECFCA;
}

.category-content .category-name {
	font-size: 21px;
	font-weight: 500;
	text-transform: uppercase;
	color: #503629;
}

.category-content img {
	max-height: 30px;
	width: fit-content;
}

.news-info-title {
	font-size: 50px;
	text-transform: uppercase;
	line-height: 100%;
	color: #503629;

	width: 35%;
}

.news-info-title span {
	color: #D5BA8D;
}

.news-info-grid {
    display: grid;
    grid-template-columns: calc(40% - 45px) calc(30% - 45px) 30%;
    gap: 45px;

    padding: 2em 0;
}

.news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;

    gap: 20px;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item.small-image {
	flex-direction: row;
}

.news-image {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.news-content a {
	text-decoration: none;
}

.news-content a:hover, .news-content a:visited {
	color: #9ECFCA;
}

.news-title {
	font-family: Adobe Handwriting Tiffany;
    font-size:20px;
	font-weight: 400;
	line-height: 120%;
    color: #9ECFCA;

    margin: 0;
}

.news-desc {
    font-size: 17px;
    font-weight: 300;
    color: #503629;
    margin: 0;
}

.news-icon {
    width: 32px;
    height: 32px;
    margin-top: 16px;
    align-self: flex-start;
}

/* Додаткові стилі для різних варіантів design_type */
.news-item.design-type-1 {
    background-color: #f3f4f6;
}

.news-item.design-type-2 {
    background-color: #e0f7fa;
}

.view-all-news {
	display: none;
	align-items: center;
	gap: 10px;

	font-size: 12px;
	text-transform: uppercase;
	color: #9ECFCA;
}

.view-all-news svg {
	transform: rotate(180deg);
}

.text-underlined {
	position: relative;
}

.text-underlined:after {
	content: "";
	position: absolute;
	bottom: -55px;
	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;
}


@media (max-width:1280px) {
	.banner-cell {
		min-height: 420px;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
	}
}

@media (max-width:767px) {

	section.banner {
		padding-top: 0;
		padding-bottom: 2em;
	}

	section.products-block {
		padding: 2em 0;
	}

	.banner-content {
		flex-wrap: wrap;
	}

	.banner-cell {
		padding: 40px 10px;
		align-items: flex-end;
		min-height: 370px;

		background-position: top;
		background-size: cover;
	}

	.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: 9px;
		height: 9px;
	}

	.products-block .container .column-1, .products-block .container .column-2 {
		flex: 1 1 100%;
		row-gap: 0;
	}

	.c-main-title {
		font-size: 25px;
	}

	.c-sub-title {
		width: 55%;
		font-size: 13px;
		line-height: 17px;

		margin: 15px 0;
	}

	.products-block .container {
		gap: 2em;
	}

	.product-items-list {
		gap: 20px;
	}

	.product-items-list .ts-item {
		flex: 1 1 calc(50% - 20px);
	}

	.product-items-list .ts-item img {
		height: 160px;
	}

	.product-items-list .ts-item p {
		font-size: 12px;
	}

	.product-items-list.flickity-enabled {
		width: 100%;
	}

	.product-items-list.flickity-enabled .flickity-viewport {
		width: 100%;
	}

	.product-items-list.flickity-enabled .ts-item {
		width: 50%;
		margin-right: 20px;
	}

	.product-items-list.flickity-enabled .flickity-page-dots .dot {
		background: #fff;
	}

	.product-items-list.flickity-enabled .flickity-page-dots .dot.is-selected {
		background: #9ECFCA;
	}

	.trends-block .product-items-list {
		padding-top: 0px;
	}

	.categories-list {
		gap: 10px;
	}

	.category-item img {
		height: 160px;
	}

	.category-content {
		padding: 15px 15px;
	}

	.category-content .category-name {
		font-size: 11px;
	}

	.category-content img {
		max-height: 15px;
	}

	.category-item.col-1 {
		flex: 1 1 calc(50% - 10px);
	}

	.category-item.col-2 {
		flex: 1 1 100%;
	}

	section.news-info {
		padding: 2em 0;
	}

	.news-info-title {
		font-size: 25px;
		width: 100%;
	}

	.news-desc {
		font-size: 12px;
	}

	.news-item {
		gap: 10px;

		margin: 0 !important;
	}

	.news-item.small-image {
		align-items: center;
		gap: 20px;
	}

	.news-image {
	    max-height: 210px;
	    object-fit: cover;
	    object-position: top;
	}

	.news-info-grid {
		grid-template-columns: 100%;
		gap: 30px;
	}
/*
	.view-all-news {
		display: flex;
	}*/

	.news-info-grid .news-item:nth-child(n+4) {
        display: none;
    }

    .text-underlined:after {
		bottom: -30px !important;
	}

	.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;
	}


}