/* Polar Hair Official — Main Stylesheet v2.0 */

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

:root {
	--navy: #1e2123;
	--navy-dark: #141618;
	--navy-mid: #2b3344;
	--white: #ffffff;
	--gray-50: #f7f7f7;
	--gray-100: #efefef;
	--gray-200: #e0e0e0;
	--gray-600: #666;
	--gray-800: #333;
	--gold: #c9a84c;
	--green: #2ecc71;
	--red: #e74c3c;
	--font: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
	--container: 1200px;
	--radius: 8px;
}

html { scroll-behavior: smooth; }

body {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-800);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── Announcement bars ── */
.pho-bar {
	text-align: center;
	padding: 10px 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pho-bar--guarantee,
.pho-bar--flash {
	background: var(--navy);
	color: var(--white);
}

.pho-bar--sub {
	background: var(--gray-100);
	color: var(--gray-800);
	font-weight: 600;
}

/* ── Header ── */
.pho-header {
	background: var(--white);
	border-bottom: 1px solid var(--gray-200);
	position: sticky;
	top: 0;
	z-index: 100;
}

.pho-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 20px;
}

.pho-logo img { height: 25px; width: auto; }

.pho-nav ul {
	display: flex;
	gap: 24px;
	align-items: center;
}

.pho-nav a {
	font-size: 14px;
	font-weight: 600;
	color: var(--gray-800);
	transition: color 0.2s;
}

.pho-nav a:hover { color: var(--navy); }

.pho-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.pho-currency {
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.pho-cart { color: var(--gray-800); display: flex; }

.pho-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}

.pho-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	transition: 0.3s;
}

/* ── Buttons ── */
.pho-btn {
	display: inline-block;
	padding: 14px 32px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: opacity 0.2s, background 0.2s;
	text-align: center;
}

.pho-btn--primary {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.pho-btn--primary:hover { opacity: 0.88; }

.pho-btn--outline {
	background: transparent;
	color: var(--navy);
	border-color: var(--navy);
}

.pho-btn--outline:hover { background: var(--navy); color: var(--white); }

.pho-btn--dark {
	background: var(--navy);
	color: var(--white);
	border: none;
}

.pho-btn--full { width: 100%; }

/* ── Hero ── */
.pho-hero {
	background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
	padding: 60px 0 80px;
}

.pho-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.pho-badge {
	display: inline-block;
	background: var(--navy);
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.pho-hero h1 {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 900;
	line-height: 1.15;
	color: var(--navy);
	margin-bottom: 16px;
	text-transform: uppercase;
}

.pho-hero__text p {
	font-size: 17px;
	color: var(--gray-600);
	margin-bottom: 28px;
	max-width: 480px;
}

.pho-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray-600);
}

.pho-stars { color: var(--gold); letter-spacing: 2px; }

.pho-hero__img img { width: 100%; border-radius: var(--radius); }

/* ── Press marquee ── */
.pho-press {
	background: var(--navy);
	padding: 18px 0;
	overflow: hidden;
}

.pho-press__track {
	display: flex;
	gap: 48px;
	align-items: center;
	animation: pho-marquee 20s linear infinite;
	width: max-content;
}

.pho-press__logo {
	height: 28px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.85;
	flex-shrink: 0;
}

@keyframes pho-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ── Sections ── */
.pho-section { padding: 70px 0; }
.pho-section--gray { background: var(--gray-50); }

.pho-title {
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	color: var(--navy);
	margin-bottom: 40px;
	letter-spacing: 0.02em;
}

.pho-title--left { text-align: left; }
.pho-title--white { color: var(--white); }
.pho-title--narrow { max-width: 700px; margin-left: auto; margin-right: auto; }

/* ── Grid ── */
.pho-grid {
	display: grid;
	gap: 24px;
}

.pho-grid--3 { grid-template-columns: repeat(3, 1fr); }
.pho-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ── Product cards ── */
.pho-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 20px;
	text-align: center;
	transition: box-shadow 0.2s;
}

.pho-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.pho-card__img {
	position: relative;
	margin-bottom: 16px;
}

.pho-card__img img {
	width: 100%;
	height: 200px;
	object-fit: contain;
	margin: 0 auto;
}

.pho-card__badge {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--navy);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
	letter-spacing: 0.05em;
}

.pho-card h3 {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.pho-card p { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }

.pho-card__price {
	font-size: 18px;
	font-weight: 900;
	color: var(--navy);
	margin-bottom: 16px !important;
}

.pho-card .pho-btn { width: 100%; padding: 10px; font-size: 12px; }

/* ── Benefits ── */
.pho-benefits {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 24px;
	align-items: center;
	max-width: 900px;
	margin: 0 auto;
}

.pho-benefit {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 20px;
}

.pho-benefit span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--navy);
	color: var(--white);
	border-radius: 50%;
	font-size: 14px;
	margin-bottom: 10px;
}

.pho-benefit h3 {
	font-size: 13px;
	font-weight: 900;
	color: var(--navy);
	margin-bottom: 6px;
	letter-spacing: 0.05em;
}

.pho-benefit p { font-size: 13px; color: var(--gray-600); }

.pho-benefit--tl { grid-column: 1; grid-row: 1; }
.pho-benefit--tr { grid-column: 3; grid-row: 1; }
.pho-benefit--bl { grid-column: 1; grid-row: 2; }
.pho-benefit--br { grid-column: 3; grid-row: 2; }

.pho-benefit__center {
	grid-column: 2;
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pho-benefit__center img {
	max-height: 320px;
	width: auto;
	object-fit: contain;
}

/* ── Guarantee ── */
.pho-guarantee { background: var(--white); }

.pho-guarantee__top {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 50px 20px;
	max-width: 800px;
}

.pho-seal {
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--gold);
	color: var(--white);
	font-size: 11px;
	font-weight: 900;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
	letter-spacing: 0.05em;
}

.pho-guarantee__top p { font-size: 15px; color: var(--gray-600); }

.pho-trust {
	background: var(--navy);
	color: var(--white);
	padding: 16px 0;
}

.pho-trust__inner {
	display: flex;
	justify-content: space-around;
	gap: 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
}

/* ── Social proof ── */
.pho-social {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 40px;
}

.pho-customers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	position: relative;
}

.pho-customers img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 4px;
}

.pho-customers__badge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(30,33,35,0.92);
	color: var(--white);
	padding: 20px 24px;
	border-radius: var(--radius);
	text-align: center;
	pointer-events: none;
}

.pho-customers__badge strong {
	display: block;
	font-size: 28px;
	font-weight: 900;
}

.pho-customers__badge span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.pho-stats { display: flex; flex-direction: column; gap: 24px; }

.pho-stat {
	display: flex;
	align-items: center;
	gap: 20px;
}

.pho-stat__circle {
	flex-shrink: 0;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 4px solid var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 900;
	color: var(--navy);
}

.pho-stat p { font-size: 14px; color: var(--gray-600); }

.pho-cta { text-align: center; }

/* ── Story ── */
.pho-story {
	background: var(--navy);
	padding: 70px 0;
}

.pho-story__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.pho-story__block {
	margin-bottom: 24px;
}

.pho-story__block h3 {
	font-size: 16px;
	font-weight: 900;
	color: var(--white);
	margin-bottom: 8px;
	text-transform: uppercase;
}

.pho-story__block p { font-size: 14px; color: rgba(255,255,255,0.75); }

.pho-story__img img {
	border-radius: var(--radius);
	margin-bottom: 20px;
}

/* ── Footer ── */
.pho-footer {
	background: var(--navy-dark);
	color: rgba(255,255,255,0.75);
	padding: 60px 0 0;
}

.pho-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 40px;
}

.pho-footer__logo { margin-bottom: 16px; filter: brightness(0) invert(1); }

.pho-footer__brand p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }

.pho-footer__hours { font-size: 12px; opacity: 0.7; }

.pho-footer__contact { margin-top: 12px; }
.pho-footer__contact li { margin-bottom: 6px; }
.pho-footer__contact a { font-size: 13px; color: rgba(255,255,255,0.85); }
.pho-footer__contact a:hover { color: var(--white); }

.pho-footer__col h4 {
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pho-footer__col ul li { margin-bottom: 8px; }
.pho-footer__col a { font-size: 13px; color: rgba(255,255,255,0.65); }
.pho-footer__col a:hover { color: var(--white); }

.pho-newsletter {
	display: flex;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

.pho-newsletter input {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--white);
	padding: 8px 0;
	font-size: 13px;
	outline: none;
}

.pho-newsletter input::placeholder { color: rgba(255,255,255,0.4); }

.pho-newsletter button {
	background: none;
	border: none;
	color: var(--white);
	cursor: pointer;
	font-size: 18px;
	padding: 0 4px;
}

.pho-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 20px 0;
}

.pho-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 12px;
	flex-wrap: wrap;
}

.pho-payments {
	display: flex;
	gap: 12px;
	font-size: 11px;
	opacity: 0.6;
}

/* ── Product page ── */
.pho-pdp-hero { padding: 40px 0; }

.pho-pdp-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.pho-pdp-gallery__main {
	width: 100%;
	border-radius: var(--radius);
	border: 1px solid var(--gray-200);
	margin-bottom: 12px;
}

.pho-pdp-gallery__thumbs {
	display: flex;
	gap: 8px;
}

.pho-pdp-gallery__thumbs img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 4px;
	border: 2px solid transparent;
	cursor: pointer;
}

.pho-pdp-gallery__thumbs img:hover { border-color: var(--navy); }

.pho-pdp-buy h1 {
	font-size: 28px;
	font-weight: 900;
	color: var(--navy);
	margin-bottom: 8px;
}

.pho-pdp-price {
	font-size: 22px;
	margin: 16px 0;
}

.pho-pdp-price del { color: var(--gray-600); font-size: 16px; margin-right: 8px; }
.pho-pdp-price strong { font-weight: 900; color: var(--navy); }

.pho-pdp-label {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin: 16px 0 8px;
	color: var(--gray-800);
}

.pho-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }

.pho-swatch {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid var(--gray-200);
	cursor: pointer;
	transition: border-color 0.2s;
}

.pho-swatch.is-active,
.pho-swatch:hover { border-color: var(--navy); outline: 2px solid var(--navy); outline-offset: 2px; }

.pho-packs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.pho-pack {
	padding: 12px 16px;
	border: 2px solid var(--gray-200);
	border-radius: var(--radius);
	background: var(--white);
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.2s;
}

.pho-pack.is-active { border-color: var(--navy); background: var(--gray-50); }

.pho-pdp-trust {
	margin: 16px 0;
	font-size: 13px;
	color: var(--gray-600);
}

.pho-pdp-trust li { margin-bottom: 4px; }
.pho-pdp-trust li::before { content: '✓ '; color: var(--green); font-weight: 700; }

.pho-pdp-customers { margin-top: 24px; }
.pho-pdp-customers p { font-size: 14px; font-weight: 700; margin-bottom: 8px; }

.pho-pdp-customers__imgs {
	display: flex;
	gap: 6px;
}

.pho-pdp-customers__imgs img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.pho-pdp-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 32px;
}

.pho-pdp-features img {
	width: 100%;
	border-radius: var(--radius);
	aspect-ratio: 16/9;
	object-fit: cover;
}

.pho-features div {
	text-align: center;
	padding: 16px;
}

.pho-features strong { font-size: 28px; display: block; margin-bottom: 8px; }
.pho-features h3 { font-size: 14px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.pho-features p { font-size: 13px; color: var(--gray-600); }

/* ── Reviews ── */
.pho-review {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 20px;
	text-align: center;
}

.pho-review img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 4px;
	margin-bottom: 12px;
}

.pho-review p { font-size: 14px; font-style: italic; color: var(--gray-600); margin: 8px 0; }
.pho-review span { font-size: 13px; font-weight: 700; color: var(--navy); }

/* ── Reasons ── */
.pho-reasons {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 24px;
	align-items: center;
}

.pho-reason {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 20px;
	margin-bottom: 16px;
}

.pho-reason h3 { font-size: 14px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.pho-reason p { font-size: 13px; color: var(--gray-600); }

.pho-reasons__center {
	width: 220px;
	border-radius: var(--radius);
}

/* ── Comparison ── */
.pho-compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 700px;
	margin: 0 auto;
}

.pho-compare__col {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 24px;
	text-align: center;
}

.pho-compare__col--win { border-color: var(--navy); border-width: 2px; }

.pho-compare__col img {
	height: 120px;
	width: auto;
	margin: 0 auto 16px;
	object-fit: contain;
}

.pho-compare__col h3 { font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.pho-compare__col li { font-size: 13px; margin-bottom: 8px; text-align: left; }
.pho-compare__col--win li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.pho-compare__col:not(.pho-compare__col--win) li { color: var(--gray-600); }

/* ── Guarantee box ── */
.pho-guarantee-box {
	display: flex;
	align-items: center;
	gap: 40px;
}

.pho-guarantee-box img {
	width: 200px;
	flex-shrink: 0;
	border-radius: var(--radius);
}

.pho-guarantee-box h2 {
	font-size: 24px;
	font-weight: 900;
	color: var(--navy);
	margin-bottom: 12px;
}

.pho-guarantee-box p { font-size: 15px; color: var(--gray-600); margin-bottom: 20px; }

/* ── FAQ ── */
.pho-faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

.pho-faq-grid > img {
	border-radius: var(--radius);
	width: 100%;
}

.pho-acc__item { border-bottom: 1px solid var(--gray-200); }

.pho-acc__btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	background: none;
	border: none;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	cursor: pointer;
	text-align: left;
}

.pho-acc__btn span { font-size: 20px; font-weight: 400; transition: transform 0.2s; }
.pho-acc__btn[aria-expanded="true"] span { transform: rotate(45deg); }

.pho-acc__panel { padding-bottom: 16px; }
.pho-acc__panel p { font-size: 14px; color: var(--gray-600); }

/* ── Contact ── */
.pho-contact { padding: 60px 0; }

.pho-contact__card {
	max-width: 600px;
	margin: 0 auto;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	padding: 40px;
}

.pho-contact__card h1 {
	font-size: 28px;
	font-weight: 900;
	color: var(--navy);
	margin-bottom: 12px;
}

.pho-contact__intro {
	font-size: 15px;
	color: var(--gray-600);
	margin-bottom: 24px;
}

.pho-success {
	background: #d4edda;
	color: #155724;
	padding: 12px 16px;
	border-radius: var(--radius);
	margin-bottom: 20px;
	font-size: 14px;
}

.pho-contact__card label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.pho-contact__card input,
.pho-contact__card textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 10px 12px;
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 14px;
}

.pho-contact__card textarea { min-height: 120px; resize: vertical; }

/* ── Responsive ── */
@media (max-width: 1024px) {
	.pho-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.pho-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.pho-nav-toggle { display: flex; }

	.pho-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		border-bottom: 1px solid var(--gray-200);
		padding: 16px 20px;
	}

	.pho-nav.is-open { display: block; }
	.pho-nav ul { flex-direction: column; align-items: flex-start; gap: 12px; }

	.pho-header { position: relative; }

	.pho-hero__grid,
	.pho-story__grid,
	.pho-social,
	.pho-pdp-hero__grid,
	.pho-faq-grid,
	.pho-guarantee-box { grid-template-columns: 1fr; }

	.pho-benefits {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.pho-benefit--tl,
	.pho-benefit--tr,
	.pho-benefit--bl,
	.pho-benefit--br,
	.pho-benefit__center { grid-column: 1; grid-row: auto; }

	.pho-grid--3,
	.pho-grid--4,
	.pho-compare,
	.pho-reasons { grid-template-columns: 1fr; }

	.pho-reasons__center { width: 100%; margin: 0 auto; }

	.pho-trust__inner { flex-direction: column; gap: 8px; }

	.pho-guarantee__top { flex-direction: column; text-align: center; }

	.pho-footer__grid { grid-template-columns: 1fr; }
}
