/* ==========================================================================
   PRIMA OPTICS - Main Styles
   ========================================================================== */

:root {
	--po-black: #111111;
	--po-white: #FFFFFF;
	--po-warm: #F5F3EF;
	--po-gray: #F7F7F7;
	--po-border: #E5E5E5;
	--po-text-muted: #666666;
	--po-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--po-radius: 4px;
	--po-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	--po-transition: 0.25s ease;
	--po-container: 1320px;
	--po-header-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--po-font);
	font-size: 15px;
	line-height: 1.6;
	color: var(--po-black);
	background: var(--po-white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: opacity var(--po-transition); }
a:hover { opacity: 0.7; }

ul, ol { list-style: none; margin: 0; padding: 0; }

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
}

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

/* Buttons */
.po-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: var(--po-radius);
	transition: all var(--po-transition);
	cursor: pointer;
	border: 1px solid transparent;
}

.po-btn--primary {
	background: var(--po-black);
	color: var(--po-white);
	border-color: var(--po-black);
}

.po-btn--primary:hover {
	background: transparent;
	color: var(--po-black);
	opacity: 1;
}

.po-btn--outline {
	background: transparent;
	color: var(--po-black);
	border-color: var(--po-black);
}

.po-btn--outline:hover {
	background: var(--po-black);
	color: var(--po-white);
	opacity: 1;
}

.po-btn--sm { padding: 10px 20px; font-size: 11px; }

/* Announcement Bar */
.po-announcement {
	background: var(--po-black);
	color: var(--po-white);
	font-size: 11px;
	letter-spacing: 0.06em;
	padding: 10px 0;
}

.po-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.po-announcement__items {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}

.po-announcement__phone {
	color: var(--po-white);
	font-weight: 500;
	white-space: nowrap;
}

.po-announcement__phone:hover { opacity: 0.8; }

/* Header */
.po-header {
	background: var(--po-white);
	border-bottom: 1px solid var(--po-border);
	position: relative;
	z-index: 100;
}

.po-header--sticky {
	position: sticky;
	top: 0;
}

.po-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: var(--po-header-height);
	gap: 24px;
}

.po-header__left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.po-header__menu-toggle { display: none; }

.po-header__logo {
	display: inline-flex;
	align-items: center;
}

.po-header__logo-img {
	display: block;
	width: auto;
	height: auto;
	max-height: var(--po-header-logo-height, 48px);
	max-width: 100%;
	object-fit: contain;
}

.po-header__logo-text {
	display: flex;
	flex-direction: column;
	font-weight: 700;
	font-size: var(--po-header-logo-text-size, 14px);
	letter-spacing: 0.15em;
	line-height: 1.2;
}

.po-header__logo:hover { opacity: 1; }

.po-header__nav { justify-self: center; }

.po-header__menu {
	display: flex;
	gap: 28px;
}

.po-header__menu a {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	position: relative;
}

.po-header__menu a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--po-black);
	transition: width var(--po-transition);
}

.po-header__menu a:hover::after { width: 100%; }
.po-header__menu a:hover { opacity: 1; }

.po-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-self: end;
}

.po-header__action {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--po-black);
}

.po-header__action:hover { opacity: 0.6; }

.po-header__cart-count,
.po-header__wishlist-count {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 16px;
	height: 16px;
	background: var(--po-black);
	color: var(--po-white);
	font-size: 10px;
	font-weight: 600;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.po-header__wishlist-count:empty,
.po-header__cart-count:empty,
.po-header__wishlist-count[data-count="0"],
.po-header__cart-count[data-count="0"] { display: none; }

/* Search Overlay */
.po-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.98);
	z-index: 200;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 120px;
	opacity: 0;
	visibility: hidden;
	transition: all var(--po-transition);
}

.po-search-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.po-search-overlay__inner {
	width: 100%;
	max-width: 640px;
	padding: 0 24px;
	position: relative;
}

.po-search-overlay__close {
	position: absolute;
	top: -60px;
	right: 24px;
	width: 40px;
	height: 40px;
}

.po-search-form__input {
	width: 100%;
	padding: 16px 0;
	font-size: 24px;
	font-weight: 300;
	border: none;
	border-bottom: 1px solid var(--po-border);
	outline: none;
	background: transparent;
}

.po-search-results { margin-top: 24px; }

.po-search-result {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px 0;
	border-bottom: 1px solid var(--po-border);
}

.po-search-result__image {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: var(--po-radius);
}

.po-search-result__brand {
	font-size: 11px;
	color: var(--po-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.po-search-result__title { font-weight: 500; }

/* Mobile Menu */
.po-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 360px;
	height: 100vh;
	background: var(--po-white);
	z-index: 300;
	transform: translateX(-100%);
	transition: transform var(--po-transition);
	overflow-y: auto;
}

.po-mobile-menu.is-open { transform: translateX(0); }

.po-mobile-menu__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--po-border);
}

.po-mobile-menu__list a {
	display: block;
	padding: 16px 24px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--po-border);
}

/* Mini Cart */
.po-mini-cart {
	position: fixed;
	inset: 0;
	z-index: 250;
	visibility: hidden;
}

.po-mini-cart.is-open { visibility: visible; }

.po-mini-cart__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity var(--po-transition);
}

.po-mini-cart.is-open .po-mini-cart__overlay { opacity: 1; }

.po-mini-cart__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 420px;
	height: 100%;
	background: var(--po-white);
	transform: translateX(100%);
	transition: transform var(--po-transition);
	display: flex;
	flex-direction: column;
}

.po-mini-cart.is-open .po-mini-cart__panel { transform: translateX(0); }

.po-mini-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid var(--po-border);
}

.po-mini-cart__title {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
}

.po-mini-cart__content {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
}

.po-mini-cart__item {
	display: flex;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--po-border);
}

.po-mini-cart__item-image img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--po-radius);
}

.po-mini-cart__item-details { flex: 1; }

.po-mini-cart__item-title {
	display: block;
	font-weight: 500;
	font-size: 14px;
}

.po-mini-cart__item-qty {
	font-size: 13px;
	color: var(--po-text-muted);
}

.po-mini-cart__item-remove {
	font-size: 20px;
	color: var(--po-text-muted);
}

.po-mini-cart__footer {
	padding: 24px;
	border-top: 1px solid var(--po-border);
}

.po-mini-cart__subtotal {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
	font-size: 15px;
}

.po-mini-cart__buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.po-mini-cart__buttons .po-btn { width: 100%; }

.po-mini-cart__empty {
	text-align: center;
	color: var(--po-text-muted);
	padding: 40px 0;
}

/* Hero */
.po-hero {
	padding: 0;
	background: var(--po-warm);
	overflow: hidden;
}

.po-hero__inner {
	position: relative;
	min-height: 640px;
	height: clamp(560px, 75vh, 760px);
	max-width: 100%;
}

/* Full-width cover image behind content (desktop) */
.po-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: var(--po-warm);
}

.po-hero__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.po-hero__img {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: cover;
	object-position: 72% center;
	display: block;
}

.po-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	height: 100%;
	padding: 80px 48px 80px max(24px, calc((100vw - var(--po-container)) / 2 + 24px));
}

.po-hero__title {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0 0 24px;
	text-transform: uppercase;
}

.po-hero__subtitle {
	font-size: 16px;
	color: var(--po-text-muted);
	margin: 0 0 36px;
	max-width: 420px;
	line-height: 1.7;
}

.po-hero__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* USP Bar */
.po-usp {
	background: var(--po-warm);
	padding: 40px 0;
	border-top: 1px solid var(--po-border);
	border-bottom: 1px solid var(--po-border);
}

.po-usp__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.po-usp__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.po-usp__icon {
	flex-shrink: 0;
	color: var(--po-black);
	opacity: 0.8;
}

.po-usp__title {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.po-usp__desc {
	font-size: 13px;
	color: var(--po-text-muted);
}

/* Sections */
.po-section {
	padding: 80px 0;
}

.po-section__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 40px;
}

.po-section__title {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 40px;
}

.po-section__header .po-section__title { margin-bottom: 0; }

/* Brands */
.po-brands__row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	padding: 20px 0;
}

.po-brands__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
	height: 48px;
	opacity: 0.7;
	transition: opacity var(--po-transition);
	filter: grayscale(100%);
}

.po-brands__item:hover { opacity: 1; filter: grayscale(0%); }

.po-brands__name {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Product Grid */
.po-products-grid,
.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Product Card */
.po-product-card { position: relative; }

.po-product-card__inner { position: relative; }

.po-product-card__image {
	position: relative;
	overflow: hidden;
	border-radius: var(--po-radius);
	background: var(--po-white);
}

.po-product-card__img {
	width: 100%;
	height: auto;
	object-fit: contain;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.po-product-card__image--has-hover .po-product-card__img--hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
}

.po-product-card:hover .po-product-card__img--primary { transform: scale(1.03); }
.po-product-card__image--has-hover:hover .po-product-card__img--hover { opacity: 1; }
.po-product-card__image--has-hover:hover .po-product-card__img--primary { opacity: 0; }

.po-product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--po-black);
	color: var(--po-white);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: var(--po-radius);
}

.po-product-card__actions {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	opacity: 0;
	transform: translateX(8px);
	transition: all var(--po-transition);
}

.po-product-card:hover .po-product-card__actions {
	opacity: 1;
	transform: translateX(0);
}

.po-product-card__wishlist,
.po-product-card__quick-add {
	width: 36px;
	height: 36px;
	background: var(--po-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--po-shadow);
	transition: all var(--po-transition);
}

.po-product-card__wishlist.is-active { color: #e74c3c; }
.po-product-card__wishlist:hover,
.po-product-card__quick-add:hover { background: var(--po-black); color: var(--po-white); }

.po-product-card__info { padding: 16px 0 0; }

.po-product-card__brand {
	display: block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--po-text-muted);
	margin-bottom: 4px;
}

.po-product-card__title {
	font-size: 14px;
	font-weight: 500;
	margin: 0 0 8px;
}

.po-product-card__title a:hover { opacity: 0.7; }

.po-product-card__price {
	font-size: 14px;
	font-weight: 600;
}

.po-product-card__price del {
	color: var(--po-text-muted);
	font-weight: 400;
	margin-right: 8px;
}

/* Categories */
.po-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.po-category-banner {
	position: relative;
	overflow: hidden;
	border-radius: var(--po-radius);
	aspect-ratio: 16/10;
	display: block;
}

.po-category-banner__image {
	position: absolute;
	inset: 0;
}

.po-category-banner__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.po-category-banner:hover .po-category-banner__image img { transform: scale(1.05); }

.po-category-banner__content {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	color: var(--po-white);
}

.po-category-banner__title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 4px;
}

.po-category-banner__subtitle {
	font-size: 13px;
	opacity: 0.8;
	margin: 0;
}

.po-category-banner__arrow {
	position: absolute;
	bottom: 24px;
	right: 24px;
	opacity: 0;
	transform: translateX(-8px);
	transition: all var(--po-transition);
}

.po-category-banner:hover .po-category-banner__arrow {
	opacity: 1;
	transform: translateX(0);
}

/* Newsletter */
.po-newsletter {
	background: var(--po-warm);
}

.po-newsletter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.po-newsletter__title {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.po-newsletter__text {
	color: var(--po-text-muted);
	margin: 0;
}

.po-newsletter__form {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.po-newsletter__form input {
	padding: 14px 20px;
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	font-size: 14px;
	min-width: 280px;
	outline: none;
	background: var(--po-white);
}

.po-newsletter__form input:focus { border-color: var(--po-black); }

/* Footer */
.po-footer {
	background: var(--po-black);
	color: var(--po-white);
	padding: 80px 0 0;
}

.po-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 48px;
	padding-bottom: 60px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.po-footer__logo,
.po-footer__logo img {
	display: block;
	width: auto;
	height: auto;
	max-height: var(--po-footer-logo-height, 40px);
	max-width: 100%;
	object-fit: contain;
}

.po-footer__logo-text {
	font-size: var(--po-footer-logo-text-size, 16px);
	font-weight: 700;
	letter-spacing: 0.12em;
}

.po-footer__description {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	margin: 16px 0 24px;
	line-height: 1.7;
}

.po-footer__social { display: flex; gap: 12px; }

.po-footer__social-link {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--po-transition);
}

.po-footer__social-link:hover {
	background: var(--po-white);
	color: var(--po-black);
	opacity: 1;
}

.po-footer__title {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 20px;
}

.po-footer__menu a,
.po-footer__contact a {
	display: block;
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	padding: 4px 0;
	transition: color var(--po-transition);
}

.po-footer__menu a:hover,
.po-footer__contact a:hover { color: var(--po-white); opacity: 1; }

.po-footer__contact li { color: rgba(255,255,255,0.6); font-size: 14px; padding: 4px 0; }

.po-footer__newsletter { margin-top: 24px; }

.po-footer__newsletter-label {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 8px;
}

.po-newsletter-form {
	display: flex;
	gap: 8px;
}

.po-newsletter-form input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: var(--po-radius);
	background: transparent;
	color: var(--po-white);
	font-size: 13px;
	outline: none;
}

.po-newsletter-form button {
	padding: 10px 16px;
	background: var(--po-white);
	color: var(--po-black);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	border-radius: var(--po-radius);
}

.po-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
}

.po-footer__copyright {
	font-size: 13px;
	color: rgba(255,255,255,0.4);
	margin: 0;
}

.po-footer__payments { display: flex; gap: 12px; }

.po-footer__payment-icon {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	padding: 4px 10px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: var(--po-radius);
	color: rgba(255,255,255,0.5);
}

/* Breadcrumbs */
.po-breadcrumbs {
	font-size: 13px;
	color: var(--po-text-muted);
	padding: 24px 0;
}

.po-breadcrumbs a { color: var(--po-text-muted); }
.po-breadcrumbs a:hover { color: var(--po-black); opacity: 1; }

.po-breadcrumbs__sep { margin: 0 8px; }

/* Page */
.po-page { padding: 40px 0 80px; }

.po-page__title {
	font-size: 32px;
	font-weight: 700;
	margin: 0 0 32px;
}

/* Shop */
.po-shop { padding-bottom: 80px; }

.po-shop-header__title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 32px;
}

.po-shop-layout {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 40px;
}

.po-shop-filters {
	position: sticky;
	top: calc(var(--po-header-height) + 24px);
	align-self: start;
}

.po-shop-filters__header { display: none; }

.po-filter-group { margin-bottom: 28px; }

.po-filter-group__title {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--po-border);
}

.po-filter-group__list li { margin-bottom: 6px; }

.po-filter-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	cursor: pointer;
}

.po-filter-checkbox input { accent-color: var(--po-black); }

.po-filter-price {
	display: flex;
	align-items: center;
	gap: 8px;
}

.po-filter-price input {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	font-size: 14px;
}

.po-filters-form__submit,
.po-filters-form__reset { width: 100%; margin-top: 8px; }

.po-shop-toolbar {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--po-border);
}

.po-shop-toolbar__filter { display: none; }

.po-shop-toolbar__sort { margin-left: auto; }

.po-shop-toolbar__sort select {
	padding: 8px 12px;
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	font-size: 13px;
	background: var(--po-white);
	outline: none;
}

.po-shop-toolbar__layout { display: flex; gap: 4px; }

.po-layout-btn {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
	color: var(--po-text-muted);
}

.po-layout-btn.active,
.po-layout-btn:hover {
	border-color: var(--po-black);
	color: var(--po-black);
}

/* Product Page */
.po-product-page { padding-bottom: 80px; }

.po-product {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.po-product__brand {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--po-text-muted);
	margin-bottom: 8px;
	display: inline-block;
}

.po-product__title {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 16px;
}

.po-product__price {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
}

.po-product__excerpt {
	color: var(--po-text-muted);
	margin-bottom: 24px;
	line-height: 1.7;
}

.po-product__meta-actions { margin: 20px 0; }

.po-product__wishlist.is-active { border-color: #e74c3c; color: #e74c3c; }

.po-product__meta {
	padding: 20px 0;
	border-top: 1px solid var(--po-border);
	font-size: 14px;
}

.po-product__meta p { margin: 0 0 8px; }

.po-product__share {
	padding: 16px 0;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.po-product__trust {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.po-product__trust-badge {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 6px 12px;
	border: 1px solid var(--po-border);
	border-radius: var(--po-radius);
}

/* Utility */
.po-no-results {
	text-align: center;
	padding: 60px 0;
	color: var(--po-text-muted);
}

/* Brand Archive */
.po-brand-banner {
	position: relative;
	height: 280px;
	overflow: hidden;
	margin-bottom: 40px;
}

.po-brand-banner__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.po-brand-banner__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: flex-end;
	padding-bottom: 40px;
}

.po-brand-banner__title {
	color: var(--po-white);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0;
}

.po-brand-description,
.po-brand-seo {
	max-width: 720px;
	color: var(--po-text-muted);
	line-height: 1.7;
	margin-bottom: 32px;
}

.po-brand-seo {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--po-border);
}

.po-wishlist-empty {
	color: var(--po-text-muted);
	margin-bottom: 24px;
}

.po-header.is-scrolled {
	box-shadow: var(--po-shadow);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	border: 0;
}
