@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Poppins', sans-serif;
	background-color: #fdfdfd;
	color: #333;
}

html {
	scroll-behavior: smooth;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}
.header {
	background-color: #fff;
	padding: 20px 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.logo {
	font-size: 24px;
	font-weight: bold;
}

.logo a {
	text-decoration: none;
	color: #333;
}

.nav {
	display: flex;
	gap: 20px;
}
.nav a {
	text-decoration: none;
	color: #333;
	position: relative;
}
.nav a::after {
	content: '';
	display: block;
	width: 0%;
	height: 2px;
	background: #ff6b6b;
	transition: 0.3s;
	position: absolute;
	bottom: -5px;
	left: 0;
}
.nav a:hover::after {
	width: 100%;
}
.hero {
	padding: 60px 0;
	background: linear-gradient(to right, #fffefb, #ffe2e2);
	display: flex;
	align-items: center;
}
.hero-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.hero-text h1 {
	font-size: 36px;
	margin-bottom: 20px;
	animation: slideDown 1s ease-out;
}
.hero-text p {
	font-size: 18px;
	margin-bottom: 30px;
	animation: fadeIn 2s ease-in;
}
.cta-button {
	background-color: #ff6b6b;
	color: white;
	padding: 12px 24px;
	border: none;
	text-decoration: none;
	border-radius: 30px;
	transition: background 0.3s;
}
.cta-button:hover {
	background-color: #e35a5a;
}
.hero-image img {
	width: 100%;
	max-width: 400px;
	animation: float 4s ease-in-out infinite;
}

/* Animations */
@keyframes slideDown {
	from {
		transform: translateY(-30px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.hero-container {
		flex-direction: column;
		text-align: center;
	}
	.nav {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 10px;
	}
}

.top-picks {
	padding: 80px 0;
	background-color: #fff7f0;
	text-align: center;
}
.section-title {
	font-size: 32px;
	margin-bottom: 40px;
}
.picks-grid {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}
.pick-card {
	background-color: white;
	border-radius: 16px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
	padding: 20px;
	max-width: 300px;
	transition: transform 0.3s, box-shadow 0.3s;
}
.pick-card img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 15px;
}
.pick-card h3 {
	font-size: 20px;
	margin: 10px 0;
}
.pick-card p {
	font-size: 16px;
	margin-bottom: 15px;
}
.card-button {
	background-color: #ff6b6b;
	color: white;
	padding: 10px 20px;
	border-radius: 20px;
	text-decoration: none;
	display: inline-block;
	transition: background-color 0.3s;
}
.card-button:hover {
	background-color: #e25959;
}
.pick-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
	.picks-grid {
		flex-direction: column;
		align-items: center;
	}
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease-out;
}
.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

.trust-section {
	padding: 100px 0;
	background-color: #f4fff8;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-bottom: 60px;
}
.trust-item.reverse {
	flex-direction: row-reverse;
}
.trust-img img {
	width: 260px;
	max-width: 100%;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.trust-text h3 {
	font-size: 24px;
	margin-bottom: 15px;
}
.trust-text p {
	font-size: 17px;
	line-height: 1.6;
}
@media (max-width: 768px) {
	.trust-item,
	.trust-item.reverse {
		flex-direction: column;
		text-align: center;
	}
	.trust-img img {
		margin-bottom: 20px;
	}
}

.pet-moments {
	padding: 100px 0;
	background-color: #fffefa;
}
.gallery-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 40px;
	font-size: 17px;
	color: #444;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.gallery-item img {
	width: 100%;
	display: block;
	transition: transform 0.5s ease;
}
.gallery-item span {
	position: absolute;
	bottom: 10px;
	left: 10px;
	background: rgba(255, 255, 255, 0.8);
	padding: 6px 12px;
	font-size: 14px;
	border-radius: 12px;
}
.gallery-item:hover img {
	transform: scale(1.08);
}
.gallery-item.wide {
	grid-column: span 2;
}
.gallery-item.tall {
	grid-row: span 2;
}
@media (max-width: 600px) {
	.gallery-item.wide,
	.gallery-item.tall {
		grid-column: span 1;
		grid-row: span 1;
	}
}

.how-it-works {
	padding: 100px 0;
	background-color: #eefcff;
	text-align: center;
}
.steps-flow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}
.step-item {
	background-color: white;
	padding: 20px;
	border-radius: 16px;
	flex: 1 1 280px;
	max-width: 320px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.step-image img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 15px;
}
.step-info h3 {
	font-size: 22px;
	margin-bottom: 10px;
}
.step-info p {
	font-size: 16px;
	line-height: 1.5;
}
.arrow {
	font-size: 32px;
	color: #76c5ff;
	display: block;
}
@media (max-width: 900px) {
	.steps-flow {
		flex-direction: column;
		align-items: center;
	}
	.arrow {
		transform: rotate(90deg);
		margin: 10px 0;
	}
}

.subscription-box {
	padding: 100px 0;
	background-color: #fff5f5;
}
.box-layout {
	display: flex;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
}
.box-image img {
	max-width: 400px;
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.box-content {
	flex: 1;
}
.box-content h2 {
	font-size: 28px;
	margin-bottom: 20px;
}
.box-content p {
	font-size: 17px;
	margin-bottom: 20px;
	line-height: 1.6;
}
.box-content ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 20px;
}
.box-content ul li {
	margin-bottom: 10px;
	font-size: 16px;
}
@media (max-width: 768px) {
	.box-layout {
		flex-direction: column;
		text-align: center;
	}
}

.experts-section {
	padding: 100px 0;
	background-color: #f0fff9;
	text-align: center;
}
.experts-intro {
	max-width: 700px;
	margin: 0 auto 40px;
	font-size: 17px;
	color: #444;
}
.experts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
}
.expert-card {
	background-color: #fff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}
.expert-card img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 15px;
}
.expert-info h3 {
	font-size: 20px;
	margin-bottom: 5px;
}
.expert-info p {
	font-size: 15px;
	color: #777;
	margin-bottom: 10px;
}
.expert-info span {
	font-size: 14px;
	color: #555;
	display: block;
	opacity: 0;
	transition: opacity 0.3s;
}
.expert-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}
.expert-card:hover span {
	opacity: 1;
}

.pet-types {
	padding: 100px 0;
	background-color: #fff;
	text-align: center;
}
.pet-types-intro {
	max-width: 720px;
	margin: 0 auto 50px;
	font-size: 17px;
	color: #555;
}
.pet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}
.pet-type {
	background-color: #f9f9f9;
	border-radius: 16px;
	padding: 25px 20px;
	transition: transform 0.3s, box-shadow 0.3s;
}
.pet-type img {
	width: 60px;
	margin-bottom: 15px;
}
.pet-type h3 {
	font-size: 18px;
	margin-bottom: 10px;
}
.pet-type p {
	font-size: 15px;
	color: #444;
}
.pet-type:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-form {
	background-color: #fefefe;
	padding: 100px 0;
}
.contact-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 40px;
}
.contact-header h2 {
	font-size: 28px;
	margin-bottom: 15px;
}
.contact-header p {
	font-size: 17px;
	color: #555;
}
.form-wrapper {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.form-wrapper input,
.form-wrapper textarea {
	padding: 14px;
	border: 1px solid #ccc;
	border-radius: 10px;
	font-size: 15px;
	resize: vertical;
}
.form-wrapper textarea {
	min-height: 120px;
}
.form-checkbox {
	display: flex;
	align-items: center;
	font-size: 14px;
	gap: 8px;
}
.form-checkbox input {
	accent-color: #ff6b6b;
}
.form-checkbox a {
	color: #ff6b6b;
	text-decoration: underline;
}
.form-wrapper button {
	align-self: flex-start;
}
@media (max-width: 600px) {
	.form-wrapper {
		gap: 16px;
	}
	.form-checkbox {
		flex-direction: column;
		align-items: flex-start;
	}
}

.faq-section {
	padding: 100px 0;
	background-color: #f9f9ff;
}
.faq-list {
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.faq-item summary {
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	background-color: #fff;
	padding: 16px 20px;
	border-radius: 12px;
	border: 1px solid #ddd;
	position: relative;
	transition: background-color 0.3s;
}
.faq-item[open] summary {
	background-color: #eef7ff;
}
.faq-item p {
	padding: 16px 20px;
	font-size: 15px;
	line-height: 1.6;
	background-color: #fff;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 12px 12px;
}

.footer {
	background-color: #222;
	color: #eee;
	padding: 60px 0;
	font-size: 15px;
}
.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}
.footer-contact p,
.footer-contact a {
	margin-bottom: 8px;
	color: #eee;
	text-decoration: none;
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-links a {
	color: #ccc;
	text-decoration: none;
}
.footer-links a:hover {
	text-decoration: underline;
}
.back-to-top {
	margin-top: 20px;
	background-color: #ff6b6b;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: background-color 0.3s;
}
.back-to-top:hover {
	background-color: #e25757;
}
@media (max-width: 600px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}

.products-hero {
	padding: 80px 0;
	background: linear-gradient(to right, #fffdfd, #e8f4ff);
}
.hero-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.hero-text h1 {
	font-size: 34px;
	margin-bottom: 20px;
}
.hero-text p {
	font-size: 17px;
	margin-bottom: 30px;
}
.hero-image img {
	width: 100%;
	max-width: 450px;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
	.hero-container {
		flex-direction: column;
		text-align: center;
	}
}

.category-highlights {
	padding: 100px 0;
	background-color: #fffef9;
	text-align: center;
}
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 25px;
	margin-top: 40px;
}
.category-card {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s, box-shadow 0.3s;
}
.category-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}
.category-card span {
	position: absolute;
	bottom: 15px;
	left: 15px;
	background-color: rgba(255, 255, 255, 0.85);
	padding: 6px 12px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 15px;
}
.category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
.category-card:hover img {
	transform: scale(1.05);
}

.product-section {
	padding: 100px 0;
	background-color: #f7fefc;
	text-align: center;
}
.section-subtitle {
	max-width: 640px;
	margin: 0 auto 40px;
	font-size: 16px;
	color: #555;
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
}
.product-card {
	background-color: #fff;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}
.product-card img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 15px;
}
.product-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}
.product-card p {
	font-size: 15px;
	margin-bottom: 15px;
}
.card-button {
	display: inline-block;
	background-color: #ff6b6b;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	text-decoration: none;
	transition: background-color 0.3s;
}
.card-button:hover {
	background-color: #e25757;
}
.product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.reptile-care {
	background-color: #f4fefc;
	padding: 100px 0;
}
.reptile-layout {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.reptile-image img {
	max-width: 400px;
	border-radius: 16px;
	width: 100%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.reptile-content {
	flex: 1;
}
.reptile-content h2 {
	font-size: 28px;
	margin-bottom: 20px;
}
.reptile-content p {
	font-size: 16px;
	margin-bottom: 15px;
	line-height: 1.6;
}
.reptile-content ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 15px;
}
.reptile-content ul li {
	margin-bottom: 10px;
	font-size: 15px;
}
@media (max-width: 768px) {
	.reptile-layout {
		flex-direction: column;
		text-align: center;
	}
	.reptile-content ul {
		text-align: left;
		margin: 0 auto;
		max-width: 300px;
	}
}

.love-us-section {
	background-color: #fffaf4;
	padding: 100px 0;
}
.love-facts {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.love-fact h3 {
	font-size: 22px;
	color: #222;
	margin-bottom: 10px;
}
.love-fact p {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
}
@media (max-width: 600px) {
	.love-fact h3 {
		font-size: 20px;
	}
	.love-fact p {
		font-size: 15px;
	}
}

.impact-section {
	background-color: #f9f9ff;
	padding: 100px 0;
	text-align: center;
}
.impact-intro {
	max-width: 700px;
	margin: 0 auto 60px;
	font-size: 17px;
	color: #444;
}
.impact-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 40px;
}
.impact-block h3 {
	font-size: 32px;
	color: #ff6b6b;
	margin-bottom: 10px;
}
.impact-block p {
	font-size: 15px;
	color: #555;
}
@media (max-width: 600px) {
	.impact-block h3 {
		font-size: 26px;
	}
	.impact-block p {
		font-size: 14px;
	}
}

.pet-tips {
	background-color: #fffef7;
	padding: 100px 0;
}
.tips-intro {
	max-width: 720px;
	margin: 0 auto 50px;
	font-size: 17px;
	color: #444;
	text-align: center;
}
.tip-block {
	max-width: 800px;
	margin: 0 auto 40px;
	border-left: 4px solid #ff6b6b;
	padding-left: 20px;
}
.tip-block h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.tip-block p {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
}
.tip-block a {
	display: inline-block;
	margin-top: 10px;
	font-size: 14px;
	color: #ff6b6b;
	text-decoration: underline;
}

.join-family {
	background: url('../img/join-banner.jpg') center/cover no-repeat;
	padding: 120px 20px;
	color: white;
	text-align: center;
	position: relative;
}
.join-family::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}
.join-content {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
	z-index: 1;
}
.join-content h2 {
	font-size: 30px;
	margin-bottom: 20px;
}
.join-content p {
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.6;
}
.join-content .cta-button {
	background-color: #ff6b6b;
	color: white;
	padding: 12px 28px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}
.join-content .cta-button:hover {
	background-color: #e25959;
}

.legal-section {
	padding: 60px 20px;
	background-color: #fdfdfc;
	color: #333;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.7;
}

.legal-container {
	max-width: 960px;
	margin: 0 auto;
}

.legal-title {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
	color: #1a1a1a;
}

.legal-section p {
	font-size: 17px;
	margin-bottom: 20px;
}

.legal-section h2 {
	font-size: 24px;
	font-weight: 600;
	margin-top: 40px;
	margin-bottom: 20px;
	color: #222;
}

/* Анимация появления */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Ссылки */
.legal-section a {
	color: #0077cc;
	text-decoration: none;
	border-bottom: 1px dotted #0077cc;
	transition: 0.3s;
}

.legal-section a:hover {
	color: #004d99;
	border-color: #004d99;
}

/* Адаптивность */
@media (max-width: 768px) {
	.legal-title {
		font-size: 28px;
	}

	.legal-section p {
		font-size: 16px;
	}

	.legal-section h2 {
		font-size: 20px;
	}
}
