.at-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 28px 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.at-product {
	display: grid;
	grid-template-columns: 160px 1fr 180px;
	gap: 24px;
	align-items: center;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
	transition: box-shadow .2s ease, transform .2s ease;
}

.at-product:hover {
	box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.at-product-image {
	text-align: center;
}

.at-product-image img {
	width: 140px;
	height: 140px;
	object-fit: contain;
	border-radius: 8px;
	display: inline-block;
}

.at-badge {
	display: inline-block;
	background: #2d6a4f;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .6px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 20px;
	margin-top: 10px;
}

.at-product-name {
	font-size: 19px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
	line-height: 1.3;
}

.at-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.at-stars {
	display: inline-flex;
	gap: 2px;
	line-height: 1;
}

.at-star {
	font-size: 18px;
	line-height: 1;
}

.at-star-full {
	color: #d4af37;
}

.at-star-empty {
	color: #ddd;
}

.at-star-half {
	position: relative;
	display: inline-block;
	color: #ddd;
	width: 1em;
}

.at-star-half .at-star-bg {
	color: #ddd;
}

.at-star-half .at-star-fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	overflow: hidden;
	color: #d4af37;
	white-space: nowrap;
}

.at-rating-number {
	font-size: 13px;
	color: #666;
	margin-left: 4px;
}

.at-price {
	font-size: 20px;
	font-weight: 700;
	color: #2d6a4f;
	margin-bottom: 10px;
}

.at-description {
	font-size: 14px;
	color: #555;
	margin: 0 0 14px;
	line-height: 1.5;
}

.at-pros-cons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.at-pros,
.at-cons {
	list-style: none;
	margin: 0;
	padding: 0;
}

.at-pros li,
.at-cons li {
	font-size: 13px;
	padding: 4px 0 4px 22px;
	position: relative;
	color: #444;
	line-height: 1.5;
}

.at-pros li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 4px;
	color: #2d6a4f;
	font-weight: 700;
}

.at-cons li::before {
	content: '✕';
	position: absolute;
	left: 0;
	top: 4px;
	color: #c0392b;
	font-weight: 700;
}

.at-product-cta {
	text-align: center;
}

.at-btn {
	display: inline-block;
	background: #2d6a4f;
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 22px;
	border-radius: 8px;
	text-decoration: none !important;
	transition: background .2s ease, transform .1s ease, box-shadow .2s ease;
	white-space: nowrap;
	width: 100%;
	box-sizing: border-box;
	border: none;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(45, 106, 79, .2);
}

.at-btn:hover,
.at-btn:focus {
	background: #1b4332;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(45, 106, 79, .3);
	color: #fff !important;
}

.at-btn:active {
	transform: translateY(0);
}

@media (max-width: 768px) {
	.at-product {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 20px;
		gap: 16px;
	}

	.at-product-image img {
		width: 120px;
		height: 120px;
	}

	.at-pros-cons {
		text-align: left;
	}

	.at-rating {
		justify-content: center;
	}
}
