/* ==============================================
   BLOG — shared
   ============================================== */

.ut-blog {
	width: 100%;
	max-width: none !important;
	background: #e6f0e8;
	padding: 0 0 72px;
	box-sizing: border-box;
}

body.blog .site-main,
body.single .site-main,
body.category .site-main,
body.tag .site-main,
body.author .site-main,
body.date .site-main {
	width: 100% !important;
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin: 0 !important;
}

/* ==============================================
   BLOG HERO
   ============================================== */

.ut-blog-hero {
	padding: clamp(28px, 4vw, 52px) 0 clamp(20px, 3vw, 36px);
}

.ut-blog-hero__title {
	margin: 0 0 12px;
	font-family: "Playfair Display", serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #1a2e20;
}

.ut-blog-hero__desc,
.ut-blog-hero__desc p {
	max-width: 64ch;
	margin: 0;
	font-size: 15px;
	line-height: 1.85;
	color: #5a6d5e;
}

/* ==============================================
   BLOG BODY / GRID
   ============================================== */

.ut-blog-body {
	padding-bottom: 8px;
}

.ut-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ==============================================
   POST CARD
   ============================================== */

.ut-post-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #d4e8d8;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(30, 58, 40, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ut-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 44px rgba(30, 58, 40, 0.13);
}

/* Thumbnail */
.ut-post-card__thumb {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #d8ecda;
	flex-shrink: 0;
}

.ut-post-card__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ut-post-card:hover .ut-post-card__thumb img {
	transform: scale(1.04);
}

.ut-post-card__thumb-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d8ecda 0%, #c4dfc7 100%);
}

.ut-post-card__cat {
	position: absolute;
	top: 14px;
	left: 14px;
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: #2d5a3d;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
}

/* Body */
.ut-post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 24px 24px;
	gap: 10px;
}

.ut-post-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 12px;
	color: #7a8f7e;
}

.ut-post-card__sep {
	color: #b0c4b4;
}

.ut-post-card__title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
	line-height: 1.35;
	color: #1a2e20;
}

.ut-post-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.ut-post-card__title a:hover {
	color: #2d5a3d;
}

.ut-post-card__excerpt {
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: #5a6d5e;
	flex: 1;
}

.ut-post-card__more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-start;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 700;
	color: #2d5a3d;
	text-decoration: none;
	transition: gap 0.2s ease;
}

.ut-post-card__more:hover {
	gap: 10px;
}

.ut-post-card__more svg {
	width: 15px;
	height: 15px;
	flex-shrink: 0;
	stroke: currentColor;
}

/* ==============================================
   BLOG PAGINATION
   ============================================== */

.ut-blog-pagination {
	margin-top: 48px;
}

.ut-blog-pagination ul.page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	list-style: none;
}

.ut-blog-pagination ul.page-numbers li {
	padding: 0;
}

.ut-blog-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 10px;
	border: 1px solid transparent;
	color: #3f6048;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.18s ease;
}

.ut-blog-pagination a.page-numbers,
.ut-blog-pagination span.page-numbers.current {
	background: #ffffff;
	border-color: #d4e8d8;
}

.ut-blog-pagination a.page-numbers:hover {
	background: #f0f8f1;
	border-color: #4a7c59;
	color: #2d5a3d;
}

.ut-blog-pagination .page-numbers.current {
	background: #2d5a3d;
	border-color: #2d5a3d;
	color: #ffffff;
	box-shadow: 0 4px 14px rgba(45, 90, 61, 0.28);
}

.ut-blog-pagination .page-numbers.dots {
	color: #7a8f7e;
	pointer-events: none;
	border: none;
	background: none;
}

/* ==============================================
   SINGLE POST
   ============================================== */

.ut-blog-single {
	padding: 28px 0 72px;
}

.ut-blog-single .ut-shell {
	max-width: 860px;
}

.ut-post {
	margin-top: 28px;
}

/* Header */
.ut-post__header {
	margin-bottom: 40px;
}

.ut-post__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	font-size: 13px;
	color: #7a8f7e;
}

.ut-post__cat {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: #e6f0e8;
	color: #2d5a3d;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
}

.ut-post__title {
	margin: 0 0 16px;
	font-family: "Playfair Display", serif;
	font-size: clamp(1.9rem, 4vw, 3rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #1a2e20;
}

.ut-post__lead {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #5a6d5e;
	margin: 0 0 28px;
	font-style: italic;
}

.ut-post__thumb {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 40px;
	box-shadow: 0 12px 48px rgba(30, 58, 40, 0.12);
	border: 1px solid #d4e8d8;
}

.ut-post__thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 7;
	object-fit: cover;
}

/* Content */
.ut-post__content {
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid #d4e8d8;
	padding: clamp(28px, 4vw, 52px);
	box-shadow: 0 6px 28px rgba(30, 58, 40, 0.07);
	font-size: 16px;
	line-height: 1.9;
	color: #3a4e3d;
}

.ut-post__content h2,
.ut-post__content h3,
.ut-post__content h4 {
	font-family: "Playfair Display", serif;
	color: #1a2e20;
	margin-top: 2em;
	margin-bottom: 0.6em;
}

.ut-post__content h2 { font-size: 1.65rem; }
.ut-post__content h3 { font-size: 1.3rem; }
.ut-post__content h4 { font-size: 1.1rem; }

.ut-post__content p { margin: 0 0 1.2em; }

.ut-post__content a {
	color: #2d5a3d;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.ut-post__content a:hover {
	color: #1a3d27;
}

.ut-post__content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 1.5em 0;
}

.ut-post__content ul,
.ut-post__content ol {
	margin: 0 0 1.2em 1.5em;
	padding: 0;
}

.ut-post__content li { margin-bottom: 0.4em; }

.ut-post__content blockquote {
	margin: 2em 0;
	padding: 20px 24px 20px 28px;
	border-left: 4px solid #4a7c59;
	background: #f0f8f1;
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: #3f5e43;
}

.ut-post__content blockquote p { margin: 0; }

.ut-post__content code {
	background: #f0f8f1;
	border: 1px solid #d4e8d8;
	border-radius: 4px;
	padding: 2px 6px;
	font-size: 0.88em;
	color: #2d5a3d;
}

.ut-post__content pre {
	background: #1a2e20;
	color: #d4e8d8;
	border-radius: 12px;
	padding: 20px 24px;
	overflow-x: auto;
	font-size: 0.88em;
	line-height: 1.7;
}

.ut-post__content pre code {
	background: none;
	border: none;
	padding: 0;
	color: inherit;
}

/* Footer */
.ut-post__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 32px;
	padding: 24px 0 0;
	border-top: 1px solid #d4e8d8;
}

.ut-post__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ut-post__tags a {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 999px;
	border: 1px solid #d4e8d8;
	background: #ffffff;
	color: #3f6048;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.15s ease;
}

.ut-post__tags a:hover {
	background: #2d5a3d;
	border-color: #2d5a3d;
	color: #fff;
}

.ut-post__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ut-post__author img {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	object-fit: cover;
}

.ut-post__author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ut-post__author-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #7a8f7e;
}

.ut-post__author-name {
	font-size: 14px;
	font-weight: 700;
	color: #1a2e20;
}

/* Post navigation */
.ut-post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 40px;
}

.ut-post-nav__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px 24px;
	background: #ffffff;
	border: 1px solid #d4e8d8;
	border-radius: 16px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ut-post-nav__link:hover {
	border-color: #4a7c59;
	box-shadow: 0 4px 18px rgba(30, 58, 40, 0.1);
}

.ut-post-nav__link--next {
	text-align: right;
}

.ut-post-nav__dir {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #7a8f7e;
}

.ut-post-nav__link--next .ut-post-nav__dir {
	justify-content: flex-end;
}

.ut-post-nav__dir svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
}

.ut-post-nav__title {
	font-family: "Playfair Display", serif;
	font-size: 0.95rem;
	line-height: 1.4;
	color: #1a2e20;
	font-weight: 600;
}

/* ==============================================
   RESPONSIVE
   ============================================== */

@media (max-width: 1024px) {
	.ut-blog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.ut-blog {
		padding-bottom: 48px;
	}

	.ut-blog-single .ut-shell {
		max-width: none;
		padding-inline: 14px;
	}

	.ut-blog-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.ut-post-card__body {
		padding: 18px 18px 20px;
	}

	.ut-post__thumb img {
		aspect-ratio: 16 / 9;
	}

	.ut-post__content {
		padding: 22px 18px;
		border-radius: 16px;
	}

	.ut-post-nav {
		grid-template-columns: 1fr;
	}

	.ut-post-nav__link--next {
		text-align: left;
	}

	.ut-post-nav__link--next .ut-post-nav__dir {
		justify-content: flex-start;
	}
}

/* ==============================================
   ABOUT PAGE (O marce)
   ============================================== */

.ut-about {
	background: #e6f0e8;
	padding: 0 0 80px;
	width: 100% !important;
	max-width: none !important;
}

body.page-id-14 .site-main {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* ── Hero ── */

.ut-about-hero {
	display: grid;
	grid-template-columns: 1fr 420px;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	padding: clamp(48px, 6vw, 96px) 0 clamp(40px, 5vw, 72px);
}

.ut-about-hero__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #4a7c59;
	margin: 0 0 14px;
}

.ut-about-hero__title {
	margin: 0 0 24px;
	font-family: "Playfair Display", serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #1a2e20;
}

.ut-about-hero__title em {
	font-style: italic;
	color: #4a7c59;
}

.ut-about-hero__lead {
	font-size: 1.05rem;
	line-height: 1.85;
	color: #4a5e4d;
	margin: 0;
	max-width: 60ch;
}

.ut-about-hero__image {
	position: relative;
}

.ut-about-hero__img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 24px 64px rgba(30, 58, 40, 0.18);
	border: 1px solid #d4e8d8;
}

.ut-about-hero__img-placeholder {
	width: 100%;
	aspect-ratio: 3 / 4;
	border-radius: 24px;
	background: linear-gradient(135deg, #d8ecda 0%, #c4dfc7 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 24px 64px rgba(30, 58, 40, 0.14);
}

.ut-about-hero__img-placeholder svg {
	width: 120px;
	height: 120px;
	opacity: 0.6;
}

/* ── Section header ── */

.ut-about-section-header {
	text-align: center;
	margin-bottom: 48px;
}

.ut-about-section-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.6rem, 2.5vw, 2.2rem);
	line-height: 1.25;
	color: #1a2e20;
	margin: 0 0 16px;
}

.ut-about-section-sub {
	max-width: 58ch;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.8;
	color: #5a6d5e;
}

/* ── Why section ── */

.ut-about-why {
	padding: clamp(48px, 5vw, 72px) 0;
	border-top: 1px solid #c8deca;
}

.ut-about-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.ut-about-pillar {
	background: #ffffff;
	border: 1px solid #d4e8d8;
	border-radius: 20px;
	padding: 32px 28px;
	box-shadow: 0 8px 32px rgba(30, 58, 40, 0.07);
}

.ut-about-pillar__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #e6f0e8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.ut-about-pillar__icon svg {
	width: 26px;
	height: 26px;
	stroke: #2d5a3d;
}

.ut-about-pillar__title {
	font-family: "Playfair Display", serif;
	font-size: 1.15rem;
	color: #1a2e20;
	margin: 0 0 12px;
}

.ut-about-pillar__text {
	font-size: 0.93rem;
	line-height: 1.8;
	color: #5a6d5e;
	margin: 0;
}

/* ── Promises ── */

.ut-about-promises {
	padding: clamp(48px, 5vw, 72px) 0;
	border-top: 1px solid #c8deca;
}

.ut-about-promises__inner {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 48px;
	align-items: start;
	background: #ffffff;
	border: 1px solid #d4e8d8;
	border-radius: 24px;
	padding: clamp(32px, 4vw, 56px);
	box-shadow: 0 12px 48px rgba(30, 58, 40, 0.09);
}

.ut-about-promises__deco {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ut-about-promises__deco svg {
	width: 100px;
	height: 150px;
}

.ut-about-promises__content p {
	font-size: 1rem;
	line-height: 1.8;
	color: #4a5e4d;
	margin: 0 0 16px;
}

.ut-about-promises__list {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ut-about-promises__list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 1rem;
	line-height: 1.7;
	color: #3a4e3d;
	padding: 12px 16px;
	background: #f4faf5;
	border-radius: 10px;
	border-left: 3px solid #4a7c59;
}

.ut-about-promises__list li::before {
	content: "✓";
	flex-shrink: 0;
	font-weight: 700;
	color: #2d5a3d;
	font-size: 15px;
	margin-top: 1px;
}

.ut-about-promises__closing {
	font-style: italic;
	color: #5a6d5e !important;
}

.ut-about-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	padding: 14px 28px;
	background: #2d5a3d;
	color: #ffffff;
	border-radius: 12px;
	font-family: "Lato", sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(45, 90, 61, 0.3);
	transition: background 0.2s ease, box-shadow 0.2s ease, gap 0.2s ease;
}

.ut-about-cta:hover {
	background: #244d33;
	box-shadow: 0 6px 22px rgba(45, 90, 61, 0.38);
	gap: 12px;
}

.ut-about-cta svg {
	width: 17px;
	height: 17px;
	stroke: currentColor;
	flex-shrink: 0;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
	.ut-about-hero {
		grid-template-columns: 1fr 320px;
	}

	.ut-about-pillars {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.ut-about-promises__inner {
		grid-template-columns: 1fr;
	}

	.ut-about-promises__deco {
		display: none;
	}
}

@media (max-width: 767px) {
	.ut-about-hero {
		grid-template-columns: 1fr;
	}

	.ut-about-hero__image {
		order: -1;
		max-width: 320px;
		margin: 0 auto;
	}

	.ut-about-hero__img,
	.ut-about-hero__img-placeholder {
		aspect-ratio: 1 / 1;
	}
}

/* ==============================================
   WHOLESALE PAGE (Hurt)
   ============================================== */

.ut-wholesale {
	background: #e6f0e8;
	padding: 0 0 80px;
	width: 100% !important;
	max-width: none !important;
}

body.page-id-727 .site-main {
	width: 100% !important;
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

/* Hero */
.ut-wholesale-hero {
	text-align: center;
	padding: clamp(56px, 7vw, 100px) 0 clamp(48px, 6vw, 80px);
	max-width: 760px;
	margin: 0 auto;
}

.ut-wholesale-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 18px;
	border-radius: 999px;
	background: #ffffff;
	border: 1px solid #d4e8d8;
	color: #2d5a3d;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 24px;
	box-shadow: 0 2px 10px rgba(30, 58, 40, 0.07);
}

.ut-wholesale-hero__badge svg {
	width: 15px;
	height: 15px;
	stroke: #2d5a3d;
}

.ut-wholesale-hero__title {
	font-family: "Playfair Display", serif;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: #1a2e20;
	margin: 0 0 20px;
}

.ut-wholesale-hero__lead {
	font-size: 1.05rem;
	line-height: 1.85;
	color: #4a5e4d;
	margin: 0 0 36px;
}

.ut-wholesale-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 32px;
	background: #2d5a3d;
	color: #fff;
	border-radius: 12px;
	font-family: "Lato", sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 18px rgba(45, 90, 61, 0.3);
	transition: background 0.2s ease, gap 0.2s ease;
}

.ut-wholesale-hero__cta:hover {
	background: #244d33;
	gap: 12px;
}

.ut-wholesale-hero__cta svg {
	width: 17px;
	height: 17px;
}

/* Section title */
.ut-wholesale-section-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.6rem, 2.5vw, 2.2rem);
	color: #1a2e20;
	margin: 0 0 32px;
	text-align: center;
}

/* For whom */
.ut-wholesale-for {
	padding: clamp(40px, 5vw, 64px) 0;
	border-top: 1px solid #c8deca;
}

.ut-wholesale-for__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.ut-wholesale-for__card {
	background: #ffffff;
	border: 1px solid #d4e8d8;
	border-radius: 18px;
	padding: 28px 22px;
	box-shadow: 0 6px 24px rgba(30, 58, 40, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ut-wholesale-for__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 36px rgba(30, 58, 40, 0.12);
}

.ut-wholesale-for__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #e6f0e8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.ut-wholesale-for__icon svg {
	width: 22px;
	height: 22px;
	stroke: #2d5a3d;
}

.ut-wholesale-for__card h3 {
	font-family: "Playfair Display", serif;
	font-size: 1rem;
	color: #1a2e20;
	margin: 0 0 10px;
}

.ut-wholesale-for__card p {
	font-size: 0.88rem;
	line-height: 1.75;
	color: #5a6d5e;
	margin: 0;
}

/* Offer */
.ut-wholesale-offer {
	padding: clamp(40px, 5vw, 64px) 0;
	border-top: 1px solid #c8deca;
}

.ut-wholesale-offer__inner {
	background: #ffffff;
	border: 1px solid #d4e8d8;
	border-radius: 24px;
	padding: clamp(32px, 4vw, 52px);
	box-shadow: 0 8px 40px rgba(30, 58, 40, 0.08);
}

.ut-wholesale-offer__header {
	text-align: center;
	margin-bottom: 40px;
}

.ut-wholesale-offer__header p {
	font-size: 1rem;
	line-height: 1.8;
	color: #5a6d5e;
	max-width: 58ch;
	margin: 0 auto;
}

.ut-wholesale-offer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.ut-wholesale-offer__list li {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 22px 20px;
	background: #f4faf5;
	border-radius: 14px;
	border: 1px solid #e0ede2;
}

.ut-wholesale-offer__item-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: #e6f0e8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ut-wholesale-offer__item-icon svg {
	width: 20px;
	height: 20px;
	stroke: #2d5a3d;
}

.ut-wholesale-offer__list li strong {
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a2e20;
	margin-bottom: 6px;
}

.ut-wholesale-offer__list li p {
	font-size: 0.88rem;
	line-height: 1.75;
	color: #5a6d5e;
	margin: 0;
}

/* Contact CTA */
.ut-wholesale-contact {
	padding: clamp(40px, 5vw, 64px) 0 0;
	border-top: 1px solid #c8deca;
}

.ut-wholesale-contact__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	background: #2d5a3d;
	border-radius: 24px;
	padding: clamp(32px, 4vw, 52px);
	box-shadow: 0 12px 48px rgba(45, 90, 61, 0.22);
}

.ut-wholesale-contact__text h2 {
	font-family: "Playfair Display", serif;
	font-size: clamp(1.4rem, 2.2vw, 1.9rem);
	color: #ffffff;
	margin: 0 0 10px;
}

.ut-wholesale-contact__text p {
	font-size: 1rem;
	line-height: 1.75;
	color: rgba(255,255,255,0.8);
	margin: 0;
	max-width: 52ch;
}

.ut-wholesale-contact__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: #ffffff;
	color: #2d5a3d;
	border-radius: 12px;
	font-family: "Lato", sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 18px rgba(0,0,0,0.15);
	transition: background 0.2s ease, gap 0.2s ease;
	white-space: nowrap;
}

.ut-wholesale-contact__btn:hover {
	background: #f0f8f1;
	gap: 14px;
}

.ut-wholesale-contact__btn svg {
	width: 17px;
	height: 17px;
}

/* Responsive */
@media (max-width: 1024px) {
	.ut-wholesale-for__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ut-wholesale-offer__list {
		grid-template-columns: 1fr;
	}

	.ut-wholesale-contact__inner {
		flex-direction: column;
		text-align: center;
	}

	.ut-wholesale-contact__text p {
		max-width: none;
	}
}

@media (max-width: 767px) {
	.ut-wholesale-for__grid {
		grid-template-columns: 1fr;
	}
}
