:root {
	--phk-bg: #fff8f7;
	--phk-surface: #ffffff;
	--phk-surface-soft: #fff0ef;
	--phk-surface-alt: #ffe2e0;
	--phk-surface-high: #fff6f5;
	--phk-surface-border: #f0c9c6;
	--phk-text: #3a1f1f;
	--phk-text-soft: #7a5a5a;
	--phk-primary: #e8271a;
	--phk-primary-dark: #b81e13;
	--phk-secondary: #ffb8b5;
	--phk-accent: #ffd8d5;
	/* Màu phụ đa dạng */
	--phk-purple: #7c3aed;
	--phk-purple-soft: #ede9fe;
	--phk-blue: #2563eb;
	--phk-blue-soft: #dbeafe;
	--phk-amber: #d97706;
	--phk-amber-soft: #fef3c7;
	--phk-green: #059669;
	--phk-green-soft: #d1fae5;
	--phk-teal: #0891b2;
	--phk-teal-soft: #cffafe;
	--phk-border: rgba(141, 60, 60, 0.14);
	--phk-shadow: 0 24px 64px rgba(232, 39, 26, 0.20);
	--phk-shadow-soft: 0 12px 32px rgba(180, 50, 40, 0.09);
	--phk-radius-xl: 32px;
	--phk-radius-lg: 24px;
	--phk-radius-md: 18px;
	--phk-container: min(1320px, calc(100% - 32px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: radial-gradient(circle at 0% 0%, #ffeeed 0%, #fff8f7 40%, #ffffff 100%);
	color: var(--phk-text);
	font-family: "Plus Jakarta Sans", sans-serif;
	line-height: 1.5;
}

.phk-site-shell {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
}

.phk-site-shell::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: transparent;
	pointer-events: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.material-symbols-outlined {
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.phk-container {
	width: var(--phk-container);
	margin: 0 auto;
}

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

.phk-site-main { padding-top: 0; }

.phk-section { padding: 72px 0; }

.phk-section-heading {
	text-align: center;
	margin-bottom: 32px;
}

.phk-section-heading h2 {
	margin: 0;
	font-size: clamp(1.95rem, 2.4vw, 3rem);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.phk-section-heading p {
	margin: 10px 0 0;
	color: var(--phk-text-soft);
	font-size: 0.98rem;
}

.phk-section-heading--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	text-align: left;
}

.phk-section-heading--split p { max-width: 520px; }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.phk-header {
	position: relative;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid #f3d0ce;
	transition: transform 0.28s ease, filter 0.28s ease;
}

.phk-header__menubar {
	position: sticky;
	top: 0;
	z-index: 101;
	background: linear-gradient(90deg, #e83020 0%, #e8271a 50%, #c81810 100%);
	box-shadow: 0 14px 28px rgba(220, 40, 25, 0.28);
	transition: background 0.28s ease, box-shadow 0.28s ease;
}

body.admin-bar .phk-header__menubar { top: 32px; }

.phk-header__menubar.is-sticky {
	background: linear-gradient(90deg, rgba(232,48,32,0.96) 0%, rgba(232,39,26,0.94) 50%, rgba(200,24,16,0.96) 100%);
	backdrop-filter: blur(16px);
	box-shadow: 0 16px 34px rgba(220, 40, 25, 0.32);
	border-bottom: 1px solid rgba(255,200,195,0.82);
}

body.admin-bar .phk-header__menubar.is-sticky { top: 32px; }

.phk-header.is-sticky {
	filter: drop-shadow(0 10px 26px rgba(220, 60, 50, 0.22));
	width: 100%;
}

.phk-header.is-sticky .phk-header__topbar {
	background: rgba(255,248,247,0.92);
	backdrop-filter: blur(16px);
}

.phk-header__inner {
	width: min(1240px, calc(100% - 32px)) !important;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 18px;
}

.phk-header__inner--top {
	justify-content: space-between;
	min-height: 78px;
	padding: 8px 0;
	gap: 10px;
	transition: min-height 0.28s ease, padding 0.28s ease;
}

.phk-header__inner--bottom { min-height: 52px; }

.phk-header.is-sticky .phk-header__inner--top { min-height: 72px; padding: 8px 0; }

.phk-header__brand { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; min-width: 0; }

.phk-header__toggle {
	display: none;
	border: 0;
	background: #fff;
	width: 46px; height: 46px;
	border-radius: 50%;
	box-shadow: 0 10px 22px rgba(220,60,50,0.16);
	color: var(--phk-primary);
	cursor: pointer;
}

.phk-header__logo img {
	height: 44px;
	width: auto;
	object-fit: contain;
	transition: height 0.28s ease;
}

.phk-header.is-sticky .phk-header__logo img { height: 38px; }

.phk-header__search {
	display: flex;
	align-items: center;
	flex: 1 1 500px;
	min-width: 220px;
	max-width: 560px;
	padding: 4px 4px 4px 14px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #f2b8b5 !important;
	box-shadow: none !important;
}

.phk-header__search input {
	flex: 1; width: 100%; border: 0; outline: none;
	background: transparent; color: #5d4f4f; font-size: 0.96rem;
}

.phk-header__search input::placeholder { color: #9b8d8d; }

.phk-header__search-submit,
.phk-mobile-nav__search-submit {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; flex: 0 0 40px;
	border: 0; border-radius: 50%;
	background: linear-gradient(135deg, #e84030 0%, #d41e12 100%) !important;
	color: #fff;
	box-shadow: 0 8px 16px rgba(220,40,25,0.24);
	cursor: pointer;
}

.phk-header__actions {
	display: flex; align-items: center; justify-content: flex-end;
	gap: 8px; flex: 0 0 auto;
}

.phk-header__action-card {
	display: inline-flex; flex-direction: column; align-items: center;
	justify-content: center; gap: 4px; min-width: auto; padding: 0;
	color: #5a2020; border: 0; background: transparent; box-shadow: none;
}

.phk-header__action-icon {
	position: relative;
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #f2c4c2;
	color: var(--phk-primary);
}

.phk-header__action-label {
	font-size: 0.8rem; font-weight: 700; white-space: nowrap;
	color: #5a2020;
}

.phk-header__count {
	position: absolute; top: -3px; right: -1px;
	min-width: 20px; height: 20px; padding: 0 5px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px;
	background: var(--phk-primary);
	color: #fff; font-size: 0.7rem; font-weight: 800;
}

.phk-header__home-link {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 50%;
	background: rgba(255,255,255,0.24); color: #fff; flex: 0 0 38px;
}

.phk-header__nav { flex: 1; display: flex; justify-content: flex-start; }

.phk-menu-list {
	display: flex; align-items: center; gap: 28px;
	margin: 0; padding: 0; list-style: none;
}

.phk-menu-list > li { position: relative; list-style: none; }

.phk-menu-list a {
	font-size: 1.02rem; font-weight: 700; color: rgba(255,255,255,0.96);
	position: relative; padding: 12px 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.phk-menu-list .current-menu-item > a,
.phk-menu-list a:hover,
.phk-menu-list a.is-active {
	opacity: 1; transform: translateY(-1px);
}

.phk-menu-list > li > a::after {
	content: "";
	position: absolute; left: 0; bottom: 8px;
	width: 100%; height: 2px;
	background: rgba(255,255,255,0.95);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.2s ease;
}

.phk-menu-list > li:hover > a::after,
.phk-menu-list > .current-menu-item > a::after { transform: scaleX(1); }

.phk-menu-list .menu-item-has-children > a { padding-right: 18px; }

.phk-menu-list .menu-item-has-children > a::before {
	content: ""; position: absolute; top: 50%; right: 0;
	width: 8px; height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-65%) rotate(45deg); opacity: 0.88;
}

.phk-menu-list .sub-menu {
	position: absolute; top: calc(100% + 14px); left: 0; z-index: 30;
	min-width: 240px; margin: 0; padding: 10px; list-style: none;
	border-radius: 20px;
	background: rgba(255,255,255,0.98);
	border: 1px solid rgba(220,170,168,0.9);
	box-shadow: 0 18px 36px rgba(200,60,50,0.14);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.phk-menu-list .sub-menu::before {
	content: ""; position: absolute; top: -7px; left: 28px;
	width: 14px; height: 14px;
	background: rgba(255,255,255,0.98);
	border-top: 1px solid rgba(220,170,168,0.9);
	border-left: 1px solid rgba(220,170,168,0.9);
	transform: rotate(45deg);
}

.phk-menu-list .sub-menu li { position: relative; list-style: none; }

.phk-menu-list .sub-menu a {
	display: flex; align-items: center; min-height: 44px;
	padding: 0 14px; border-radius: 14px;
	color: #5f4747; font-size: 0.95rem; font-weight: 700;
}

.phk-menu-list .sub-menu a::after,
.phk-menu-list .sub-menu a::before { display: none; }

.phk-menu-list .sub-menu .current-menu-item > a,
.phk-menu-list .sub-menu a:hover,
.phk-menu-list .sub-menu a:focus-visible {
	background: linear-gradient(135deg, #fff1f0 0%, #ffeae8 100%);
	color: #c92018; transform: none;
}

.phk-menu-list > li:hover > .sub-menu,
.phk-menu-list > li.is-open > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}

.phk-menu-list .sub-menu .sub-menu {
	top: -10px; left: calc(100% + 12px);
}

/* Utility bar */
.phk-header__utility {
	background: var(--phk-accent);
	border-bottom: 1px solid #f0b8b5;
}

.phk-header__inner--utility {
	min-height: 40px; justify-content: space-between; gap: 10px;
}

.phk-header__utility-item {
	display: inline-flex; align-items: center; gap: 6px;
	color: #7a1f1f; font-size: 0.84rem; font-weight: 600;
}

.phk-header__utility-item .material-symbols-outlined { font-size: 1rem; }

.phk-header__quick { display: flex; align-items: center; gap: 10px; }

.phk-header__quick-item {
	display: flex; align-items: center; gap: 10px;
	padding: 7px 10px;
	border: 1px solid #f0c0be; border-radius: 12px; background: #fff;
}

.phk-header__quick-item.is-call { background: #ffe8e5; }
.phk-header__quick-item strong { display: block; font-size: 0.82rem; line-height: 1.1; color: #4a1d1d; }
.phk-header__quick-item span:last-child { font-size: 0.72rem; color: #9a4040; }

/* ══════════════════════════════
   MOBILE DRAWER
══════════════════════════════ */
.phk-mobile-drawer {
	position: fixed; inset: 0; z-index: 130; pointer-events: none;
}

.phk-mobile-drawer__overlay {
	position: absolute; inset: 0; border: 0;
	background: rgba(31,18,18,0.28); backdrop-filter: blur(4px);
	opacity: 0; transition: opacity 0.24s ease;
}

.phk-mobile-nav {
	position: absolute; top: 0; left: 0;
	display: flex; flex-direction: column; gap: 18px;
	width: min(380px, calc(100vw - 36px)); height: 100vh;
	padding: 20px 18px 28px;
	background: #fff;
	border-right: 1px solid #f3c5c2;
	box-shadow: 0 28px 56px rgba(72,20,20,0.18);
	transform: translateX(-104%);
	transition: transform 0.26s ease;
	overflow-y: auto;
}

.phk-mobile-drawer.is-open { pointer-events: auto; }
.phk-mobile-drawer.is-open .phk-mobile-drawer__overlay { opacity: 1; }
.phk-mobile-drawer.is-open .phk-mobile-nav { transform: translateX(0); }

.phk-mobile-nav__header {
	display: flex; align-items: flex-start;
	justify-content: space-between; gap: 14px;
}

.phk-mobile-nav__brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.phk-mobile-nav__brand img {
	width: 56px; height: 56px; border-radius: 16px;
	object-fit: cover; box-shadow: var(--phk-shadow-soft);
}

.phk-mobile-nav__brand strong { display: block; font-size: 1.05rem; line-height: 1.2; color: #241d1d; }
.phk-mobile-nav__brand span { display: block; margin-top: 4px; color: #72677b; font-size: 0.86rem; }

.phk-mobile-nav__close {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border: 0; border-radius: 50%;
	background: #f1eef0; color: #a93020; flex: 0 0 42px;
}

.phk-mobile-nav__search {
	display: flex; align-items: center; gap: 8px; min-height: 50px;
	padding: 4px 4px 4px 14px; border-radius: 999px; background: #fff;
	border: 2px solid rgba(220,170,168,0.86); color: var(--phk-text-soft);
}

.phk-mobile-nav__search input { width: 100%; border: 0; outline: 0; background: transparent; color: #312a2a; }

.phk-menu-list--mobile {
	display: grid; gap: 12px; margin: 0; padding: 0; list-style: none;
}

.phk-menu-list--mobile li { width: 100%; }

.phk-menu-list--mobile a {
	display: flex; align-items: center; min-height: 50px;
	padding: 0 16px; border-radius: 16px;
	background: #fff; border: 1px solid #f2c8c5;
	color: #452020; font-size: 1.02rem; font-weight: 700;
	box-shadow: 0 2px 8px rgba(220,40,25,0.06);
}

.phk-menu-list--mobile > li > a::after,
.phk-menu-list--mobile > li > a::before { display: none !important; content: none !important; }

.phk-menu-list--mobile .current-menu-item > a,
.phk-menu-list--mobile a:hover {
	background: var(--phk-primary); border-color: var(--phk-primary);
	color: #fff; box-shadow: 0 10px 18px rgba(220,39,26,0.24);
}

.phk-menu-list--mobile .menu-item-has-children > a { padding-right: 58px; }
.phk-menu-list--mobile .menu-item-has-children > a::before { display: none; }

.phk-menu-list--mobile .sub-menu {
	display: none; gap: 8px; margin: 10px 0 0; padding: 0 0 0 10px; list-style: none;
}

.phk-menu-list--mobile .menu-item-has-children.is-open > .sub-menu { display: grid; }

.phk-mobile-submenu-toggle {
	position: absolute; top: 50%; right: 10px;
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border: 0; border-radius: 50%;
	background: #fff; border: 1px solid #f3c5c0; color: #d02020;
	transform: translateY(-50%); cursor: pointer;
}

.phk-mobile-submenu-toggle .material-symbols-outlined { font-size: 20px; transition: transform 0.2s ease; }
.phk-menu-list--mobile .menu-item-has-children.is-open > a .phk-mobile-submenu-toggle .material-symbols-outlined { transform: rotate(180deg); }

.phk-menu-list--mobile .sub-menu a {
	min-height: 44px; border-radius: 12px;
	background: #fff8f7; border: 1px solid #f4c5c2;
	color: #5c2a2a; font-size: 0.95rem; font-weight: 600;
}

.phk-menu-list--mobile .sub-menu .current-menu-item > a,
.phk-menu-list--mobile .sub-menu a:hover {
	background: #ffe9e8; border-color: #f8c5c2; color: #c01818;
}

.phk-mobile-nav__actions {
	display: grid; gap: 10px; margin-top: auto; padding-top: 8px;
}

.phk-mobile-nav__action {
	display: flex; align-items: center; gap: 12px; min-height: 50px;
	padding: 0 16px; border-radius: 18px;
	background: #fff; color: #4d2020; font-weight: 600;
	border: 1px solid #f2c5c2;
}

.phk-mobile-nav__action .material-symbols-outlined { color: var(--phk-primary); }

body.phk-menu-open { overflow: hidden; }

/* ══════════════════════════════
   HERO / INTRO
══════════════════════════════ */
.phk-hero { padding: 0 0 36px; }

.phk-hero__image-wrap {
	position: relative;
	border-bottom: 8px solid rgba(220,170,168,0.6);
}

.phk-hero__image-wrap::before,
.phk-hero__image-wrap::after {
	content: ""; position: absolute; inset: auto 0 0;
	height: 18px;
	background-image: radial-gradient(circle at 12px -4px, rgba(255,255,255,0.92) 16px, transparent 17px);
	background-size: 34px 20px; z-index: 2;
}

.phk-hero__image { width: 100%; min-height: 360px; max-height: 680px; object-fit: cover; }

.phk-intro { padding: 42px 0 12px; background: var(--phk-bg); }

.phk-intro blockquote {
	margin: 0 auto; max-width: 780px; text-align: center;
	font-size: clamp(1.75rem, 3vw, 3rem); font-style: italic;
	line-height: 1.2; color: var(--phk-primary);
}

.phk-intro blockquote::after {
	content: ""; display: block; width: 86px; height: 3px;
	margin: 24px auto 0; border-radius: 999px;
	background: linear-gradient(90deg, transparent, var(--phk-accent), transparent);
}

/* ══════════════════════════════
   KAWAII / CATEGORIES
══════════════════════════════ */
.phk-kawaii { padding-top: 40px; padding-bottom: 34px; background: var(--phk-bg); }
.phk-kawaii .phk-section-heading h2 { font-size: clamp(1.8rem, 2.4vw, 2.4rem); color: var(--phk-primary); }

.phk-intro, .phk-kawaii, .phk-products-hot, .phk-products-grid,
.phk-shop-page, .phk-single, .phk-benefits, .phk-page.phk-section,
.phk-cart-page, .phk-checkout-page, .phk-feedback--archive.phk-section {
	background: transparent !important;
}

.home .phk-intro, .home .phk-kawaii, .home .phk-products-hot,
.home .phk-products-grid, .home .phk-products-grid.is-soft,
.home .phk-brand-banner, .home .phk-deposit,
.home .phk-feedback, .home .phk-benefits { background: transparent !important; }

.phk-kawaii-slider-wrap { position: relative; padding: 0 52px; }

.phk-kawaii-card {
	display: flex; flex-direction: column; align-items: center;
	gap: 12px; text-align: center; transition: transform 0.2s ease;
}
.phk-kawaii-card:hover { transform: translateY(-6px); }

.phk-kawaii-card__image {
	display: inline-flex; width: 110px; height: 110px;
	align-items: center; justify-content: center;
	overflow: hidden; border-radius: 50%; padding: 5px;
	background: #fff; border: 3px solid rgba(255,255,255,0.92);
	box-shadow: var(--phk-shadow-soft);
}

.phk-kawaii-card__image img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.phk-kawaii-card__image .material-symbols-outlined { font-size: 34px; color: #b8adc4; }
.phk-kawaii-card__title { font-size: 0.88rem; font-weight: 700; }
.phk-kawaii-card.is-more .phk-kawaii-card__image { background: linear-gradient(180deg, #ffffff, #f2f0f5); color: #b4a9c0; }
.phk-kawaii-swiper { overflow: hidden; padding: 6px 0 2px; }
.phk-kawaii-swiper .swiper-slide { height: auto; }

/* ══════════════════════════════
   PRODUCT CARDS — đa màu badge
══════════════════════════════ */
.phk-products-hot { background: var(--phk-surface-soft); }

.phk-inline-link {
	display: inline-flex; align-items: center; gap: 8px;
	color: var(--phk-primary-dark); font-weight: 700;
}

.phk-hot-swiper { overflow: hidden; position: relative; }
.phk-hot-slider-wrap { position: relative; padding: 0; }
.swiper-slide { height: auto; }

.phk-product-card {
	position: relative; display: flex; flex-direction: column;
	height: 100%; padding: 16px;
	border-radius: 16px; background: #fff;
	border: 1px solid #f0c0be;
	box-shadow: 0 10px 22px rgba(220,40,25,0.09);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phk-product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(220,40,25,0.16);
}

/* Badge màu đỏ chủ đạo, có variant tím/xanh */
.phk-product-badge {
	position: absolute; top: 16px; left: 16px; z-index: 2;
	display: inline-flex; align-items: center;
	padding: 5px 10px; border-radius: 999px;
	background: linear-gradient(90deg, var(--phk-primary), #e85050);
	color: #fff; font-size: 0.66rem; font-weight: 800;
	text-transform: uppercase; letter-spacing: 0.12em;
}

.phk-product-badge.is-new {
	background: linear-gradient(90deg, var(--phk-purple), #9333ea);
}

.phk-product-badge.is-hot {
	background: linear-gradient(90deg, #d97706, #f59e0b);
}

.phk-product-media {
	display: block; overflow: hidden; border-radius: 12px;
	background: linear-gradient(180deg, #fff7f7, #fff); aspect-ratio: 1;
}

.phk-product-media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.4s ease;
}

.phk-product-card:hover .phk-product-media img { transform: scale(1.06); }

.phk-product-body { display: flex; flex: 1; flex-direction: column; padding-top: 14px; }

.phk-product-title { margin: 0; font-size: 1rem; line-height: 1.4; font-weight: 700; }
.phk-product-title a {
	display: -webkit-box; overflow: hidden;
	-webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

.phk-product-price { margin-top: 8px; font-size: 1.15rem; font-weight: 800; color: #e0201a; }
.phk-product-price del { color: #a8a0b0; font-size: 0.9em; }
.phk-product-price ins { text-decoration: none; }

.phk-product-actions {
	display: flex; flex-wrap: nowrap; gap: 10px;
	margin-top: auto; padding-top: 16px;
}

/* ══════════════════════════════
   BUTTONS — đa màu
══════════════════════════════ */
.phk-button {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 6px; min-height: 42px; padding: 0 12px;
	border: 0; border-radius: 999px;
	font-size: 0.76rem; font-weight: 700; white-space: nowrap;
	cursor: pointer; transition: transform 0.2s ease, background 0.2s ease;
}
.phk-button:hover { transform: translateY(-2px); }

/* Đỏ — chính */
.phk-button--primary {
	background: linear-gradient(135deg, var(--phk-primary), #e85050);
	color: #fff;
}

/* Đỏ nhạt — soft */
.phk-button--soft { flex: 1; background: #ffd8d5; color: #8a3030; }

/* Tím — ghost */
.phk-button--ghost { background: var(--phk-purple-soft); color: var(--phk-purple); }

/* Xanh dương */
.phk-button--blue { background: var(--phk-blue-soft); color: var(--phk-blue); }

/* Vàng cam */
.phk-button--amber { background: var(--phk-amber-soft); color: var(--phk-amber); }

/* Xanh lá */
.phk-button--green { background: var(--phk-green-soft); color: var(--phk-green); }

.phk-button--dark { background: #8a6060; color: #fff; }

/* ══════════════════════════════
   SWIPER CONTROLS
══════════════════════════════ */
.phk-swiper-controls { position: absolute; inset: 0; pointer-events: none; z-index: 3; }

.phk-swiper-arrow {
	pointer-events: auto; position: absolute;
	display: inline-flex !important; align-items: center !important; justify-content: center !important;
	top: 50%; transform: translateY(-50%);
	width: 46px; height: 46px; border: 0; border-radius: 50%;
	background: #fff; color: var(--phk-primary-dark);
	box-shadow: var(--phk-shadow-soft); cursor: pointer;
	line-height: 1 !important; padding: 0 !important;
}

.phk-swiper-arrow .material-symbols-outlined {
	display: inline-flex !important; align-items: center !important; justify-content: center !important;
	font-size: 20px !important; line-height: 1 !important;
	width: 20px; height: 20px; transform: translateY(0) !important;
}

.phk-swiper-arrow--prev { left: 8px; }
.phk-swiper-arrow--next { right: 8px; }

.phk-swiper-pagination {
	display: flex; align-items: center; justify-content: center;
	gap: 6px; margin-top: 24px;
}

.phk-swiper-pagination .swiper-pagination-bullet {
	width: 10px; height: 10px; margin: 0 !important;
	background: rgba(232,39,26,0.22); opacity: 1;
}

.phk-swiper-pagination .swiper-pagination-bullet-active {
	width: 28px; border-radius: 999px; background: var(--phk-primary);
}

.phk-swiper-controls,
.phk-swiper-controls--hero { align-items: center; }

/* ══════════════════════════════
   PRODUCTS GRID
══════════════════════════════ */
.phk-products-grid { padding: 56px 0; background: var(--phk-bg); }
.phk-products-grid.is-soft { background: var(--phk-surface-soft); }

.phk-section-heading--collection h2 { font-size: clamp(2rem, 2.9vw, 3rem); }
.phk-section-heading--collection.is-pink h2   { color: #e8271a; }
.phk-section-heading--collection.is-purple h2 { color: var(--phk-purple); }
.phk-section-heading--collection.is-rose h2   { color: #e8271a; }
.phk-section-heading--collection.is-blue h2   { color: var(--phk-blue); }
.phk-section-heading--collection.is-amber h2  { color: var(--phk-amber); }
.phk-section-heading--collection .phk-inline-link { font-size: 0.92rem; }

.phk-products-grid__list {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px;
}

/* ══════════════════════════════
   SHOP PAGE
══════════════════════════════ */
.phk-shop-page { padding-top: 42px; background: var(--phk-bg); }
.phk-shop-hero { margin-bottom: 34px; }
.phk-shop-hero h1 { margin: 0; font-size: clamp(2.2rem, 3.6vw, 4.2rem); line-height: 1.05; letter-spacing: -0.03em; }
.phk-shop-hero p { max-width: 760px; margin: 14px 0 0; color: var(--phk-text-soft); font-size: 1.08rem; }

.phk-shop-layout { display: flex; gap: 28px; align-items: flex-start; }

.phk-shop-sidebar { width: 282px; flex: 0 0 282px; display: grid; gap: 22px; }
.phk-shop-sidebar h3 { margin: 0; display: flex; align-items: center; gap: 8px; font-size: 1.4rem; line-height: 1.1; }

.phk-shop-category-list { display: grid; gap: 10px; }

.phk-shop-category-chip {
	display: flex; align-items: center; gap: 10px;
	padding: 10px 14px; border-radius: 999px;
	background: #f3f0fb; color: #4d4457; font-weight: 600;
	transition: transform 0.2s ease, background 0.2s ease;
}
.phk-shop-category-chip:hover { transform: translateX(2px); background: #f4d8d5; }
.phk-shop-category-chip.is-active { background: #ffd8d5; color: #6d2f2f; }

.phk-shop-category-chip__icon {
	display: inline-flex; width: 26px; height: 26px;
	border-radius: 50%; overflow: hidden; align-items: center;
	justify-content: center; background: #fff;
}
.phk-shop-category-chip__icon img { width: 100%; height: 100%; object-fit: cover; }
.phk-shop-category-chip__icon .material-symbols-outlined { font-size: 16px; color: #8e86a1; }

.phk-shop-offer {
	padding: 16px; border-radius: 24px;
	background: rgba(228,202,253,0.5);
}
.phk-shop-offer__label { margin: 0; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--phk-purple); }
.phk-shop-offer p { margin: 10px 0 0; color: #5b4060; }
.phk-shop-offer__media { margin-top: 12px; border-radius: 14px; overflow: hidden; aspect-ratio: 2.3; }
.phk-shop-offer__media img { width: 100%; height: 100%; object-fit: cover; }

.phk-shop-content { flex: 1; min-width: 0; }

.phk-shop-archive-description {
	margin-top: 22px; margin-bottom: 0;
	padding: 14px 16px; border-radius: 14px;
	background: #fff7f6; border: 1px solid #f5c6c3;
	color: var(--phk-text-soft);
}
.phk-shop-archive-description > *:first-child { margin-top: 0; }
.phk-shop-archive-description > *:last-child { margin-bottom: 0; }

.phk-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.phk-shop-toolbar p { margin: 0; color: var(--phk-text-soft); font-weight: 600; }
.phk-shop-sort select { border: 0; border-radius: 999px; background: #efeff5; padding: 10px 14px; font-weight: 600; color: #40384a; }

.phk-shop-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }

.phk-shop-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 32px; }
.phk-shop-pagination .phk-page-link {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 999px;
	background: #f3f0fb; color: #4d4457; font-weight: 700;
}
.phk-shop-pagination .phk-page-link.is-current { background: #ffd8d5; color: #6d2f2f; }

/* ══════════════════════════════
   SINGLE PRODUCT — đa màu rich
══════════════════════════════ */
.phk-single { padding-top: 0; padding-bottom: 0; background: var(--phk-bg); }
.phk-single .phk-breadcrumbs { margin: 12px 0 16px; }
.phk-single .woocommerce-breadcrumb { margin: 0; font-size: 0.85rem; color: #83758b; }
.phk-single .woocommerce-breadcrumb a { color: #654572; }

.phk-single__top {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: 28px; align-items: start;
}

.phk-single__gallery,
.phk-single__summary {
	padding: 24px; border-radius: 34px;
}

.phk-single__gallery {
	background: rgba(255,255,255,0.96);
	border: 1px solid rgba(220,200,196,0.92);
	border-radius: 30px;
	box-shadow: 0 18px 42px rgba(220,80,70,0.09);
}

.phk-single__hero-image {
	position: relative; overflow: hidden; border-radius: 30px;
	background: linear-gradient(145deg, #e86060 0%, #e84040 36%, #e8271a 100%);
	aspect-ratio: 1;
	box-shadow: 0 18px 40px rgba(220,40,25,0.18);
}

.phk-single__hero-image::after {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(circle at 15% 12%, rgba(255,255,255,0.28) 0 1px, transparent 1px),
		radial-gradient(circle at 85% 16%, rgba(255,255,255,0.45) 0 2px, transparent 2px),
		radial-gradient(circle at 84% 82%, rgba(255,255,255,0.28) 0 2px, transparent 2px),
		radial-gradient(circle at 11% 78%, rgba(255,255,255,0.32) 0 1.5px, transparent 1.5px);
	pointer-events: none;
}

.phk-single__hero-image img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

.phk-single__thumbs-row {
	display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 12px; align-items: center; margin-top: 16px;
}

.phk-single__thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }

.phk-single__thumb-nav {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px;
	border: 1px solid rgba(220,160,158,0.95); border-radius: 999px;
	background: rgba(255,255,255,0.96); color: #e83030;
	box-shadow: 0 10px 24px rgba(220,80,70,0.12);
	cursor: pointer; transition: transform 0.2s ease;
}
.phk-single__thumb-nav:hover { transform: translateY(-1px); }

.phk-single__thumb {
	border: 2px solid transparent; border-radius: 18px;
	background: #fff; box-shadow: 0 10px 26px rgba(220,80,70,0.10);
	cursor: pointer; transition: border-color 0.2s ease, transform 0.2s ease;
}
.phk-single__thumb:hover, .phk-single__thumb.is-active { border-color: #e89090; transform: translateY(-1px); }
.phk-single__thumb img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }

.phk-single__summary {
	background: rgba(255,255,255,0.98);
	border: 1px solid rgba(220,200,196,0.92);
	border-radius: 30px;
	box-shadow: 0 18px 42px rgba(220,80,70,0.09);
	display: flex; flex-direction: column; gap: 16px;
}

.phk-single__summary h1 {
	margin: 0; font-size: clamp(1.6rem, 2.2vw, 2.3rem);
	line-height: 1.14; color: #c02010;
}

/* Badge tím cho category */
.phk-single__badge {
	display: inline-flex; align-self: flex-start;
	padding: 6px 12px; border-radius: 999px;
	background: var(--phk-purple-soft); color: var(--phk-purple);
	font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}

.phk-single__highlights {
	display: grid; gap: 10px; margin: 0; padding: 0 0 16px;
	list-style: none; border-bottom: 1px solid rgba(241,200,198,0.96);
}
.phk-single__highlights li {
	display: flex; align-items: flex-start; gap: 10px;
	font-size: 1rem; font-weight: 600; color: #6c5d65;
}
.phk-single__highlights .material-symbols-outlined { font-size: 18px; color: #e04040; margin-top: 1px; }

.phk-single__price-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

.phk-single__price { font-size: clamp(1.65rem, 2.1vw, 2.15rem); font-weight: 900; color: #e0201a; }
.phk-single__price del { font-size: 0.62em; color: #b19090; }
.phk-single__price ins { text-decoration: none; }

/* Pill giảm giá — màu vàng cam */
.phk-single__discount-pill {
	display: inline-flex; align-items: center;
	padding: 7px 12px; border-radius: 999px;
	background: var(--phk-amber-soft); color: var(--phk-amber);
	font-weight: 800; font-size: 0.95rem;
}

/* Stock pill — màu xanh lá */
.phk-single__stock-pill {
	display: flex; align-items: center; gap: 10px;
	padding: 13px 16px; border-radius: 18px;
	background: linear-gradient(135deg, var(--phk-green-soft), rgba(209,250,229,0.6));
	color: #065f46; font-weight: 700;
}
.phk-single__stock-pill .material-symbols-outlined { font-size: 22px; color: var(--phk-green); }

.phk-single__qty-block { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: -2px; }
.phk-single__qty-label { font-size: 1rem; font-weight: 700; color: #5d5265; }

.phk-single__qty-picker {
	display: inline-grid; grid-template-columns: 42px 58px 42px;
	align-items: center; border-radius: 999px;
	background: #fff3f2; border: 1px solid rgba(220,175,172,0.96); overflow: hidden;
}
.phk-single__qty-picker button {
	display: inline-flex; align-items: center; justify-content: center;
	height: 42px; border: 0; background: transparent; color: #d03030; cursor: pointer;
}
.phk-single__qty-picker input {
	width: 100%; height: 42px; border: 0; background: transparent;
	text-align: center; font-size: 1rem; font-weight: 800; color: #5c4c4c;
}

.phk-single__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

/* CTA đỏ */
.phk-single__cta {
	display: grid; grid-template-columns: 42px minmax(0, 1fr) 18px;
	align-items: center; gap: 10px; min-height: 62px;
	padding: 8px 14px 8px 8px; border-radius: 999px;
	border: 2px solid rgba(220,100,95,0.86);
	background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,233,230,0.96) 100%);
	box-shadow: 0 12px 28px rgba(220,60,50,0.14), inset 0 0 0 3px rgba(255,255,255,0.5);
	color: #c02010; text-decoration: none;
}
.phk-single__cta:hover { transform: translateY(-1px); }

.phk-single__cta-badge {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 999px;
	background: #fff; color: #e03030;
	box-shadow: 0 10px 20px rgba(220,80,70,0.18);
}
.phk-single__cta-badge .material-symbols-outlined { font-size: 20px; }
.phk-single__cta-text { font-size: clamp(0.98rem, 1.35vw, 1.16rem); font-weight: 900; letter-spacing: -0.03em; }
.phk-single__cta-tail { font-size: 16px; color: #e03030; }
.phk-single__cta--buy { background: linear-gradient(180deg, rgba(255,250,250,0.98) 0%, rgba(255,225,222,0.98) 100%); }

/* Order info — màu xanh dương */
.phk-single__order-info {
	display: grid; gap: 10px; padding: 14px 16px; border-radius: 18px;
	background: linear-gradient(135deg, var(--phk-blue-soft), rgba(219,234,254,0.6));
	border: 1px solid rgba(37,99,235,0.2);
}
.phk-single__order-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: #1e3a5f; }
.phk-single__order-item .material-symbols-outlined {
	display: inline-flex; align-items: center; justify-content: center;
	width: 28px; height: 28px; border-radius: 999px;
	background: #fff; font-size: 16px; color: var(--phk-blue);
	box-shadow: 0 8px 16px rgba(37,99,235,0.12);
}

/* Accordions */
.phk-single__accordions { display: grid; gap: 12px; }

.phk-single__accordion {
	border: 1px solid rgba(220,190,188,0.96); border-radius: 22px;
	background: linear-gradient(135deg, rgba(255,247,246,0.96) 0%, rgba(255,240,239,0.98) 100%);
	overflow: hidden;
}

.phk-single__accordion-summary {
	display: flex; align-items: center; gap: 12px;
	padding: 16px 18px; cursor: pointer; list-style: none;
	font-size: 1rem; font-weight: 700; color: #6a5a58;
}
.phk-single__accordion-summary::-webkit-details-marker { display: none; }

.phk-single__accordion-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; border-radius: 999px;
	background: #fff; font-size: 18px; color: #e02020;
	box-shadow: 0 8px 16px rgba(220,80,70,0.10); flex: 0 0 34px;
}
.phk-single__accordion-title { flex: 1 1 auto; min-width: 0; }
.phk-single__accordion-arrow { font-size: 22px; color: #a87870; transition: transform 0.22s ease; }
.phk-single__accordion[open] .phk-single__accordion-arrow { transform: rotate(180deg); }

.phk-single__accordion-content { padding: 0 18px 18px; color: #625860; }
.phk-single__accordion-content p { margin: 0; font-size: 0.94rem; line-height: 1.6; }

.phk-single__accordion-richtext > *:first-child { margin-top: 0; }
.phk-single__accordion-richtext > *:last-child { margin-bottom: 0; }

.phk-single__accordion-richtext ul { margin-bottom: 0; padding-left: 0; list-style: none; }
.phk-single__accordion-richtext li { position: relative; padding-left: 24px; font-size: 0.94rem; line-height: 1.65; }
.phk-single__accordion-richtext li + li { margin-top: 8px; }
.phk-single__accordion-richtext li::before {
	content: ""; position: absolute; top: 0.62em; left: 0;
	width: 10px; height: 10px; border-radius: 999px;
	background: linear-gradient(135deg, #e86060 0%, #e82020 100%);
	box-shadow: 0 0 0 4px rgba(220,80,70,0.12);
}
.phk-single__accordion-note { margin-bottom: 12px !important; font-weight: 600; color: #745a58; }

.phk-single__deposit {
	padding: 18px; border-radius: 24px;
	background: rgba(255,247,246,0.92);
	border: 1px solid rgba(220,190,188,0.95); box-shadow: none;
}
.phk-single__deposit h2 { font-size: 1rem; color: #765868; }
.phk-single__deposit table { font-size: 0.86rem; width: 100%; border-collapse: collapse; }
.phk-single__deposit th, .phk-single__deposit td { padding: 10px 8px; border-bottom: 1px solid #ebe6f2; text-align: left; }
.phk-single__deposit th:last-child, .phk-single__deposit td:last-child { text-align: right; }
.phk-single__accordion .phk-single__deposit { padding: 16px; border-radius: 20px; background: rgba(255,255,255,0.94); }

.phk-single__specs { margin-top: 24px; display: grid; gap: 10px; }
.phk-single__spec-heading, .phk-single__section-heading { font-size: clamp(1.35rem, 2.2vw, 2rem); color: #a02030; }

.phk-single__spec-table-wrap { overflow: hidden; border-radius: 18px; background: #fff; box-shadow: var(--phk-shadow-soft); }
.phk-single__spec-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; color: #5f566a; }
.phk-single__spec-table th, .phk-single__spec-table td { padding: 12px 14px; border-bottom: 1px solid #eee7f4; vertical-align: top; text-align: left; }
.phk-single__spec-table tr:last-child th, .phk-single__spec-table tr:last-child td { border-bottom: 0; }
.phk-single__spec-table th { width: 34%; font-size: 0.83rem; font-weight: 700; color: #7a7085; background: rgba(244,241,249,0.72); }
.phk-single__spec-table td { font-size: 0.88rem; font-weight: 600; color: #433a4b; }

.phk-single__description { margin-top: 34px; text-align: left; }
.phk-single__description-copy { max-width: 900px; }
.phk-single__description-content { color: #5f566a; font-size: 1.02rem; line-height: 1.8; }
.phk-single__description-content > *:first-child { margin-top: 0; }

.phk-single__related { margin-top: 34px; }
.phk-single__related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.phk-single__sticky-actions {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
	padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
	background: rgba(255,255,255,0.96);
	box-shadow: 0 -18px 40px rgba(120,35,30,0.10);
	backdrop-filter: blur(14px);
	border-top: 1px solid rgba(220,170,168,0.7);
}

.phk-single__sticky-actions-inner {
	display: flex; align-items: center; justify-content: center;
	flex-wrap: nowrap; gap: 8px;
	width: var(--phk-container); margin: 0 auto;
}

.phk-single__sticky-actions .phk-single__cta {
	min-height: 52px; grid-template-columns: 36px minmax(0, 1fr);
	padding: 7px 12px 7px 8px;
}
.phk-single__sticky-actions .phk-single__cta-badge { width: 32px; height: 32px; }
.phk-single__sticky-actions .phk-single__cta-badge .material-symbols-outlined { font-size: 18px; }
.phk-single__sticky-actions .phk-single__cta-text { font-size: 0.86rem; }
.phk-single__sticky-actions .phk-single__cta-tail { display: none; }

.phk-single__notice-list { display: grid; gap: 10px; }
.phk-single__notice-item { display: inline-flex; align-items: center; gap: 8px; color: #5f556c; font-weight: 600; }
.phk-single__notice-item .material-symbols-outlined { font-size: 18px; color: var(--phk-primary-dark); }

.phk-single__meta { display: grid; gap: 8px; padding-top: 10px; }

/* Feature list */
.phk-single__features {
	margin-top: 24px; padding: 20px; border-radius: 20px;
	background: linear-gradient(180deg, #fff7f6 0%, #fff 100%);
	border: 1px solid #f7c2c0;
}
.phk-single__features-heading { margin: 0 0 14px; font-size: 1.1rem; font-weight: 800; color: #2f1618; }
.phk-single__features-list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.phk-single__features-list li {
	display: flex; align-items: center; gap: 10px; min-height: 44px;
	padding: 10px 12px; border-radius: 12px; background: #fff;
	border: 1px solid #f8dedc; color: #4a2020; font-weight: 600; font-size: 0.95rem;
}
.phk-single__features-list .material-symbols-outlined {
	flex: 0 0 30px; width: 30px; height: 30px; border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center;
	background: #ffe8e5; color: #e02020; font-size: 19px;
}
.phk-single__features-note {
	margin: 14px 0 0; padding: 12px 14px; border-radius: 12px;
	background: #fff; border-left: 4px solid #e02020;
	color: #5e2020; font-size: 0.92rem; line-height: 1.6;
}

/* ══════════════════════════════
   BRAND BANNER / DEPOSIT
══════════════════════════════ */
.phk-brand-banner__card { overflow: hidden; border-radius: 28px; background: #fff; box-shadow: var(--phk-shadow); }
.phk-brand-banner__image { display: block; width: 100%; height: auto; object-fit: cover; }

.phk-deposit { background: var(--phk-surface-high); }
.phk-deposit__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; max-width: 980px; margin: 0 auto; }
.phk-deposit-card {
	padding: 30px 24px; text-align: center; border-radius: 24px;
	background: #fff; box-shadow: var(--phk-shadow-soft);
	border-top: 4px solid #f0c3c0;
}
.phk-deposit-card.is-featured { transform: scale(1.05); border-top-color: var(--phk-primary); }
.phk-deposit-card__title { margin: 0; color: var(--phk-text-soft); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.phk-deposit-card h3 { margin: 18px 0 8px; color: var(--phk-primary); font-size: clamp(1.6rem, 2vw, 2.4rem); line-height: 1; }
.phk-deposit-card p:last-child { margin: 0; color: #a7a2b1; }

/* ══════════════════════════════
   FEEDBACK — nền đỏ nhạt + card trắng
══════════════════════════════ */
.phk-feedback {
	padding: 58px 0;
	background: linear-gradient(180deg, #ffd8d5 0%, #ffc8c5 100%);
}
.phk-feedback .phk-section-heading h2 { color: #1f1818; }
.phk-feedback .phk-section-heading p { color: #6e6060; }

.phk-feedback__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.phk-feedback-card {
	padding: 22px; border-radius: 22px;
	background: rgba(255,255,255,0.98);
	border: 1px solid #f1c5c2;
	box-shadow: 0 10px 24px rgba(132,40,35,0.08);
}
.phk-feedback-card:nth-child(2) { transform: none; }

.phk-feedback-card__stars { display: flex; gap: 4px; color: #ffca38; }
.phk-feedback-card__stars .is-filled { font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24; }
.phk-feedback-card__content { margin-top: 14px; color: #5b5263; font-size: 0.98rem; }
.phk-feedback-card__content p { margin: 0; }

.phk-feedback-card__author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(136,116,147,0.10); }
.phk-feedback-card__avatar { width: 52px; height: 52px; flex: 0 0 52px; overflow: hidden; border-radius: 50%; }
.phk-feedback-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.phk-feedback-card__author h3 { margin: 0; font-size: 1rem; font-weight: 700; }
.phk-feedback-card__author p { margin: 4px 0 0; color: #968ca0; font-size: 0.86rem; }

.phk-feedback__grid--archive .phk-feedback-card:nth-child(2) { transform: none; }

/* Feedback slider */
.phk-feedback.phk-section, .home .phk-feedback { background: transparent !important; }
.phk-feedback__carousel-wrap { overflow: visible; }
.phk-feedback-swiper { overflow: hidden; height: auto !important; }
.phk-feedback-swiper .swiper-wrapper { align-items: stretch; }
.phk-feedback-swiper .swiper-slide { height: auto; }
.phk-feedback-swiper .phk-feedback-card { height: 100%; box-sizing: border-box; }
.phk-feedback__carousel-wrap .phk-swiper-controls { position: absolute; inset: auto 0 10px; height: 0; pointer-events: none; z-index: 3; }
.phk-feedback__carousel-wrap .phk-swiper-arrow { pointer-events: auto; width: 40px; height: 40px; background: #fff; border: 1px solid #f4b5b2; box-shadow: 0 6px 16px rgba(210,40,30,0.10); }
.phk-feedback__carousel-wrap .phk-swiper-arrow--prev { left: -18px; }
.phk-feedback__carousel-wrap .phk-swiper-arrow--next { right: -18px; }
.phk-feedback__carousel-wrap .phk-swiper-pagination { margin-top: 14px; text-align: center; }
.phk-feedback__carousel-wrap .phk-swiper-arrow { border: 1px solid #f4b5b2; color: #d02020; }

/* ══════════════════════════════
   BENEFITS — icon đa màu
══════════════════════════════ */
.phk-benefits {
	padding: 36px 0;
	border-top: 1px solid rgba(220,170,168,0.7);
	border-bottom: 1px solid rgba(220,170,168,0.7);
	background: #fff;
}
.home .phk-benefits { padding: 32px 0 12px; border: 0; }
.home .phk-benefits .phk-container {
	padding: 26px 30px; border-radius: 34px;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 18px 42px rgba(220,80,70,0.10);
	border: 1px solid rgba(220,200,198,0.9);
}

.phk-benefits__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.phk-benefit-card { display: flex; align-items: center; gap: 16px; padding: 0; background: transparent; box-shadow: none; }

/* Đỏ, tím, xanh dương */
.phk-benefit-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #ffe5e2; color: #e8271a; }
.phk-benefit-card:nth-child(2) .phk-benefit-card__icon { background: var(--phk-purple-soft); color: var(--phk-purple); }
.phk-benefit-card:nth-child(3) .phk-benefit-card__icon { background: var(--phk-blue-soft); color: var(--phk-blue); }
.phk-benefit-card h3 { margin: 0; font-size: 1rem; font-weight: 700; }
.phk-benefit-card p { margin: 4px 0 0; color: var(--phk-text-soft); font-size: 0.9rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.phk-footer {
	margin-top: 72px; background: transparent;
	border-top: 1px solid rgba(220,170,168,0.7);
}
.phk-footer__grid {
	width: min(1240px, calc(100% - 32px)) !important;
	max-width: min(1240px, calc(100% - 32px));
	margin: 0 auto; padding: 56px 0 40px;
	display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr); gap: 36px;
}
.phk-footer__column h2 { margin: 0 0 16px; font-size: 1.2rem; font-weight: 700; color: var(--phk-primary-dark); }
.phk-footer__column p { margin: 0; color: var(--phk-text-soft); }

.phk-footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.phk-footer__socials a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 50%;
	background: #ffe6e3; color: var(--phk-primary-dark);
}
.phk-social-icon { width: 20px; height: 20px; display: block; }

.phk-footer__links, .phk-footer__contact {
	display: grid; gap: 12px; padding: 0; margin: 0; list-style: none;
}
.phk-footer__links a, .phk-footer__contact li { color: var(--phk-text-soft); }
.phk-footer__contact li { display: flex; align-items: flex-start; gap: 12px; }
.phk-footer__contact .material-symbols-outlined { color: var(--phk-primary); }

.phk-footer__copyright {
	padding: 18px 16px 26px; text-align: center;
	font-size: 0.84rem; color: #aa9eac;
	border-top: 1px solid rgba(220,170,165,0.55);
}

.phk-footer__column, .phk-footer__links, .phk-footer__contact,
.phk-footer__contact li, .phk-footer__copyright {
	min-width: 0; overflow-wrap: anywhere; word-break: break-word;
}

/* ══════════════════════════════
   FLOATING / TOAST
══════════════════════════════ */
.phk-floating-actions { position: fixed; right: 18px; bottom: 24px; z-index: 120; display: flex; flex-direction: column; gap: 10px; }
.phk-floating-actions__button { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; box-shadow: var(--phk-shadow); }
.phk-floating-actions__button .material-symbols-outlined { font-size: 24px; }
.phk-floating-actions__button.is-phone { background: #fff; color: var(--phk-primary); }
.phk-floating-actions__button.is-zalo { background: linear-gradient(135deg, #4d9dff, #3378f6); color: #fff; }
body.single-product .phk-floating-actions { bottom: 132px; }

.phk-toast-stack { position: fixed; top: 88px; right: 20px; z-index: 160; display: grid; gap: 10px; width: min(320px, calc(100vw - 40px)); pointer-events: none; }
.phk-toast {
	display: grid; gap: 4px; padding: 14px 16px; border-radius: 18px;
	background: rgba(255,255,255,0.96); box-shadow: var(--phk-shadow-soft);
	border: 1px solid rgba(232,39,26,0.12); color: var(--phk-text);
	opacity: 0; transform: translateY(-8px);
	transition: opacity 0.22s ease, transform 0.22s ease;
}
.phk-toast.is-visible { opacity: 1; transform: translateY(0); }
.phk-toast strong { font-size: 0.92rem; color: #8a3030; }
.phk-toast span { font-size: 0.88rem; color: #5f566a; }

.phk-empty-state, .phk-fallback {
	padding: 40px 24px; border-radius: 28px; background: rgba(255,255,255,0.92);
	box-shadow: var(--phk-shadow-soft); text-align: center; color: var(--phk-text-soft);
}
.phk-fallback { width: var(--phk-container); margin: 60px auto; }

/* ══════════════════════════════
   PAGE / ACCOUNT
══════════════════════════════ */
.phk-page__container { width: min(1320px, calc(100% - 48px)); max-width: none; }
.phk-page-hero { display: grid; gap: 4px; margin: 22px 0 34px; }
.phk-page-hero h1 { margin: 0; font-size: clamp(2.2rem, 3vw, 4rem); line-height: 1.05; letter-spacing: -0.03em; }

.phk-breadcrumbs { font-size: 0.88rem; color: #8a7d91; margin-bottom: 10px; }
.phk-breadcrumbs .rank-math-breadcrumb p, .phk-breadcrumbs .woocommerce-breadcrumb, .phk-breadcrumbs .phk-breadcrumbs__fallback { margin: 0; }
.phk-breadcrumbs a { color: #6a4050; }
.phk-breadcrumbs .separator { display: inline-block; margin: 0 8px; color: #a591b2; }

.phk-page__header { margin-bottom: 0; }
.phk-page__header h1 { margin: 0; font-size: clamp(2.1rem, 3vw, 3.4rem); line-height: 1.08; letter-spacing: -0.03em; }
.phk-page__lead, .phk-page__content { color: #5f566a; font-size: 1rem; }
.phk-page__content { padding: 28px 30px; border-radius: 26px; background: rgba(255,255,255,0.92); box-shadow: var(--phk-shadow-soft); }
.phk-page__content > *:first-child { margin-top: 0; }

body:not(.home) .phk-shop-sidebar,
body:not(.home) .phk-shop-content,
body:not(.home) .phk-single__gallery,
body:not(.home) .phk-single__summary,
body:not(.home) .phk-single__description,
body:not(.home) .phk-single__related,
body:not(.home) .phk-page__content,
body:not(.home) .phk-post-single__content,
body:not(.home) .phk-empty-state,
body:not(.home) .phk-account-nav,
body:not(.home) .phk-account-panel,
body:not(.home) .phk-auth-card,
body:not(.home) .phk-auth-shell__intro {
	background: rgba(255,255,255,0.94);
	border: 1px solid rgba(220,200,196,0.92);
	border-radius: 30px;
	box-shadow: 0 18px 42px rgba(220,80,70,0.09);
	backdrop-filter: blur(6px);
}

body:not(.home) .phk-shop-sidebar { padding: 22px 20px; }
body:not(.home) .phk-shop-content { padding: 24px; }
body:not(.home) .phk-single__gallery, body:not(.home) .phk-single__summary { padding: 22px; }
body:not(.home) .phk-single__description, body:not(.home) .phk-single__related, body:not(.home) .phk-page__content, body:not(.home) .phk-post-single__content { padding: 26px 28px; }
body:not(.home) .phk-single__description, body:not(.home) .phk-single__related { margin-top: 28px; }
body:not(.home) .phk-page__content > *:first-child, body:not(.home) .phk-post-single__content > *:first-child { margin-top: 0; }

/* Account */
.phk-account-layout { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: 26px; align-items: start; }
.phk-account-nav, .phk-account-panel, .phk-auth-card, .phk-auth-shell__intro {
	border-radius: 30px; background: rgba(255,255,255,0.94);
	box-shadow: 0 20px 48px rgba(183,60,55,0.09);
}
.phk-account-nav { padding: 24px; position: sticky; top: 110px; }
.phk-account-nav__intro h2 { margin: 10px 0 0; font-size: clamp(1.45rem, 1.8vw, 1.8rem); line-height: 1.08; color: #221d29; }
.phk-account-nav__intro p { margin: 10px 0 0; color: #6d6275; font-size: 0.92rem; line-height: 1.65; }

.phk-account-nav__eyebrow, .phk-account-dashboard__eyebrow, .phk-auth-shell__eyebrow {
	display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px;
	background: #ffe0de; color: #8e3030;
	font-size: 0.76rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
}

.phk-account-nav__list { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.phk-account-nav__link {
	display: flex; align-items: center; gap: 12px; min-height: 52px;
	padding: 0 16px; border-radius: 18px;
	background: var(--phk-purple-soft); color: #544d63; font-weight: 600;
}
.phk-account-nav__link .material-symbols-outlined { font-size: 20px; color: var(--phk-purple); }
.phk-account-nav li.is-active .phk-account-nav__link, .phk-account-nav__link:hover {
	background: linear-gradient(135deg, #ffd8d5 0%, var(--phk-purple-soft) 100%);
	color: #2c2630;
}
.phk-account-panel { padding: 28px; min-width: 0; }

.phk-account-dashboard { display: grid; gap: 24px; }
.phk-account-dashboard__hero {
	display: flex; align-items: flex-start; justify-content: space-between;
	gap: 18px; padding: 24px 26px; border-radius: 26px;
	background: linear-gradient(135deg, rgba(255,225,222,0.92) 0%, var(--phk-purple-soft) 100%);
}
.phk-account-dashboard__hero h2 { margin: 12px 0 0; font-size: clamp(1.7rem, 2.1vw, 2.3rem); line-height: 1.05; color: #221d29; }
.phk-account-dashboard__hero p { max-width: 700px; margin: 10px 0 0; color: #655b6e; font-size: 0.98rem; line-height: 1.65; }

.phk-account-dashboard__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.phk-account-dashboard__card { display: grid; gap: 10px; padding: 22px; border-radius: 24px; background: #fff7f6; border: 1px solid rgba(235,205,202,0.92); color: #2a2331; }
.phk-account-dashboard__card .material-symbols-outlined { font-size: 28px; color: #e0281c; }
.phk-account-dashboard__card h3 { margin: 0; font-size: 1.08rem; }
.phk-account-dashboard__card p { margin: 0; color: #6d6275; font-size: 0.9rem; line-height: 1.6; }

.phk-auth-shell { display: grid; gap: 22px; }
.phk-auth-shell__intro {
	padding: 24px 28px;
	background: linear-gradient(135deg, rgba(255,229,226,0.95) 0%, var(--phk-purple-soft) 100%);
}
.phk-auth-shell__intro h2 { margin: 12px 0 0; font-size: clamp(1.9rem, 2.3vw, 2.5rem); line-height: 1.05; color: #221d29; }
.phk-auth-shell__intro p { margin: 12px 0 0; max-width: 760px; color: #655b6e; line-height: 1.7; }

.phk-auth-grid { display: grid; gap: 22px; }
.phk-auth-grid.is-two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.phk-auth-card { padding: 26px; }
.phk-auth-card--secondary { background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(250,246,255,0.98) 100%); }
.phk-auth-card__header h3 { margin: 0; font-size: 1.45rem; color: #221d29; }
.phk-auth-card__header p, .phk-auth-card__note { margin: 10px 0 0; color: #6d6275; font-size: 0.94rem; line-height: 1.65; }
.phk-auth-card .woocommerce-form { margin-top: 22px; }
.phk-auth-card .form-row, .woocommerce-account .woocommerce-form-row { margin-bottom: 16px; }

.phk-auth-card label, .woocommerce-account .woocommerce-form label,
.woocommerce-account .woocommerce-form-row label, .woocommerce-account fieldset legend {
	display: block; margin-bottom: 8px; color: #403645; font-size: 0.9rem; font-weight: 700;
}

.phk-auth-card input[type="text"], .phk-auth-card input[type="email"], .phk-auth-card input[type="password"],
.woocommerce-account .woocommerce-Input, .woocommerce-account input[type="text"],
.woocommerce-account input[type="email"], .woocommerce-account input[type="password"],
.woocommerce-account input[type="tel"], .woocommerce-account select, .woocommerce-account textarea {
	width: 100%; min-height: 50px; padding: 0 16px; border: 0;
	border-radius: 18px; background: #eef0f7; box-shadow: none;
	color: #423745; font-size: 0.94rem;
}
.woocommerce-account textarea { min-height: 120px; padding: 14px 16px; border-radius: 22px; }

.phk-auth-card__actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.phk-auth-card__actions .woocommerce-form__label { display: inline-flex; align-items: center; gap: 8px; margin: 0; font-size: 0.9rem; font-weight: 600; color: #5c5363; }
.phk-auth-card__link { color: var(--phk-purple); font-weight: 700; }

.woocommerce-account .phk-button, .woocommerce-account .button,
.woocommerce-account button.button, .woocommerce-account .woocommerce-Button {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 46px; padding: 0 22px; border: 0; border-radius: 999px;
	background: linear-gradient(135deg, var(--phk-primary) 0%, #e85050 100%);
	color: #fff; font-weight: 700;
	box-shadow: 0 16px 28px rgba(220,40,25,0.16);
}
.woocommerce-account .phk-button--ghost { background: var(--phk-purple-soft); color: var(--phk-purple); box-shadow: none; }

.woocommerce-account .woocommerce-notices-wrapper { display: grid; gap: 12px; margin-bottom: 18px; }
.woocommerce-account .woocommerce-message, .woocommerce-account .woocommerce-info, .woocommerce-account .woocommerce-error {
	margin: 0; padding: 16px 18px; border: 0; border-radius: 18px;
	background: rgba(255,255,255,0.96); box-shadow: 0 12px 26px rgba(183,60,55,0.08);
}
.woocommerce-account .woocommerce-message { color: #2e6c54; background: #effbf5; }
.woocommerce-account .woocommerce-error { color: #b5384d; background: #fff2f4; }

.woocommerce-account table.shop_table, .woocommerce-account .addresses, .woocommerce-account .woocommerce-Addresses {
	width: 100%; border: 0; border-radius: 24px; background: #fff; overflow: hidden;
	box-shadow: 0 18px 36px rgba(183,60,55,0.07);
}
.woocommerce-account table.shop_table th, .woocommerce-account table.shop_table td {
	padding: 16px 18px; border-color: rgba(188,165,165,0.24); font-size: 0.94rem;
}
.woocommerce-account .woocommerce-orders-table__cell-order-actions .button, .woocommerce-account .woocommerce-MyAccount-content .button { margin-right: 8px; margin-bottom: 8px; }
.woocommerce-account fieldset { margin-top: 18px; padding: 20px; border: 1px solid rgba(207,188,188,0.72); border-radius: 22px; }
.woocommerce-account .col2-set { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.woocommerce-account .addresses .woocommerce-Address, .woocommerce-account .woocommerce-Addresses .woocommerce-Address { padding: 22px; }
.woocommerce-account .addresses address, .woocommerce-account .woocommerce-Addresses address { font-style: normal; line-height: 1.7; color: #5f566a; }
.woocommerce-account .lost_password { margin: 12px 0 0; }
.woocommerce-account .woocommerce::after, .woocommerce-account .woocommerce-MyAccount-content::after, .woocommerce-account .col2-set::after { content: ""; display: block; clear: both; }
.woocommerce-account .woocommerce-form-login, .woocommerce-account .woocommerce-form-register, .woocommerce-account .woocommerce-form-edit-account, .woocommerce-account .woocommerce-address-fields { margin: 0; width: 100%; }
.phk-account-panel > :first-child { margin-top: 0; }

/* ══════════════════════════════
   BLOG
══════════════════════════════ */
.phk-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.phk-post-card { display: flex; flex-direction: column; border-radius: 24px; overflow: hidden; background: #fff; box-shadow: var(--phk-shadow-soft); }
.phk-post-card__media { display: flex; align-items: center; justify-content: center; aspect-ratio: 1.2; background: #f5f3fb; color: #a190b1; }
.phk-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.phk-post-card__body { padding: 20px; }
.phk-post-card__meta { margin: 0 0 8px; font-size: 0.84rem; color: #9b90a8; }
.phk-post-card__body h2 { margin: 0; font-size: 1.15rem; line-height: 1.35; }
.phk-post-card__excerpt { margin-top: 12px; color: #5f566a; }
.phk-post-single { display: grid; gap: 18px; }
.phk-post-single__media { overflow: hidden; border-radius: 26px; background: #f5f3fb; box-shadow: var(--phk-shadow-soft); }
.phk-post-single__media img { display: block; width: 100%; height: auto; object-fit: cover; }
.phk-post-single__content { padding: 24px 28px; border-radius: 24px; background: rgba(255,255,255,0.92); box-shadow: var(--phk-shadow-soft); }
.phk-post-single__content > *:first-child { margin-top: 0; }

/* ══════════════════════════════
   CART — đa màu
══════════════════════════════ */
.phk-cart-page { background: var(--phk-bg); }
.phk-cart-page .phk-container { width: min(1320px, calc(100% - 48px)); }
.phk-cart-form { display: block; }
.phk-cart-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.68fr); gap: 28px; align-items: start; }
.phk-cart-main { display: grid; gap: 18px; }
.phk-cart-list { display: grid; gap: 18px; }

.phk-cart-item {
	display: grid; grid-template-columns: 92px minmax(0, 1fr) auto;
	gap: 12px; padding: 14px 16px; border-radius: 24px;
	background: rgba(255,255,255,0.96);
	box-shadow: 0 20px 48px rgba(183,60,55,0.10); align-items: center;
}
.phk-cart-item__media { overflow: hidden; border-radius: 18px; aspect-ratio: 1; background: linear-gradient(180deg, #fff7f6 0%, #f6edef 100%); }
.phk-cart-item__media img { width: 100%; height: 100%; object-fit: cover; }
.phk-cart-item__content { min-width: 0; }
.phk-cart-item__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.phk-cart-item__title { margin: 0; font-size: clamp(0.88rem, 0.96vw, 1rem); line-height: 1.3; }
.phk-cart-item__title a { color: inherit; }
.phk-cart-item__meta { margin-top: 4px; color: #5f566a; font-size: 0.78rem; }
.phk-cart-item__meta dl { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
.phk-cart-item__meta dt, .phk-cart-item__meta dd { margin: 0; }
.phk-cart-item__footer { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.phk-cart-item__qty { display: inline-flex; align-items: center; gap: 8px; padding: 2px 8px; min-height: 36px; border-radius: 999px; background: var(--phk-purple-soft); }
.phk-cart-item__qty button { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; padding: 0; border: 0; background: transparent; color: var(--phk-purple); cursor: pointer; }
.phk-cart-item__qty input { width: 32px; padding: 0; border: 0; background: transparent; text-align: center; font-size: 0.8rem; font-weight: 700; color: #7a3040; -moz-appearance: textfield; }
.phk-cart-item__qty input::-webkit-outer-spin-button, .phk-cart-item__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.phk-cart-item__remove { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: #eef0f7; color: #c0c7d5; flex: 0 0 30px; }
.phk-cart-item__price { font-size: clamp(0.94rem, 1vw, 1.06rem); font-weight: 900; color: #e0201a; white-space: nowrap; }

.phk-cart-note { display: none !important; }

.phk-cart-summary {
	padding: 26px; position: sticky; top: 112px; border-radius: 36px;
	background: #fff !important;
	box-shadow: 0 20px 48px rgba(183,60,55,0.10);
}
.phk-cart-summary h2 { margin: 0; font-size: clamp(1.45rem, 1.7vw, 1.95rem); line-height: 1.04; color: var(--phk-primary-dark); }
.phk-cart-summary__rows { display: grid; gap: 16px; margin-top: 28px; }
.phk-cart-summary__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #433a47; font-size: 0.96rem; }
.phk-cart-summary__row strong { font-size: 0.98rem; font-weight: 700; }
.phk-cart-summary__divider { height: 1px; margin: 18px 0; background: rgba(172,160,182,0.26); }

.phk-cart-coupon label { display: block; margin-bottom: 12px; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--phk-amber); }
.phk-cart-coupon__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.phk-cart-coupon__form input { min-height: 48px; padding: 0 18px; border: 0; border-radius: 999px; background: rgba(255,255,255,0.92); font-size: 0.95rem; }
.phk-cart-coupon__form .phk-button { min-height: 48px; padding-inline: 22px; }

.phk-cart-summary__total { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 28px; color: #433a47; font-size: 1rem; }
.phk-cart-summary__total strong { font-size: clamp(1.8rem, 2.2vw, 2.5rem); line-height: 1; color: #e0201a; }
.phk-cart-summary__checkout { width: 100%; margin-top: 24px; min-height: 58px; font-size: 0.94rem; }
.phk-cart-summary__note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; color: #433a47; font-size: 0.92rem; }

.phk-cart-empty { padding: 64px 40px; border-radius: 36px; background: rgba(255,255,255,0.95); box-shadow: 0 20px 48px rgba(183,60,55,0.10); text-align: center; }
.phk-cart-empty__icon { display: inline-flex; align-items: center; justify-content: center; width: 88px; height: 88px; margin-bottom: 18px; border-radius: 50%; background: linear-gradient(135deg, #ffe1de, var(--phk-purple-soft)); color: #8a3030; }
.phk-cart-empty h2 { margin: 0; font-size: clamp(1.6rem, 2.1vw, 2.1rem); color: var(--phk-primary-dark); }
.phk-cart-empty p { max-width: 620px; margin: 12px auto 0; color: #675b73; font-size: 0.96rem; }
.phk-cart-empty .phk-empty-state__actions { margin-top: 26px; justify-content: center; }
.phk-cart-empty .phk-empty-state__actions .phk-button { flex: 0 0 auto; width: auto; min-width: 0; padding-inline: 24px; }

.phk-product-actions .added_to_cart.wc-forward, .phk-single__actions .added_to_cart.wc-forward,
.phk-single__sticky-actions .added_to_cart.wc-forward, .added_to_cart.wc-forward { display: none !important; }

/* ══════════════════════════════
   CHECKOUT — đa màu icon
══════════════════════════════ */
.phk-checkout-page { background: var(--phk-bg); padding-top: 0; }
.phk-checkout-layout { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(340px, 0.88fr); gap: 24px; align-items: start; }
.phk-checkout-main { display: grid; gap: 18px; min-width: 0; }
.phk-checkout-summary { position: sticky; top: 110px; align-self: start; min-width: 0; }
.phk-checkout-card { padding: 24px; border-radius: 28px; background: #fff; box-shadow: 0 20px 48px rgba(183,60,55,0.09); }
.phk-checkout-card--summary, .phk-checkout-summary .phk-checkout-card { background: #fff !important; }
.phk-checkout-card__heading { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.phk-checkout-card__heading h2 { margin: 0; font-size: clamp(1.2rem, 1.45vw, 1.62rem); line-height: 1.1; color: #7a3040; }

/* Icon đỏ */
.phk-checkout-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #ffd8d5; color: var(--phk-primary); font-size: 20px; }
/* Icon tím */
.phk-checkout-card__icon--purple { background: var(--phk-purple-soft); color: var(--phk-purple); }
/* Icon xanh */
.phk-checkout-card__icon--blue { background: var(--phk-blue-soft); color: var(--phk-blue); }
/* Icon vàng */
.phk-checkout-card__icon--amber { background: var(--phk-amber-soft); color: var(--phk-amber); }

.phk-checkout-card--summary { position: static; }
.phk-checkout .woocommerce-billing-fields, .phk-checkout .woocommerce-additional-fields { margin: 0; }
.phk-checkout .woocommerce-billing-fields__field-wrapper, .phk-checkout .woocommerce-additional-fields__field-wrapper { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 16px; }
.phk-checkout .woocommerce-billing-fields__field-wrapper .form-row, .phk-checkout .woocommerce-additional-fields__field-wrapper .form-row { width: 100%; float: none; margin: 0; }
.phk-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide, .phk-checkout .woocommerce-billing-fields__field-wrapper .form-row-first, .phk-checkout .woocommerce-billing-fields__field-wrapper .form-row-last, .phk-checkout .woocommerce-additional-fields__field-wrapper .form-row-wide { grid-column: span 1; }
.phk-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide, .phk-checkout .woocommerce-billing-fields__field-wrapper .form-row:nth-child(1), .phk-checkout .woocommerce-billing-fields__field-wrapper .form-row:nth-child(4), .phk-checkout .woocommerce-billing-fields__field-wrapper .form-row:nth-child(7), .phk-checkout .woocommerce-additional-fields__field-wrapper .form-row-wide { grid-column: 1 / -1; }
.phk-checkout .woocommerce-billing-fields__field-wrapper label, .phk-checkout .woocommerce-billing-fields__field-wrapper .optional, .phk-checkout .woocommerce-additional-fields__field-wrapper label, .phk-checkout .woocommerce-additional-fields__field-wrapper .optional { color: #3d2f35; font-weight: 600; font-size: 0.92rem; }
.phk-checkout .woocommerce-billing-fields__field-wrapper input, .phk-checkout .woocommerce-billing-fields__field-wrapper select, .phk-checkout .woocommerce-billing-fields__field-wrapper textarea, .phk-checkout .woocommerce-additional-fields__field-wrapper input, .phk-checkout .woocommerce-additional-fields__field-wrapper select, .phk-checkout .woocommerce-additional-fields__field-wrapper textarea { border: 0; border-radius: 999px; background: #e2e4ed; min-height: 50px; padding: 0 13px; box-shadow: none; color: #53495b; font-size: 0.88rem; }
.phk-checkout .woocommerce-billing-fields__field-wrapper textarea, .phk-checkout .woocommerce-additional-fields__field-wrapper textarea { border-radius: 24px; padding: 13px; min-height: 90px; }
.phk-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single { border: 0; border-radius: 999px; background: #e2e4ed; min-height: 52px; display: flex; align-items: center; }
.phk-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection__rendered { padding: 0 14px; color: #53495b; line-height: 52px; }
.phk-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection__arrow { height: 52px; right: 12px; }
.phk-checkout #payment { background: transparent; }
.phk-checkout .woocommerce-checkout-payment ul.payment_methods { display: grid; gap: 14px; padding: 0; margin: 0; border: 0; background: transparent; list-style: none; }
.phk-checkout .woocommerce-checkout-payment .wc_payment_method { padding: 16px 18px; border-radius: 22px; background: #eef0f8; }
.phk-checkout .woocommerce-checkout-payment .wc_payment_method > input { margin-top: 6px; }
.phk-checkout .woocommerce-checkout-payment .wc_payment_method > label { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; font-size: 0.94rem; font-weight: 700; color: #221d29; }
.phk-checkout .woocommerce-checkout-payment .wc_payment_method > label img { max-height: 22px; width: auto; }
.phk-checkout .woocommerce-checkout-payment .payment_box { margin-top: 12px; padding: 0; border: 0; background: transparent; color: #5e5468; font-size: 0.88rem; }
.phk-checkout .woocommerce-checkout-payment .payment_box::before { display: none; }
.phk-checkout-deposit__label { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #7a3040; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.phk-checkout-deposit__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 12px; border-radius: 22px; background: linear-gradient(180deg, #f0f1f8 0%, #eceef6 100%); border: 1px solid rgba(196,187,214,0.45); }
.phk-checkout-deposit__item { padding: 14px 12px; border-radius: 18px; background: #fff; text-align: center; box-shadow: 0 10px 24px rgba(183,60,55,0.08); border: 1px solid rgba(222,205,205,0.9); }
.phk-checkout-deposit__item span { display: block; color: #6f6477; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.phk-checkout-deposit__item strong { display: block; margin-top: 6px; color: #7a3040; font-size: 1.3rem; line-height: 1; }

.phk-review-order { display: grid; gap: 16px; }
.phk-review-order__items { display: grid; gap: 14px; }
.phk-review-order__item { display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.phk-review-order__media { overflow: hidden; border-radius: 50%; width: 72px; height: 72px; background: #f4f5fb; }
.phk-review-order__media img { width: 100%; height: 100%; object-fit: cover; }
.phk-review-order__body h3 { margin: 0; font-size: 0.96rem; line-height: 1.25; }
.phk-review-order__meta, .phk-review-order__qty { margin-top: 4px; color: #5f566a; font-size: 0.84rem; }
.phk-review-order__meta dl { margin: 0; }
.phk-review-order__price { font-size: 0.92rem; font-weight: 700; color: #7a3040; white-space: nowrap; }
.phk-review-order__divider { height: 1px; background: #ece8f2; }
.phk-review-order__totals { display: grid; gap: 14px; }
.phk-review-order__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 0.92rem; color: #3d2f39; }
.phk-review-order__row strong { font-weight: 700; color: #7a3040; }
.phk-review-order__row--total { margin-top: 8px; font-size: 1.04rem; font-weight: 700; }
.phk-review-order__row--total strong { font-size: 1.16rem; }

.phk-checkout-alert, .phk-checkout-card--deposit, .phk-review-order__shipping-note { display: none !important; }
.phk-checkout-place-order { margin-top: 16px; }
.phk-checkout .woocommerce-terms-and-conditions-wrapper { margin-bottom: 12px; font-size: 0.88rem; color: #6f6477; }
.phk-checkout-submit { width: 100%; min-height: 58px; font-size: 1rem; box-shadow: 0 18px 28px rgba(220,40,25,0.20); }
.phk-checkout-legal { margin: 16px 0 0; text-align: center; color: #6f6477; font-size: 0.84rem; line-height: 1.5; }

.phk-page.phk-section, .phk-shop-page.phk-section, .phk-single.phk-section,
.phk-cart-page.phk-section, .phk-feedback--archive.phk-section { padding-top: 0; }
.phk-single__top { margin-top: 0; }
.phk-single__description, .phk-single__related { margin-top: 56px; }
.phk-single .woocommerce-breadcrumb { margin: 0; }

/* ══════════════════════════════
   EMPTY / MISC
══════════════════════════════ */
.phk-empty-state--large h1 { margin: 0 0 8px; font-size: 4rem; line-height: 1; }
.phk-empty-state__actions { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.phk-empty-state__actions .phk-button { min-width: 180px; }

/* ══════════════════════════════
   CONTACT PAGE
══════════════════════════════ */
.phk-contact-layout { display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr); gap: 28px; align-items: start; }
.phk-contact-card { padding: 26px 28px; border-radius: 30px; background: rgba(255,255,255,0.94); border: 1px solid rgba(220,190,188,0.92); box-shadow: 0 18px 42px rgba(220,80,70,0.10); backdrop-filter: blur(6px); }
.phk-contact-card h2 { margin: 0 0 12px; font-size: 1.7rem; line-height: 1.15; color: #a02030; }
.phk-contact-card > p { margin: 0 0 20px; color: #655a72; line-height: 1.7; }
.phk-contact-list { display: grid; gap: 14px; }
.phk-contact-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: 20px; background: rgba(255,247,246,0.92); border: 1px solid rgba(220,200,198,0.95); }
.phk-contact-item .material-symbols-outlined { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 999px; background: #fff; color: #e02020; font-size: 20px; box-shadow: 0 10px 20px rgba(220,80,70,0.09); }
.phk-contact-item strong, .phk-contact-item span { display: block; }
.phk-contact-item strong { margin-bottom: 4px; font-size: 0.98rem; color: #433a4b; }
.phk-contact-item span { font-size: 0.95rem; color: #6b6074; line-height: 1.6; }
.phk-contact-card--form > *:first-child { margin-top: 0; }
.phk-contact-form { display: grid; gap: 18px; }
.phk-contact-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 18px; }
.phk-contact-form__field { margin: 0; display: grid; gap: 8px; }
.phk-contact-form__field--wide { grid-column: 1 / -1; }
.phk-contact-form__field label { font-size: 0.92rem; font-weight: 700; color: #52475b; }
.phk-contact-card--form input, .phk-contact-card--form textarea, .phk-contact-card--form select { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid rgba(220,185,183,0.95); border-radius: 18px; background: rgba(255,248,247,0.96); color: #4f4558; font: inherit; box-sizing: border-box; }
.phk-contact-card--form textarea { min-height: 140px; padding: 14px 16px; resize: vertical; }
.phk-contact-form__notice { padding: 12px 14px; border-radius: 16px; font-size: 0.94rem; font-weight: 600; }
.phk-contact-form__notice.is-success { background: rgba(230,251,239,0.95); color: #16663a; }
.phk-contact-form__notice.is-error { background: rgba(255,238,236,0.96); color: #c22430; }
.phk-contact-form .phk-button { width: fit-content; min-width: 180px; }

/* ══════════════════════════════
   HOME HERO / LAYOUT
══════════════════════════════ */
.phk-home-hero { padding: 10px 0 8px; }
.phk-home-toplayout { display: grid; grid-template-columns: 290px 1fr; gap: 16px; align-items: start; }

/* Vertical menu — đỏ header, nền trắng */
.phk-home-vertical-menu {
	background: #fff; border: 1px solid #f0c0be;
	border-radius: 14px; box-shadow: 0 10px 22px rgba(220,40,25,0.07); overflow: hidden;
}
.phk-home-vertical-menu h3 {
	margin: 0; padding: 13px 14px; font-size: 1rem; font-weight: 800;
	color: #fff; background: var(--phk-primary);
}
.phk-home-vertical-menu ul { list-style: none; padding: 0; margin: 0; }
.phk-home-vertical-menu li { border-bottom: 1px solid #f5e0de; }
.phk-home-vertical-menu li:last-child { border-bottom: 0; }
.phk-home-vertical-menu a {
	display: flex; align-items: center; justify-content: space-between;
	gap: 10px; padding: 11px 12px; font-size: 0.92rem; font-weight: 600;
	color: #5a2020; transition: background 0.2s ease, color 0.2s ease;
}
.phk-home-vertical-menu a:hover { background: #fff4f3; color: #c02020; }
.phk-home-vertical-menu .material-symbols-outlined { font-size: 1.06rem; }

/* Hero slider */
.phk-home-hero-slider {
	position: relative; border-radius: 14px; overflow: hidden;
	border: 1px solid #f0c0be; background: #fff;
	box-shadow: 0 10px 24px rgba(220,40,25,0.08);
}
.phk-home-hero-swiper { width: 100%; height: 510px; }
.phk-home-hero-slide { position: relative; display: block; width: 100%; height: 100%; }
.phk-home-hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.phk-home-hero-slide__caption { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: #fff; }
.phk-home-hero-slide__caption h2 { margin: 0; font-size: clamp(1.2rem, 2vw, 1.9rem); line-height: 1.2; }
.phk-home-hero-slide__caption p { margin: 6px 0 0; font-size: 0.92rem; opacity: 0.95; }

.phk-swiper-controls--hero {
	position: absolute; top: 50%; left: 12px; right: 12px; z-index: 5;
	transform: translateY(-50%); display: flex; justify-content: space-between; pointer-events: none;
}
.phk-swiper-controls--hero .phk-swiper-arrow { pointer-events: auto; background: rgba(255,255,255,0.9); border: 1px solid #f0c0be; width: 38px; height: 38px; }
.phk-home-hero-slider .phk-swiper-pagination { position: absolute; left: 0; right: 0; bottom: 8px; z-index: 6; text-align: center; }

/* Home hero card style */
.phk-home-hero__card {
	display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 16px;
	padding: 22px; border-radius: 30px; height: 100%;
	background: linear-gradient(135deg, #fff6f5 0%, #ffe9e8 55%, #fff 100%);
	border: 1px solid #f0c0be; box-shadow: 0 14px 34px rgba(220,40,25,0.11);
}
.phk-home-hero__content { position: static; max-width: none; padding: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
.phk-home-hero__content.is-static h1 { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; color: #431818; }
.phk-home-hero__content.is-static p { font-size: 1.02rem; line-height: 1.6; max-width: 560px; }
.phk-home-hero__eyebrow { margin: 0 0 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--phk-primary); }
.phk-home-hero__actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.phk-home-hero__gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
.phk-home-hero__photo { margin: 0; border-radius: 16px; overflow: hidden; background: #fff; border: 1px solid #f0c0be; }
.phk-home-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phk-home-hero__photo:first-child { grid-row: 1 / 3; }

/* Home categories */
.phk-home-categories { padding-top: 56px; }
.phk-home-categories__grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.phk-home-category {
	display: block; padding: 10px; border-radius: 16px; background: #fff;
	border: 1px solid #f0c0be; box-shadow: 0 8px 18px rgba(220,40,25,0.07);
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.phk-home-category:hover { transform: translateY(-3px); box-shadow: 0 18px 30px rgba(220,40,25,0.15); }
.phk-home-category__thumb { display: block; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; background: #fff2f0; }
.phk-home-category__thumb img { width: 100%; height: 100%; object-fit: cover; }
.phk-home-category__title { display: block; margin-top: 10px; font-weight: 700; text-align: center; font-size: 0.92rem; }

/* Home newest / group */
.phk-home-newest, .phk-home-group { background: transparent; }
.phk-home-newest__grid, .phk-home-group__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.phk-home-newest--spotlight {
	background: linear-gradient(135deg, #fff6f5 0%, #ffeae8 52%, #fff9f8 100%) !important;
	padding-top: 48px; padding-bottom: 48px;
}
.phk-home-newest--spotlight .phk-section-heading h2 { color: #c01818; }
.phk-home-newest--spotlight .phk-inline-link { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid #f0c0be; font-weight: 700; }

.phk-home-categories, .phk-home-newest, .phk-home-why, .phk-home-group {
	border: 0 !important; box-shadow: none !important; background: #ffffff !important;
}
.phk-home-group .phk-product-card, .phk-home-newest .phk-product-card { height: auto !important; }
.phk-home-group .phk-product-body, .phk-home-newest .phk-product-body { flex: 0 0 auto; }

.phk-home-newest-swiper .swiper-slide, .phk-home-categories-swiper .swiper-slide { height: auto; }
.phk-home-newest-swiper .phk-product-card { height: 100%; }
.phk-home-newest-swiper .phk-product-body { display: block; flex: none; padding-top: 12px; }
.phk-home-newest-swiper .phk-product-title a { -webkit-line-clamp: 2; }
.phk-home-newest-swiper .phk-product-actions { display: none !important; }
.phk-home-newest-swiper .phk-product-price { margin-top: 8px; }

.phk-home-categories-swiper, .phk-home-newest-swiper,
.phk-home-categories-swiper .swiper-wrapper, .phk-home-newest-swiper .swiper-wrapper,
.phk-home-categories-swiper .swiper-slide, .phk-home-newest-swiper .swiper-slide {
	height: auto !important; max-height: none !important; min-height: 0 !important;
}
.phk-home-newest-swiper .swiper-wrapper, .phk-home-categories-swiper .swiper-wrapper { align-items: flex-start !important; display: flex !important; height: auto !important; }
.phk-home-newest-swiper .swiper-slide { display: block !important; align-self: flex-start !important; }
.phk-home-newest-swiper .phk-product-card { display: block !important; height: auto !important; min-height: unset !important; }
.phk-home-newest-swiper .phk-product-body { display: block !important; flex: 0 0 auto !important; height: auto !important; }
.phk-home-newest-swiper .phk-product-media { aspect-ratio: 1 / 1; }
.phk-home-newest__carousel-wrap, .phk-home-newest-swiper { height: auto !important; }

.phk-home-categories__carousel-wrap, .phk-home-newest__carousel-wrap { position: relative; }
.phk-home-categories__carousel-wrap .phk-swiper-controls, .phk-home-newest__carousel-wrap .phk-swiper-controls { position: absolute; left: 0; right: 0; top: 50%; inset: auto 0 auto 0; height: 0; transform: translateY(-50%); pointer-events: none; z-index: 3; }
.phk-home-categories__carousel-wrap .phk-swiper-arrow, .phk-home-newest__carousel-wrap .phk-swiper-arrow { pointer-events: auto; width: 38px; height: 38px; background: rgba(255,255,255,0.95); border: 1px solid #f0c0be; box-shadow: 0 6px 14px rgba(220,40,25,0.09); }
.phk-home-categories__carousel-wrap .phk-swiper-arrow--prev, .phk-home-newest__carousel-wrap .phk-swiper-arrow--prev { left: -18px; }
.phk-home-categories__carousel-wrap .phk-swiper-arrow--next, .phk-home-newest__carousel-wrap .phk-swiper-arrow--next { right: -18px; }
.phk-home-categories__carousel-wrap .phk-swiper-pagination, .phk-home-newest__carousel-wrap .phk-swiper-pagination { margin-top: 10px; text-align: center; }

/* ══════════════════════════════
   WHY SECTION — đa màu icon
══════════════════════════════ */
.phk-home-why { background: #fff !important; padding-top: 56px !important; padding-bottom: 56px !important; }
.phk-home-why__card { border: 0 !important; box-shadow: 0 6px 14px rgba(220,40,25,0.06); }

.phk-home-why__head { text-align: center; max-width: 860px; margin: 0 auto 24px; }
.phk-home-why__head > p:first-child { margin: 0; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--phk-primary); }
.phk-home-why__head h2 { margin: 10px 0 0; font-size: clamp(1.9rem, 2.8vw, 2.8rem); line-height: 1.15; color: #2f1818; }
.phk-home-why__intro { margin: 10px auto 0 !important; max-width: 920px; font-size: 1rem; line-height: 1.65; color: #6e5b60; }

.phk-home-why__list {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 14px !important;
}

.phk-home-why__item {
	display: flex !important; align-items: flex-start; gap: 12px;
	padding: 16px; border-radius: 14px;
	border: 1px solid #f0c5c3; background: #fff8f7;
}

/* Icon đa màu cho từng item why */
.phk-home-why__item .material-symbols-outlined {
	width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
	border-radius: 999px; flex: 0 0 38px; font-size: 20px;
	/* default đỏ */
	background: #ffd8d5; color: var(--phk-primary);
}
.phk-home-why__item:nth-child(2) .material-symbols-outlined { background: var(--phk-purple-soft); color: var(--phk-purple); }
.phk-home-why__item:nth-child(3) .material-symbols-outlined { background: var(--phk-blue-soft);   color: var(--phk-blue); }
.phk-home-why__item:nth-child(4) .material-symbols-outlined { background: var(--phk-amber-soft);  color: var(--phk-amber); }
.phk-home-why__item:nth-child(5) .material-symbols-outlined { background: var(--phk-green-soft);  color: var(--phk-green); }
.phk-home-why__item:nth-child(6) .material-symbols-outlined { background: var(--phk-teal-soft);   color: var(--phk-teal); }

.phk-home-why__item h3 { margin: 0; font-size: 1rem; line-height: 1.25; color: #411818; }
.phk-home-why__item p { margin: 6px 0 0; font-size: 0.92rem; line-height: 1.5; color: #786060; }

.phk-home-why__carousel-wrap, .phk-home-why-swiper { display: none !important; }

/* Shipping bar */
.phk-home-shipping { padding-top: 26px; padding-bottom: 18px; }
.phk-home-shipping__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding: 14px 16px; border-radius: 22px; background: #fff; box-shadow: 0 10px 20px rgba(120,40,35,0.07); }
.phk-home-shipping__item { display: flex; align-items: center; gap: 12px; padding: 10px 8px; }
/* Icon shipping đa màu */
.phk-home-shipping__item:nth-child(1) .material-symbols-outlined { background: #ffe5e2; color: var(--phk-primary); }
.phk-home-shipping__item:nth-child(2) .material-symbols-outlined { background: var(--phk-blue-soft); color: var(--phk-blue); }
.phk-home-shipping__item:nth-child(3) .material-symbols-outlined { background: var(--phk-green-soft); color: var(--phk-green); }
.phk-home-shipping__item .material-symbols-outlined { width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.phk-home-shipping__item h3 { margin: 0; font-size: 1.02rem; line-height: 1.2; color: #2f1818; }
.phk-home-shipping__item p { margin: 4px 0 0; font-size: 0.9rem; color: #756060; }

/* ══════════════════════════════
   GLOBAL OVERRIDES
══════════════════════════════ */
html, body, .phk-site-shell, .phk-header { margin: 0; padding: 0; }
body { background: #ffffff !important; font-family: "Be Vietnam Pro", "Plus Jakarta Sans", sans-serif; }
.phk-site-shell::before { background: #ffffff !important; }
html, body { max-width: 100%; overflow-x: hidden; }
.phk-site-shell, .phk-header, .phk-header__utility, .phk-header__topbar, .phk-header__menubar, .phk-footer { max-width: 100%; overflow-x: clip; }

.phk-container,
.phk-home-categories .phk-container, .phk-home-newest .phk-container,
.phk-home-why .phk-container, .phk-home-group .phk-container,
.phk-feedback .phk-container, .phk-home-shipping .phk-container {
	width: min(1240px, calc(100% - 32px)) !important;
	margin-left: auto; margin-right: auto;
}

.phk-home-categories, .phk-home-newest, .phk-home-why, .phk-home-group,
.phk-feedback, .phk-home-shipping {
	margin-top: 0 !important; padding-top: 48px !important; padding-bottom: 48px !important;
}

.phk-section { padding: 52px 0; position: relative; }
.phk-section-heading h2 { font-size: clamp(1.6rem, 2vw, 2.2rem); }
.phk-section-heading p { font-size: 0.95rem; margin-top: 8px; }

.phk-section-heading--split { align-items: center; }
.phk-section-heading--split .phk-inline-link {
	padding: 8px 14px; border-radius: 999px; background: #fff;
	border: 1px solid #f0c0be; font-weight: 700; line-height: 1; white-space: nowrap;
}

/* Header admin bar */
html { margin-top: 0 !important; }
body.admin-bar { margin-top: 0 !important; padding-top: 0 !important; }
#wpadminbar { position: fixed !important; top: 0 !important; }

/* Sticky header */
.phk-header { position: relative; }
.phk-header.has-fixed-menubar { padding-bottom: var(--phk-sticky-stack-height, 140px); }
.phk-header__topbar.is-sticky { position: fixed !important; top: 0 !important; left: 0; right: 0; width: 100%; z-index: 1149; background: #fff; box-shadow: 0 10px 24px rgba(220,40,25,0.12); }
.phk-header__menubar { position: relative !important; top: auto !important; left: auto; right: auto; width: 100%; z-index: 101; }
.phk-header__menubar.is-sticky { position: fixed !important; top: var(--phk-sticky-menubar-top, 88px) !important; left: 0; right: 0; width: 100%; z-index: 1150; }
body.admin-bar .phk-header__topbar.is-sticky { top: 32px !important; }
body.admin-bar .phk-header__menubar.is-sticky { top: calc(32px + var(--phk-sticky-menubar-top, 88px)) !important; }

/* WooCommerce account */
.woocommerce-account .phk-page__container { width: min(1320px, calc(100% - 48px)); max-width: none; }
.woocommerce-account .phk-page__content { padding: 0; background: transparent; box-shadow: none; }
.woocommerce-account .phk-page__content, .woocommerce-account .phk-page__content > .woocommerce { width: 100%; max-width: none; }
.woocommerce-account .woocommerce, .woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content { width: 100%; max-width: none; float: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { margin: 22px 0 0; padding: 0; list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation li { margin: 0; }
.woocommerce-account .woocommerce::after, .woocommerce-account .woocommerce-MyAccount-content::after, .woocommerce-account .col2-set::after { content: ""; display: block; clear: both; }
.woocommerce-account .woocommerce-form-login, .woocommerce-account .woocommerce-form-register, .woocommerce-account .woocommerce-form-edit-account, .woocommerce-account .woocommerce-address-fields { margin: 0; width: 100%; }

/* Force-hide */
.phk-cart-note, .phk-checkout-card--deposit, .phk-checkout-alert, .phk-review-order__shipping-note { display: none !important; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1200px) {
	.phk-header__quick { display: none; }
	.phk-header__inner, .phk-footer__grid {
		width: min(1240px, calc(100% - 24px)) !important;
		max-width: min(1240px, calc(100% - 24px));
	}
}

@media (max-width: 1180px) {
	.phk-products-grid__list, .phk-feedback__grid, .phk-benefits__grid, .phk-deposit__grid, .phk-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.phk-shop-layout { flex-direction: column; }
	.phk-shop-sidebar { width: 100%; flex: 1 1 auto; order: 2; }
	.phk-shop-content { order: 1; }
	.phk-shop-category-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.phk-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.phk-single__top { grid-template-columns: 1fr; }
	.phk-single__related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.phk-cart-layout { grid-template-columns: 1fr; }
	.phk-cart-summary { position: static; }
	.phk-checkout-layout { grid-template-columns: 1fr; }
	.phk-checkout-summary, .phk-checkout-card--summary { position: static; top: auto; }
	.phk-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.phk-post-single__content { padding: 24px; }
	.phk-home-categories__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
	.phk-home-toplayout { grid-template-columns: 1fr; }
	.phk-home-vertical-menu { order: 2; }
	.phk-home-hero__card { order: 1; grid-template-columns: 1fr; }
	.phk-home-hero__gallery { height: 260px; }
	.phk-home-hero-swiper { height: 550px; }
	.phk-home-why__list { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

@media (max-width: 1024px) {
	.phk-header { position: sticky; top: 0; z-index: 110; }
	.phk-header__menubar { position: static; top: auto; z-index: auto; }
	body.admin-bar .phk-header { top: 32px; }
	body.admin-bar .phk-header__menubar { top: auto; }
	.phk-site-main { padding-top: 0; }
	.phk-menu-list .sub-menu { position: relative; border: none; box-shadow: none; min-width: unset; }
	.phk-menu-list .sub-menu::before { content: none; }
	.phk-mobile-nav__header { justify-content: flex-end; }
	.woocommerce-account .phk-page__container { width: calc(100% - 32px); }
	.phk-account-layout { grid-template-columns: 1fr; }
	.phk-account-nav { position: static; top: auto; }
	.phk-account-dashboard__grid, .phk-auth-grid.is-two-column, .woocommerce-account .col2-set { grid-template-columns: 1fr; }
	.phk-single { padding-bottom: 140px; }
	.phk-single__top { grid-template-columns: 1fr; }
	.phk-header__toggle { display: inline-flex; align-items: center; justify-content: center; }
	.phk-header__search { flex: 1 1 auto; min-width: 0; }
	.phk-desktop-nav { display: none; }
	.phk-header__inner--top { gap: 14px; }
	.phk-header__inner--bottom { display: none; }
	.phk-header__actions { gap: 6px; }
	.phk-header__action-card { min-width: 46px; padding: 0; }
	.phk-header__action-label { display: none; }
	.phk-header__action-icon { width: 42px; height: 42px; }
	.phk-section-heading--split { flex-direction: column; align-items: flex-start; }
	.phk-products-grid__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.phk-checkout-deposit__grid { grid-template-columns: 1fr; }
	.phk-has-fixed-menubar { padding-bottom: 0; }
	.phk-header__topbar.is-sticky { position: static !important; top: auto !important; box-shadow: none; }
	.phk-contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
	.phk-header__inner { width: min(1240px, calc(100% - 20px)) !important; }
	.phk-home-toplayout { grid-template-columns: 1fr; gap: 14px; }
	.phk-home-vertical-menu { display: none !important; }
	.phk-home-categories { padding-top: 24px !important; }
	.phk-home-categories__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.phk-home-newest__grid, .phk-home-group__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.phk-home-why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.phk-feedback__grid { grid-template-columns: 1fr; }
	.phk-home-shipping__grid { grid-template-columns: 1fr; }
	.phk-products-grid__list, .phk-home-group__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
	.phk-home-newest-swiper .swiper-slide { width: calc((100% - 12px) / 2) !important; }
	.phk-product-card { border-radius: 14px; min-height: 0 !important; }
	.phk-product-media { border-radius: 12px; }
	.phk-product-body { padding: 10px !important; gap: 8px !important; }
	.phk-product-title a { font-size: 0.95rem !important; line-height: 1.3; }
	.phk-product-price { font-size: 1.03rem !important; }
	.phk-product-actions { display: none !important; }
	.phk-home-categories, .phk-home-newest, .phk-home-why, .phk-home-group, .phk-feedback, .phk-home-shipping { padding-top: 28px !important; padding-bottom: 28px !important; }
	.phk-section-heading { margin-bottom: 12px !important; }
	.phk-section-heading h2 { font-size: 1.6rem !important; line-height: 1.25; }
	.phk-section-heading p { font-size: 0.95rem; line-height: 1.45; }
	.phk-inline-link { font-size: 0.9rem; padding: 7px 12px !important; }
	/* cart mobile */
	.phk-cart-item { grid-template-columns: 76px minmax(0, 1fr) !important; gap: 10px !important; align-items: start; padding: 12px !important; }
	.phk-cart-item__media { width: 76px; max-width: 76px; border-radius: 12px; aspect-ratio: 1 / 1; }
	.phk-cart-item__price { grid-column: 1 / -1; margin-top: 2px; font-size: 1.15rem !important; }
	/* checkout mobile */
	.phk-review-order__item { grid-template-columns: 56px minmax(0, 1fr) !important; gap: 10px !important; align-items: start !important; }
	.phk-review-order__media { width: 56px; height: 56px; border-radius: 12px; }
	.phk-review-order__price { grid-column: 1 / -1; margin-top: 2px; font-size: 1rem; }
	/* footer */
	.phk-footer { margin-top: 42px; }
	.phk-footer__grid { grid-template-columns: 1fr !important; gap: 20px !important; width: calc(100% - 24px) !important; max-width: calc(100% - 24px) !important; padding: 28px 0 20px !important; }
	.phk-footer__column h2 { margin-bottom: 10px; font-size: 1.08rem; }
	.phk-footer__column p, .phk-footer__links a, .phk-footer__contact li, .phk-footer__copyright { font-size: 0.98rem; line-height: 1.55; word-break: normal; overflow-wrap: break-word; }
	.phk-footer__links, .phk-footer__contact { gap: 8px; }
	.phk-footer__contact li { display: grid; grid-template-columns: 20px minmax(0, 1fr); align-items: start; column-gap: 10px; }
	.phk-footer__contact .material-symbols-outlined { margin-top: 2px; }
	.phk-footer__copyright { padding: 14px 12px 20px; }
	/* why */
	.phk-home-why__carousel-wrap .phk-swiper-arrow, .phk-feedback__carousel-wrap .phk-swiper-arrow { width: 36px; height: 36px; }
	.phk-home-why__carousel-wrap .phk-swiper-arrow--prev, .phk-feedback__carousel-wrap .phk-swiper-arrow--prev { left: 4px; }
	.phk-home-why__carousel-wrap .phk-swiper-arrow--next, .phk-feedback__carousel-wrap .phk-swiper-arrow--next { right: 4px; }
	.phk-home-categories__carousel-wrap .phk-swiper-arrow--prev, .phk-home-newest__carousel-wrap .phk-swiper-arrow--prev { left: 4px; }
	.phk-home-categories__carousel-wrap .phk-swiper-arrow--next, .phk-home-newest__carousel-wrap .phk-swiper-arrow--next { right: 4px; }
}

@media (max-width: 767px) {
	:root { --phk-container: min(100% - 24px, 100%); }
	html { margin-top: 0 !important; }
	#wpadminbar { position: fixed; top: 0; }
	body.admin-bar { padding-top: 46px; }
	body.admin-bar .phk-header { top: 46px; }
	.phk-site-main { padding-top: 0; }
	.woocommerce-account .phk-page__container { width: calc(100% - 24px); }
	.phk-account-nav, .phk-account-panel, .phk-auth-card, .phk-auth-shell__intro { border-radius: 24px; padding: 20px; }
	.phk-account-dashboard__hero { padding: 20px; border-radius: 22px; flex-direction: column; }
	.phk-auth-card__actions { flex-direction: column; align-items: flex-start; }
	.phk-header__inner { min-height: 72px; padding: 10px 0; }
	.phk-header__inner--top { min-height: 72px; }
	.phk-header.is-sticky .phk-header__inner--top { min-height: 0px; }
	.phk-mobile-nav { width: min(360px, calc(100vw - 28px)); padding: 18px 16px 24px; }
	.phk-header__logo img { height: 42px; width: auto; }
	.phk-header.is-sticky .phk-header__logo img { height: 36px; }
	.phk-header__search { display: none; }
	.phk-header__actions { gap: 8px; margin-left: auto; }
	.phk-header__action-card { min-width: 40px; }
	.phk-header__action-icon { width: 40px; height: 40px; }
	.phk-mobile-nav__brand img { width: 56px; height: 56px; border-radius: 16px; }
	.phk-hero__image { min-height: 280px; }
	.phk-intro blockquote { font-size: 1.9rem; }
	.phk-hot-slider-wrap { padding: 0; }
	.phk-swiper-arrow { top: 50%; width: 40px; height: 40px; }
	.phk-swiper-arrow--prev { left: 4px; }
	.phk-swiper-arrow--next { right: 4px; }
	.phk-kawaii-card__image { width: 92px; height: 92px; }
	.phk-kawaii-slider-wrap { padding: 0 40px; }
	.phk-products-grid__list, .phk-feedback__grid, .phk-benefits__grid, .phk-deposit__grid, .phk-footer__grid, .phk-shop-category-list { grid-template-columns: 1fr; }
	.phk-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
	.phk-shop-toolbar { flex-direction: column; align-items: flex-start; background: rgba(255,255,255,0.94); border: 1px solid rgba(220,190,188,0.92); border-radius: 30px; box-shadow: 0 18px 42px rgba(220,80,70,0.10); backdrop-filter: blur(6px); padding: 24px; }
	body:not(.home) .phk-shop-content.phk-pro-cat { background: none; border: none; border-radius: 30px; box-shadow: none; backdrop-filter: none; padding: 0; }
	.phk-checkout .woocommerce-billing-fields__field-wrapper, .phk-checkout .woocommerce-additional-fields__field-wrapper { grid-template-columns: 1fr; }
	.phk-checkout .woocommerce-billing-fields__field-wrapper input, .phk-checkout .woocommerce-billing-fields__field-wrapper select, .phk-checkout .woocommerce-billing-fields__field-wrapper textarea, .phk-checkout .woocommerce-additional-fields__field-wrapper input, .phk-checkout .woocommerce-additional-fields__field-wrapper select, .phk-checkout .woocommerce-additional-fields__field-wrapper textarea, .phk-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection--single { min-height: 50px; }
	.phk-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection__rendered { line-height: 50px; }
	.phk-checkout .woocommerce-billing-fields__field-wrapper .select2-container .select2-selection__arrow { height: 50px; }
	.phk-single { padding-bottom: 152px; }
	.phk-single__gallery, .phk-single__summary { padding: 18px; border-radius: 24px; }
	.phk-single__thumbs-row { grid-template-columns: 1fr; }
	.phk-single__thumbs { grid-template-columns: repeat(4, minmax(0, 1fr)); order: 1; }
	.phk-single__thumb-nav { display: none; }
	.phk-single__qty-block { align-items: stretch; }
	.phk-single__actions { grid-template-columns: 1fr; gap: 10px; }
	.phk-single__cta { grid-template-columns: 48px minmax(0, 1fr) 20px; min-height: 68px; padding: 8px 14px 8px 10px; }
	.phk-single__cta-badge { width: 42px; height: 42px; }
	.phk-single__cta-badge .material-symbols-outlined { font-size: 22px; }
	.phk-single__cta-text { font-size: 1.05rem; }
	.phk-single__sticky-actions { padding: 10px 0 calc(10px + env(safe-area-inset-bottom)); }
	.phk-single__sticky-actions-inner { width: calc(100vw - 16px); display: flex; align-items: center; justify-content: center; gap: 6px; }
	.phk-single__sticky-actions .phk-single__cta { min-width: 0; }
	.phk-single__spec-table th, .phk-single__spec-table td { display: block; width: 100%; padding: 10px 12px; }
	.phk-single__spec-table th { padding-bottom: 4px; border-bottom: 0; }
	.phk-single__spec-table td { padding-top: 0; }
	.phk-single__related-grid { grid-template-columns: 1fr; }
	.phk-cart-item { grid-template-columns: 1fr; }
	.phk-cart-item__head, .phk-cart-item__footer, .phk-cart-summary__row, .phk-cart-summary__total, .phk-cart-coupon__form { flex-direction: column; align-items: flex-start; }
	.phk-cart-item__price, .phk-cart-summary__total strong { font-size: 1.6rem; }
	.phk-cart-summary__checkout, .phk-cart-coupon__form .phk-button { width: 100%; }
	.phk-cart-note { border-radius: 24px; }
	.phk-cart-page .phk-container { width: calc(100% - 24px); }
	.phk-cart-empty { padding: 40px 22px; }
	.phk-checkout-card { padding: 20px; }
	.phk-review-order__item, .phk-review-order__row { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
	.phk-post-grid, .phk-empty-state__actions { grid-template-columns: 1fr; }
	.phk-post-single__content { padding: 20px; }
	.phk-empty-state__actions { display: grid; }
	.phk-brand-banner__card { border-radius: 24px; }
	.phk-floating-actions { right: 12px; bottom: 18px; }
	body.single-product .phk-floating-actions { bottom: 108px; }
	.phk-floating-actions__button { width: 50px; height: 50px; }
	.phk-floating-actions__button .material-symbols-outlined { font-size: 22px; }
	.phk-product-card { padding: 8px; }
	.phk-header__inner--utility { gap: 6px; }
	.phk-section-heading--split { gap: 12px; }
	.phk-home-hero-swiper { height: 200px; }
	.phk-home-hero__gallery { height: 220px; }
	.phk-home-categories__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.phk-single__features { margin-top: 18px; padding: 16px; border-radius: 16px; }
	.phk-single__features-list { grid-template-columns: 1fr; gap: 8px; }
	.phk-single__features-list li { min-height: 40px; padding: 9px 10px; font-size: 0.92rem; }
	.phk-contact-form__grid { grid-template-columns: 1fr; }
	.phk-page__container { width: calc(100% - 24px); }
	body.admin-bar .phk-header { top: 46px; }
	body.admin-bar .phk-header__topbar.is-sticky { top: 46px !important; }
	body.admin-bar .phk-header__menubar.is-sticky { top: calc(46px + var(--phk-sticky-menubar-top, 88px)) !important; }
}

@media (max-width: 700px) {
	.phk-home-why__list { grid-template-columns: 1fr !important; }
	.phk-home-categories, .phk-home-newest, .phk-home-why, .phk-home-group { border-radius: 14px; padding-top: 30px; padding-bottom: 30px; }
	.phk-home-newest__grid, .phk-home-group__grid, .phk-home-why__grid { grid-template-columns: 1fr; }
	.phk-header__inner--utility { justify-content: center; flex-direction: column; }
	.phk-header__utility-item:nth-child(3) { display: none; }
}

@media (max-width: 640px) {
	.phk-home-hero__content { max-width: calc(100% - 24px); left: 12px; bottom: 12px; }
}