/* ==========================================================================
   Memorial Art Shop — Ana Stil Dosyası
   ========================================================================== */

:root {
	--bg: #ffffff;
	--bg-alt: #f7f7f6;
	--ink: #262626;
	--ink-soft: #6b6b6b;
	--navy: #1c2436;
	--navy-soft: #2a3348;
	--gold: #d9a441;
	--etsy-orange: #f1641e;
	--etsy-orange-dark: #d6540b;
	--white: #ffffff;
	--border: #e6e6e3;
	--ph-bg: #e9e9e7;
	--ph-icon: #b3b3ae;
	--radius-lg: 22px;
	--radius-md: 14px;
	--radius-full: 999px;
	--shadow: 0 24px 48px -24px rgba(20, 20, 20, 0.18);
	--font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	position: relative;
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	background-image: var(--mas-bg-image, none);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	opacity: 0.16;
	pointer-events: none;
	z-index: -1;
}

img {
	max-width: 100%;
	display: block;
	-webkit-user-drag: none;
	user-drag: none;
	-webkit-touch-callout: none;
}

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

h1, h2, h3, h4 {
	font-family: var(--font-serif);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 16px;
	color: var(--ink);
}

p { margin: 0 0 16px; color: var(--ink-soft); }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.section { padding: 96px 0; }
.section:nth-of-type(even) { background: var(--bg-alt); }

.section-heading {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}
.section-heading h2 { font-size: clamp(28px, 4vw, 38px); }
.section-heading p { font-size: 17px; }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 30px;
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--etsy-orange); color: var(--white); }
.btn--primary:hover { background: var(--etsy-orange-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn--lg { padding: 18px 38px; font-size: 17px; }

/* ---------------- Header ---------------- */
.site-header { padding: 28px 0; background: var(--bg); }
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 auto;
	text-align: center;
	flex-direction: column;
}
.site-branding__icon { width: 44px; height: 44px; color: var(--ink); }
.site-branding__icon svg { width: 100%; height: 100%; }
.site-branding__text {
	font-family: var(--font-serif);
	font-size: 19px;
	letter-spacing: 0.02em;
}
.site-branding__text strong { display: block; font-size: 22px; font-weight: 700; }
.site-branding .custom-logo-link { display: block; }
.site-branding .custom-logo { max-height: 180px; width: auto; }
.site-header__social {
	display: flex;
	gap: 14px;
	position: absolute;
	right: 24px;
}
.site-header__social a { width: 20px; height: 20px; color: var(--ink-soft); }
.site-header__social svg { width: 100%; height: 100%; }
.site-header__inner { position: relative; justify-content: center; }
.site-nav__list { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }

/* ---------------- Hero ---------------- */
.hero { padding: 56px 0 0; text-align: center; }
.hero__inner { max-width: 760px; }
.hero__title { font-size: clamp(34px, 5.5vw, 54px); }
.hero__subtitle { font-size: 18px; max-width: 600px; margin: 0 auto 28px; }
.hero__badges {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--white);
	border: 1px solid var(--border);
	padding: 8px 16px;
	border-radius: var(--radius-full);
	font-size: 14px;
	font-weight: 600;
}
.badge svg { width: 14px; height: 14px; color: var(--gold); }
.hero__social-proof { font-size: 14px; margin-bottom: 24px; }
.hero__trust { font-size: 13px; margin-top: 14px; }

.hero-gallery { margin-top: 56px; padding-bottom: 24px; }
.hero-gallery__track {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 8px 24px 24px;
	max-width: var(--container);
	margin: 0 auto;
}
.gallery-card {
	flex: 0 0 360px;
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}
.gallery-card__photo { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.gallery-card__photo--top { object-position: 50% 15%; }
.gallery-card__caption { padding: 18px 20px; text-align: left; }
.gallery-card__caption strong { display: block; font-family: var(--font-serif); font-size: 17px; }
.gallery-card__caption span { font-size: 13px; color: var(--ink-soft); }

/* Generic image placeholder */
.ph {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ph-bg);
	color: var(--ph-icon);
	overflow: hidden;
}
.ph svg { width: 34px; height: 34px; }
.ph::after {
	content: attr(data-label);
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	font-size: 11px;
	font-family: var(--font-sans);
	color: #8a8a85;
	background: rgba(255, 255, 255, 0.75);
	padding: 3px 8px;
	border-radius: 6px;
	text-align: center;
}
.ph--portrait { aspect-ratio: 4 / 5; width: 100%; }
.ph--landscape { aspect-ratio: 4 / 3; width: 100%; }
.ph--wide { aspect-ratio: 16 / 9; width: 100%; }

.dots { display: flex; justify-content: center; gap: 12px; margin-top: 8px; }
.dots button {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: none;
	background: var(--border);
	cursor: pointer;
	padding: 0;
}
.dots button.is-active { background: var(--ink); width: 38px; border-radius: var(--radius-full); }

/* ---------------- How it works ---------------- */
.steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}
.step { flex: 1 1 220px; max-width: 260px; text-align: center; }
.step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--border);
	color: var(--ink);
	margin-bottom: 20px;
}
.step__icon svg { width: 30px; height: 30px; }
.step h3 { font-size: 19px; }
.step p { font-size: 14px; }
.step-arrow { color: var(--border); margin-top: 30px; width: 24px; }
.step-arrow svg { width: 100%; }

/* ---------------- Transformation ---------------- */
.transformation__card {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 56px;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}
.transformation__before {
	display: flex;
	justify-content: center;
	gap: 28px;
	margin: 0 auto 24px;
}
.polaroid {
	background: var(--white);
	padding: 8px 8px 20px;
	box-shadow: var(--shadow);
	border-radius: 4px;
	width: 140px;
}
.polaroid--left { transform: rotate(-6deg); }
.polaroid--right { transform: rotate(5deg); }
.ph--polaroid-photo { aspect-ratio: 4 / 5; width: 100%; }
.polaroid__photo { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.transformation__label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 4px;
}
.transformation__label svg { width: 16px; height: 16px; color: var(--ink-soft); }
.transformation__desc { font-size: 14px; }
.transformation__arrow { display: inline-block; margin: 20px 0; color: var(--ink-soft); width: 26px; }
.transformation__arrow svg { width: 100%; }
.transformation__frame {
	position: relative;
	max-width: 320px;
	margin: 0 auto 16px;
	padding: 16px;
}
.transformation__frame .corner {
	position: absolute;
	width: 22px;
	height: 22px;
	border-color: var(--ink);
}
.corner--tl { top: 0; left: 0; border-top: 2px solid; border-left: 2px solid; }
.corner--tr { top: 0; right: 0; border-top: 2px solid; border-right: 2px solid; }
.corner--bl { bottom: 0; left: 0; border-bottom: 2px solid; border-left: 2px solid; }
.corner--br { bottom: 0; right: 0; border-bottom: 2px solid; border-right: 2px solid; }
.transformation__frame .ph--portrait { box-shadow: var(--shadow); }
.transformation__photo { aspect-ratio: 4 / 5; width: 100%; object-fit: cover; box-shadow: var(--shadow); }

/* ---------------- Etsy trust bar ---------------- */
.etsy-trust {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin: -28px auto 48px;
}
.etsy-trust__text { font-size: 14px; font-weight: 600; color: var(--ink); }
.etsy-trust__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	border-bottom: 1px solid var(--ink);
	padding-bottom: 1px;
}
.etsy-trust__link svg { width: 14px; height: 14px; }
.etsy-trust__link:hover { color: var(--ink-soft); border-color: var(--ink-soft); }

/* ---------------- Testimonials ---------------- */
.testimonial-gallery__track {
	display: flex;
	justify-content: safe center;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 4px 4px 28px;
	scrollbar-width: none;
}
.testimonial-gallery__track::-webkit-scrollbar { display: none; }
.testimonial-card {
	flex: 0 0 360px;
	scroll-snap-align: center;
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
	text-align: center;
}
.testimonial-card__photo { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.testimonial-card__body { padding: 28px 28px 32px; }
.testimonial-card__stars { color: var(--gold); display: flex; justify-content: center; gap: 2px; margin-bottom: 14px; }
.testimonial-card__stars svg { width: 16px; height: 16px; }
.testimonial-card__quote { font-style: italic; color: var(--ink); }
.testimonial-card__name strong { display: block; font-size: 15px; }
.testimonial-card__name span { font-size: 13px; color: var(--ink-soft); }

/* ---------------- Stats CTA ---------------- */
.stats-cta__card {
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 64px 32px;
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}
.stats-cta__stats {
	display: flex;
	justify-content: center;
	gap: 56px;
	margin: 32px 0;
	flex-wrap: wrap;
}
.stats-cta__stats strong { display: block; font-family: var(--font-serif); font-size: 30px; color: var(--ink); }
.stats-cta__stats span { font-size: 13px; color: var(--ink-soft); }
.stats-cta__note { font-size: 13px; margin-top: 16px; }

/* ---------------- Why us ---------------- */
.why-us__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	max-width: 900px;
	margin: 0 auto;
}
.why-us__item { flex: 1 1 220px; max-width: 260px; text-align: center; }
.why-us__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--bg-alt);
	color: var(--gold);
	margin-bottom: 18px;
}
.why-us__icon svg { width: 24px; height: 24px; }
.why-us__item h3 { font-size: 18px; }
.why-us__item p { font-size: 14px; }

/* ---------------- FAQ ---------------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__question {
	width: 100%;
	background: none;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 22px 4px;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	text-align: left;
}
.faq-item__icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--ink-soft); transition: transform 0.2s ease; }
.faq-item__icon svg { width: 100%; height: 100%; }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
}
.faq-item__answer p { padding: 0 4px 20px; font-size: 15px; }
.faq-item.is-open .faq-item__answer { max-height: 300px; }

.faq-contact {
	text-align: center;
	max-width: 520px;
	margin: 64px auto 0;
	background: var(--bg-alt);
	border-radius: var(--radius-lg);
	padding: 40px;
}

/* ---------------- Start order ---------------- */
.start-order { text-align: center; }
.start-order h2 { font-size: clamp(26px, 4vw, 34px); }
.start-order p { max-width: 520px; margin: 0 auto 28px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy); color: #cfd3dd; padding-top: 72px; }
.site-footer h3 { color: var(--white); font-size: 17px; }
.site-footer p { color: #b7bccb; }
.site-footer a:hover { color: var(--white); }
.site-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-branding--footer { flex-direction: row; margin: 0 0 16px; align-items: center; }
.site-branding--footer .site-branding__icon { color: var(--white); width: 34px; height: 34px; }
.site-branding--footer .site-branding__text { color: var(--white); font-size: 15px; }
.site-branding--footer .site-branding__text strong { font-size: 17px; display: inline; }
.site-branding--footer .custom-logo { max-height: 80px; }
.site-footer__stats { display: flex; gap: 40px; margin-top: 20px; }
.site-footer__stats strong { display: block; color: var(--white); font-family: var(--font-serif); font-size: 22px; }
.site-footer__stats span { font-size: 12px; }
.site-footer__contact p { display: flex; align-items: center; }
.site-footer__contact p a { display: inline-flex; align-items: center; gap: 8px; }
.site-footer__contact svg { width: 16px; height: 16px; }
.site-footer__social { display: flex; flex-direction: column; gap: 14px; margin: 16px 0; }
.site-footer__social a { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; }
.site-footer__social svg { width: 18px; height: 18px; flex-shrink: 0; }
.site-footer__menu-list { list-style: none; padding: 0; display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__bottom { padding: 24px 0; }
.site-footer__bottom p { margin: 0; font-size: 13px; text-align: center; }

/* ---------------- Page fallback ---------------- */
.page-content { padding: 80px 0; max-width: 760px; }
.page-title { font-size: 34px; }

/* ---------------- Style select ---------------- */
.style-select__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
	margin-bottom: 48px;
}
.style-card {
	flex: 0 0 260px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	background: var(--white);
	border: 2px solid transparent;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	overflow: hidden;
	cursor: pointer;
	padding: 0;
	text-align: left;
	font-family: var(--font-sans);
	color: inherit;
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.style-card:hover { transform: translateY(-2px); }
.style-card__label {
	display: block;
	padding: 16px 18px;
	font-weight: 600;
	font-size: 15px;
}
.style-card__photo { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.style-select__actions { text-align: center; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
	.site-footer__inner { grid-template-columns: 1fr; }
	.transformation__card { padding: 36px 20px; }
	.stats-cta__stats { gap: 32px; }
	.steps { flex-direction: column; align-items: center; }
	.step-arrow { display: none; }
	.site-header__social { position: static; margin-top: 12px; }
	.site-header__inner { flex-direction: column; }
}

@media (max-width: 560px) {
	.section { padding: 64px 0; }
	.hero__badges { gap: 8px; }
	.transformation__before { max-width: 260px; }
}
