/* ===== Про нас (лого + інтро + телефонні картки) ===== */

.about-top {
	align-items: center;
	margin-top: 40px;
}

.about-logo-col {
	display: flex;
	justify-content: center;
}

.about-logo {
	max-width: 280px;
	width: 100%;
	height: auto;
}

.about-intro {
	font-size: 18px;
	margin-top: 16px;
}

.about-tagline {
	font-size: 20px;
	color: #425466;
	margin-top: 40px;
}

.about-contacts {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	margin-top: 30px;
}

.about-contact-card {
	flex: 1 1 0;
}

.about-contact-label {
	font-size: 14px;
	color: #808080;
	margin-bottom: 10px;
}

.about-contact-box {
	display: flex;
	align-items: center;
	gap: 14px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.08);
	padding: 14px 20px;
	text-decoration: none;
	transition: box-shadow 0.2s ease;
}

.about-contact-box:hover {
	box-shadow: 0 6px 22px rgba(0,0,0,0.14);
}

.about-contact-icon {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border-radius: 50%;
	background-color: #339425;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.about-contact-number {
	font-size: 17px;
	font-weight: 600;
	color: #232323;
	white-space: nowrap;
}

/* ===== Насіння (продаж) ===== */

.seed-heading {
	font-size: 32px;
	font-weight: 700;
	color: #232323;
	max-width: 900px;
}

.seed-divider {
	width: 70px;
	height: 3px;
	background-color: #339425;
	margin: 18px 0 26px;
}

.seed-text p {
	font-size: 17px;
	max-width: 820px;
}

.seed-products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 34px;
}

.seed-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.seed-card:hover {
	text-decoration: none;
	color: inherit;
}

.seed-card-img {
	width: 100%;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.seed-card-img img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.seed-card-label {
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background-color: #339425;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.3px;
	padding: 14px 10px;
	border-radius: 6px;
	margin-top: 16px;
}

/* ==========================================================================
   Бартер (секція #barter на головній, на неї веде пункт меню «БАРТЕР»)
   ========================================================================== */
.barter-section {
	/* шапка сайту position:fixed (~120px) — без цього якір ховався б під нею */
	scroll-margin-top: 130px;
	/* секція остання перед футером — без відступу вона в нього впиралась */
	padding-bottom: 40px;
}

.barter-grid {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	margin-top: 30px;
}

.barter-media {
	flex: 0 0 320px;
}

.barter-media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

.barter-text {
	flex: 1 1 auto;
	min-width: 0;
}

.barter-lead {
	font-size: 17px;
	font-weight: 600;
	color: #232323;
	line-height: 1.55;
	margin-bottom: 22px;
}

.barter-subhead {
	font-size: 17px;
	font-weight: 700;
	color: #339425;
	margin-bottom: 14px;
}

.barter-list {
	counter-reset: barter;
	list-style: none;
	margin: 0;
	padding: 0;
}

.barter-list li {
	position: relative;
	counter-increment: barter;
	padding: 0 0 18px 52px;
}

.barter-list li::before {
	content: counter(barter);
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #339425;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
}

.barter-list h3 {
	font-size: 18px;
	font-weight: 700;
	color: #232323;
	margin: 5px 0 6px;
}

.barter-list p {
	font-size: 16px;
	line-height: 1.55;
	color: #4a4a4a;
	margin-bottom: 6px;
}

.barter-rates {
	color: #0086ba !important;
	font-weight: 600;
}

@media only screen and (max-width: 1200px) {
	.barter-grid {
		flex-direction: column;
		gap: 24px;
	}

	.barter-media {
		flex: 0 0 auto;
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}

	.about-logo-col {
		margin-bottom: 24px;
	}

	.about-contacts {
		flex-wrap: wrap;
	}

	.about-contact-card {
		flex: 1 1 45%;
	}
}

@media only screen and (max-width: 640px) {
	.about-contact-card {
		flex: 1 1 100%;
	}

	.seed-products {
		grid-template-columns: 1fr;
	}

	.about-logo {
		max-width: 200px;
	}
}
