* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', sans-serif;
	background-color: #fff7f9;
	color: #2b2b2b;
}

html {
	scroll-behavior: smooth;
}

.contan {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	text-decoration: none;
	color: inherit;
}

/* HEADER */
.ap-header {
	padding: 1rem 1.5rem;
	background-color: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.ap-header-contan {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ap-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: #d44b7f;
}

.ap-nav {
	display: flex;
	gap: 1.8rem;
}

.ap-nav a {
	font-weight: 500;
	transition: color 0.3s ease;
}

.ap-nav a:hover {
	color: #d44b7f;
}

.ap-btn {
	background-color: #d44b7f;
	color: #fff;
	border: none;
	padding: 0.5rem 1.2rem;
	border-radius: 20px;
	cursor: pointer;
	transition: 0.3s ease;
}

.ap-btn:hover {
	background-color: #b03967;
}

.burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.burger span {
	height: 3px;
	width: 25px;
	background-color: #333;
	border-radius: 2px;
	transition: 0.3s ease;
}

/* MOBILE MENU MODAL */
.mobile-modal {
	position: fixed;
	top: 50px;
	left: 0;
	height: 100vh;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: flex-end;
	z-index: 999;
}

.mobile-content {
	background-color: #fff;
	width: 75%;
	max-width: 280px;
	height: 100%;
	padding: 2rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	animation: slideIn 0.3s ease forwards;
}

.mobile-content a {
	font-size: 1.1rem;
	font-weight: 500;
	color: #444;
}

.mobile-content a:hover {
	color: #d44b7f;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* HERO */
.ap-hero {
	text-align: center;
	padding: 4rem 1.5rem;
	background: linear-gradient(135deg, #ffe3ec, #fff7f9);
}

.ap-hero-contan {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ap-hero h1 {
	font-size: 2.5rem;
	color: #d44b7f;
	margin-bottom: 1rem;
}

.ap-hero p {
	font-size: 1.1rem;
	max-width: 500px;
	margin-bottom: 2rem;
}

.ap-hero .ap-btn {
	font-size: 1rem;
}

.ap-hero-image {
	width: 100%;
	max-width: 500px;
	border-radius: 12px;
	overflow: hidden;
}

.ap-hero-image img {
	width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.ap-nav,
	.ap-btn {
		display: none;
	}

	.burger {
		display: flex;
	}
}

@media (min-width: 768px) {
	.ap-hero {
		padding: 4rem 3rem;
	}

	.ap-hero-contan {
		flex-direction: row;
		text-align: left;
		justify-content: space-between;
	}

	.ap-hero-content {
		flex: 1;
		padding-right: 2rem;
	}

	.ap-hero-image {
		flex: 1;
	}

	.ap-hero-image img {
		max-width: 100%;
	}
}

.about-ankaplay {
	background-color: #fff0f5;
	padding: 4rem 1.5rem;
}

.about-ankaplay-contan {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	/* max-width: 1200px; */
	/* margin: 0 auto; */
	gap: 2rem;
}

.about-image {
	width: 100%;
	max-width: 500px;
	flex: 1 1 300px;
	text-align: center;
}

.about-image img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
	flex: 1 1 400px;
	color: #333;
}

.about-content h2 {
	font-size: 2rem;
	color: #c43770;
	margin-bottom: 1rem;
}

.about-content p {
	font-size: 1.05rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.about-content ul {
	list-style: none;
	padding: 0;
}

.about-content ul li {
	padding-left: 1.2rem;
	position: relative;
	margin-bottom: 0.6rem;
	font-weight: 500;
	color: #555;
}

.about-content ul li::before {
	content: '★';
	position: absolute;
	left: 0;
	color: #d44b7f;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
	.about-ankaplay-contan {
		flex-direction: column;
		text-align: center;
	}

	.about-content {
		padding: 0 1rem;
	}
}

.urunler {
	padding: 4rem 1rem;
	background: #fff8f0;
	text-align: center;
}

.urunler-baslik {
	font-size: 2rem;
	color: #c1446f;
	margin-bottom: 2rem;
	font-family: 'Segoe UI', sans-serif;
}

.urun-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.urun-kart {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
	padding: 1.5rem;
	transition: transform 0.3s ease;
}

.urun-kart:hover {
	transform: translateY(-5px);
}

.urun-kart img {
	height: 300px;
	width: 100%;
	border-radius: 10px;
	margin-bottom: 1rem;
	object-fit: cover;
}

.fiyat {
	color: #d85a8a;
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.sepete-btn {
	background: #c1446f;
	color: white;
	border: none;
	padding: 0.7rem 1.2rem;
	border-radius: 30px;
	cursor: pointer;
	font-size: 0.95rem;
	transition: background 0.3s ease;
}

.sepete-btn:hover {
	background: #9f2f55;
}

.btn-more {
	display: block;
	margin-top: 60px;
}

/* Responsive tweak */
@media (max-width: 600px) {
	.urun-kart {
		padding: 1rem;
	}

	.sepete-btn {
		width: 100%;
	}
}

.feedb {
	padding: 5rem 1rem;

	background: linear-gradient(to right, #fff0f5, #ffe4ec);
}

.feedb-contan {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 50px;
}

@media (min-width: 900px) {
	.feedb-contan {
		flex-direction: row;
		justify-content: space-between;
		gap: 10px;
		max-width: 1100px;
	}

	.yorumlar-swiper {
		margin: 0;
	}
}

.yorumlar-section {
	color: #333;
	text-align: center;
	animation: fadeInSection 1.2s ease-out forwards;
}

@keyframes fadeInSection {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.yorumlar-title {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	/* position: relative; */
	z-index: 1;
	color: #d94a76;
	font-family: 'Segoe UI', sans-serif;
}

.yorumlar-swiper {
	/* position: relative; */
	z-index: 1;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	overflow: hidden;
}

.yorum-kart {
	background: rgba(255, 255, 255, 0.95);
	padding: 2rem;
	border-radius: 20px;

	width: 100%;
	/* max-width: 500px; */
	/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
	transition: transform 0.3s ease;
}

.yorum-kart:hover {
	transform: translateY(-5px);
}

.yorum-text {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #444;
	font-style: italic;
}

.yorum-isim {
	font-weight: bold;
	color: #d94a76;
	font-size: 1rem;
}

@media (max-width: 600px) {
	.yorum-kart {
		padding: 1.2rem;
	}

	.yorum-text {
		font-size: 1rem;
	}
}

.review-form-section {
	text-align: center;
	animation: fadeInSection 1s ease forwards;
}

.review-form-title {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #b80060;
	font-weight: bold;
	animation: slideInTop 0.8s ease forwards;
}

.review-form {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
	animation: fadeInUp 1s ease-in-out;
}

.review-form input,
.review-form textarea {
	padding: 15px;
	border: 2px solid #eeb5c0;
	border-radius: 12px;
	font-size: 1rem;
	outline: none;
	transition: 0.3s;
	background: #fff;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.review-form input:focus,
.review-form textarea:focus {
	border-color: #ff4d88;
	box-shadow: 0 0 5px rgba(255, 77, 136, 0.3);
}

.review-form textarea {
	resize: vertical;
	min-height: 120px;
}

.review-form button {
	background-color: #ff4d88;
	color: #fff;
	padding: 12px 20px;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	font-weight: bold;
	transition: background 0.3s;
}

.review-form button:hover {
	background-color: #e63c74;
}

@keyframes fadeInSection {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInTop {
	0% {
		transform: translateY(-30px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.review-success-message {
	display: none;
	margin-top: 20px;
	font-size: 1.1rem;
	color: #1b873a;
	background-color: #e6ffe6;
	border: 2px solid #a3f0b2;
	padding: 12px 20px;
	border-radius: 10px;
	animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.beauty-tips-section {
	background: linear-gradient(135deg, #fff0f5, #ffe4e1);
	padding: 60px 20px;
	overflow: hidden;
	position: relative;
}
.beauty-title {
	text-align: center;
	font-size: 2.4rem;
	color: #cc3366;
	margin-bottom: 40px;
	font-family: 'Georgia', serif;
	animation: fadeInDown 1.5s ease-out;
}
.beauty-title .highlight {
	background: #ffccdd;
	padding: 0 8px;
	border-radius: 5px;
}
.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	animation: fadeInUp 2s ease-in-out;
}
.tip-card {
	background: #fff;
	border: 2px dashed #f9b4c6;
	border-radius: 12px;
	padding: 20px;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	box-shadow: 0 10px 20px rgba(255, 182, 193, 0.2);
}
.tip-card:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
}
.tip-card h3 {
	color: #d63384;
	font-size: 1.3rem;
	margin-bottom: 10px;
}
.tip-card p {
	color: #5c2b37;
	font-size: 1rem;
	line-height: 1.6;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 600px) {
	.beauty-title {
		font-size: 1.6rem;
	}
	.tip-card {
		padding: 15px;
	}
}

.ankaplay-footer {
	background: #fff;
	color: #0a0507;
	padding: 40px 20px 20px;
	font-family: 'Segoe UI', sans-serif;
}
.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}
.footer-brand img {
	width: 150px;
	margin-bottom: 10px;
}
.footer-brand p {
	max-width: 300px;
	line-height: 1.6;
}

.footer-subscribe h4,
.footer-contacts h4,
.footer-links h4 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: bold;
}
.subscribe-form {
	display: flex;
	gap: 10px;
}
.subscribe-form input {
	padding: 10px;
	border: 1px solid #cc3366;
	border-radius: 5px;
	flex: 1;
}
.subscribe-form button {
	background: #cc3366;
	color: #fff;
	border: none;
	padding: 10px 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}
.subscribe-form button:hover {
	background: #351520;
}
.footer-contacts ul,
.footer-links ul {
	list-style: none;
	padding: 0;
}
.footer-contacts li,
.footer-links li {
	margin-bottom: 6px;
}
.footer-links a {
	text-decoration: none;
	color: #3d1e52;
	transition: color 0.3s;
}
.footer-links a:hover {
	color: #cc3366;
}
.footer-bottom {
	text-align: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #d7cde5;
	font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.subscribe-form {
		flex-direction: column;
	}
	.subscribe-form button {
		width: 100%;
	}
}

.subscribe-message {
	display: none;
	margin-top: 12px;
	background-color: #d1f3d1;
	color: #2b7a2b;
	padding: 10px 15px;
	border-radius: 5px;
	font-weight: 500;
	animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact-section {
	background: #fff8f2;
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contact-container {
	max-width: 1100px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.contact-info {
	flex: 1;
	min-width: 280px;
}

.contact-info h2 {
	font-size: 2rem;
	margin-bottom: 15px;
	color: #cc3366;
}

.contact-info p {
	font-size: 1rem;
	color: #444;
}

.social-links {
	list-style: none;
	display: flex;
	gap: 20px;
	margin-top: 20px;
	padding: 0;
}

.social-links li img {
	width: 32px;
	transition: transform 0.3s ease;
}

.social-links li img:hover {
	transform: scale(1.1);
}

.contact-form {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
}

.contact-form button {
	background-color: #cc3366;
	color: #fff;
	padding: 12px;
	font-size: 1rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.contact-form button:hover {
	background-color: #5b142c;
}

.form-message {
	display: none;
	background-color: #e1f7e1;
	color: #2d8534;
	padding: 12px;
	margin-top: 10px;
	border-radius: 6px;
	font-weight: 500;
	animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.cookie-box {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 400px;
	margin: 0 auto;
	background: #fff5ef;
	border: 2px solid #ffccbd;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	padding: 20px;
	z-index: 9999;
	opacity: 0;
	transform: translateY(100px);
	transition: all 0.5s ease;
	font-family: 'Segoe UI', sans-serif;
}

.cookie-box.active {
	opacity: 1;
	transform: translateY(0);
}

.cookie-inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 15px;
	color: #333;
}

.cookie-inner a {
	color: #cc3366;
	text-decoration: underline;
}

.cookie-inner button {
	align-self: flex-start;
	padding: 8px 16px;
	background-color: #cc3366;
	color: white;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.cookie-inner button:hover {
	background-color: rgb(86, 32, 22);
}

.cookies-policy-section {
	padding: 40px 20px;
	background: #fef9f4;
	color: #333;
	font-family: 'Segoe UI', sans-serif;
}

.cookies-container {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	animation: fadeIn 1s ease-in-out;
}

.cookies-container h2 {
	font-size: 28px;
	color: #cc3366;
	margin-bottom: 20px;
}

.cookies-container h3 {
	font-size: 22px;
	color: #cc3366;
	margin-top: 25px;
}

.cookies-container p,
.cookies-container ul {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 15px;
}

.cookies-container ul {
	padding-left: 20px;
}

.cookies-container a {
	color: #cc3366;
	text-decoration: underline;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media screen and (max-width: 600px) {
	.cookies-container {
		padding: 20px;
	}

	.cookies-container h2 {
		font-size: 24px;
	}

	.cookies-container h3 {
		font-size: 18px;
	}
}

.privacy-policy-section {
	background: #f9f3f0;
	padding: 50px 20px;
	color: #2c2c2c;
	font-family: 'Helvetica Neue', sans-serif;
}

.privacy-container {
	max-width: 850px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1.2s ease-out;
}

.privacy-container h2 {
	font-size: 32px;
	margin-bottom: 25px;
	color: #cc3366;
}

.privacy-container h3 {
	font-size: 22px;
	margin-top: 30px;
	color: #cc3366;
}

.privacy-container p {
	line-height: 1.7;
	margin-bottom: 16px;
}

.privacy-container ul {
	margin-left: 20px;
	padding-left: 20px;
	list-style: disc;
}

.privacy-container a {
	color: #cc3366;
	text-decoration: underline;
}

@keyframes fadeInUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media screen and (max-width: 600px) {
	.privacy-container {
		padding: 25px;
	}

	.privacy-container h2 {
		font-size: 26px;
	}

	.privacy-container h3 {
		font-size: 18px;
	}
}

.terms-section {
	background: linear-gradient(135deg, #fff7f3, #ffe9e3);
	padding: 50px 20px;
	color: #3a2e2c;
	font-family: 'Segoe UI', sans-serif;
}

.terms-container {
	max-width: 850px;
	margin: auto;
	background: #ffffff;
	padding: 40px;
	border-radius: 14px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	animation: slideUp 1s ease-out;
}

.terms-container h2 {
	font-size: 32px;
	color: #cc3366;
	margin-bottom: 20px;
}

.terms-container h3 {
	margin-top: 25px;
	font-size: 22px;
	color: #cc3366;
}

.terms-container p {
	line-height: 1.7;
	margin-bottom: 14px;
}

.terms-container a {
	color: #cc3366;
	text-decoration: underline;
}

.terms-footer {
	margin-top: 30px;
	font-style: italic;
	text-align: center;
}

@keyframes slideUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (max-width: 600px) {
	.terms-container {
		padding: 25px;
	}

	.terms-container h2 {
		font-size: 26px;
	}

	.terms-container h3 {
		font-size: 18px;
	}
}
