/* =============================================================
   À Ú — Lớp giao diện theo phong cách Gucci
   Nạp SAU styles.css (xem snippets/master-include.liquid) nên
   mọi rule ở đây đè lên theme cũ mà không phải sửa file 3300 dòng.

   Số đo lấy từ LAYOUT-SPEC.md (đo trực tiếp trên gucci.com PDP).
   Giữ nguyên: font Montserrat + bảng màu be của À Ú.
   ============================================================= */

/* ---------- 1. TOKEN ---------- */
:root {
	/* Thang spacing của trang gốc */
	--sp-3xs: 0.25rem;  /*  4px */
	--sp-2xs: 0.5rem;   /*  8px */
	--sp-xs:  1rem;     /* 16px */
	--sp-s:   1.5rem;   /* 24px */
	--sp-m:   2rem;     /* 32px */
	--sp-l:   2.5rem;   /* 40px */
	--sp-xl:  3rem;     /* 48px */
	--sp-2xl: 4rem;     /* 64px */
	--sp-3xl: 5rem;     /* 80px */

	/* Padding ngang trang + chiều cao header — đổi theo breakpoint */
	--page-x: var(--sp-xs);   /* 16px mobile */
	--header-h: 56px;

	/* Màu — GIỮ tông be của À Ú, chỉ mượn tương phản đen/trắng của Gucci */
	--au-cream:   #FEF4E8;   /* be nền */
	--au-sand:    #FCDDB7;  /* be đậm, dùng nhấn */
	--au-fg:      #000;
	--au-muted:   #767676;
	--au-divider: rgba(0, 0, 0, 0.15);
	--au-image-bg: #fbfbfb;
	--au-inverse: #fff;
	--au-crayon: #E8837D;   /* đỏ nhạt kiểu bút sáp cho ô đang chọn */

	/* Typography — Montserrat giữ nguyên */
	--fs-micro: 0.75rem;   --lh-micro: 1rem;      /* 12/16 nhãn UPPERCASE */
	--fs-small: 0.875rem;  --lh-small: 1.25rem;   /* 14/20 */
	--fs-body:  1rem;      --lh-body: 1.5;
	--ls-title: -0.04em;
	--fs-desc: 0.9375rem;  --lh-desc: 1.5rem;   /* 15/24 — cỡ chữ mô tả theo tỉ lệ Gucci */

	/* Gallery + cột mua hàng */
	--gallery-ratio: 3 / 4;   /* khung ảnh sản phẩm 3:4 */
	--slides-per-view: 1;
	--content-max: 872px;
	--buy-col: 432px;
}

@media (min-width: 768px) {
	:root { --page-x: var(--sp-m); --header-h: 64px; --slides-per-view: 2; }
}
@media (min-width: 1024px) {
	:root { --page-x: var(--sp-2xl); --header-h: 72px; --slides-per-view: 3; }
}

/* ---------- 2. HEADER 3 VÙNG (trái: Contact / giữa: logo chữ / phải: module) ---------- */
.main-header.wrap-flex-align {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-xs);
	height: var(--header-h);
	padding: 0 var(--page-x);
	background: var(--au-cream);
	border-bottom: 1px solid var(--au-divider);
}
/* Header GIỐNG NHAU trên MỌI trang (kể cả trang chủ): nền đặc, chữ đen.
   Ghi đè hẳn trạng thái trong suốt / frosted-glass của theme cũ. */
.template-index .main-header.wrap-flex-align,
.main-header.is-scrolled.wrap-flex-align,
body:not(.template-index) .main-header.wrap-flex-align {
	background: var(--au-cream);
	border-bottom-color: var(--au-divider);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
/* Vô hiệu hoá mọi rule đảo màu trắng của theme cũ trên trang chủ */
.template-index .main-header .desktop-menu-trigger,
.template-index .main-header .wrap-logo a,
.template-index .main-header .count,
.template-index .main-header .au-brand,
.template-index .main-header .au-contact,
.template-index .main-header .header-wrap-icon,
.template-index .main-header .header-wrap-icon a { color: var(--au-fg); }
.template-index .main-header .svg-cart path,
.template-index .main-header .svg-cart circle,
.template-index .main-header .svg-cart g,
.template-index .main-header .header-wrap-icon svg path,
.template-index .main-header .header-wrap-icon svg circle,
.template-index .main-header .header-wrap-icon svg g { fill: none; stroke: currentColor; }

.desktop-menu-left,
.header-wrap-icon { flex: 1 1 0; display: flex; align-items: center; }
.desktop-menu-left { justify-content: flex-start; }
.header-wrap-icon  { justify-content: flex-end; gap: var(--sp-xs); }
.wrap-logo { flex: 0 0 auto; justify-content: center; float: none; max-width: none; }

/* --- 2a. Logo: dùng logo.png (nền trong suốt) --- */
.wrap-logo .au-brand {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 0.28em;
	text-indent: 0.28em;   /* bù letter-spacing để chữ đứng thật giữa */
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	color: var(--au-fg);
	background: none;
	border: 0;
	display: inline-flex;
	align-items: center;
}
/* Ảnh logo: cao theo header, KHÔNG nền, không viền — ghi đè max-height/max-width cũ */
.wrap-logo .au-brand__img {
	display: block;
	height: 34px;
	width: auto;
	max-height: none !important;
	max-width: none !important;
	background: none !important;
	border: 0 !important;
}
@media (max-width: 767px) {
	.wrap-logo .au-brand { font-size: 16px; }
	.wrap-logo .au-brand__img { height: 26px; }
}

/* --- 2b. Contact Us bên trái --- */
.au-contact {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2xs);
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--au-fg);
}
.au-contact svg { flex: 0 0 auto; }
.au-contact { cursor: pointer; -webkit-user-select: none; user-select: none; }

/* Vùng chạm tối thiểu 44px cho mọi nút trên header (chuẩn cảm ứng) */
.au-contact,
.au-menu-btn,
.header-wrap-icon > span,
.header-wrap-icon > span > a { min-height: 44px; display: inline-flex; align-items: center; }
@media (max-width: 1023px) {
	.header-wrap-icon { gap: var(--sp-2xs); }
	.au-contact,
	.au-menu-btn,
	.header-wrap-icon > span { min-width: 44px; justify-content: center; }
	.au-contact { justify-content: flex-start; }
	.header-wrap-icon > span > a { width: 100%; justify-content: center; }
}
/* Dưới 1024px chỉ còn dấu + cho gọn, đúng như trang gốc */
.au-contact__label { display: none; }
@media (min-width: 1024px) { .au-contact__label { display: inline; } }

/* --- 2c. Cụm module bên phải --- */
.header-wrap-icon > span,
.header-wrap-icon > a {
	display: inline-flex;
	align-items: center;
	margin: 0;
	width: auto;
	position: relative;
	color: var(--au-fg);
}
.header-wrap-icon svg { width: 20px; height: 20px; }

/* Nút MENU: bỏ hẳn nhãn ":after" của theme cũ, dùng nhãn thật trong markup */
#site-menu-handle { padding-right: 0 !important; }
#site-menu-handle:after,
span#site-menu-handle:after { content: none !important; }
.au-menu-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2xs);
	cursor: pointer;
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	-webkit-user-select: none;
	user-select: none;
}
.au-menu-btn__label { display: none; }
@media (min-width: 1024px) { .au-menu-btn__label { display: inline; } }

/* Số lượng giỏ hàng: in NGAY TRONG lòng icon túi (không phải chấm notification) */
.header-wrap-icon .icon-cart .cart-menu {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.header-wrap-icon .cart-menu .count-holder {
	position: absolute;
	top: 58%;                     /* tâm phần thân túi trong viewBox 0 0 20 20 */
	left: 0;
	right: 0;
	inset-inline-start: 0;
	width: auto;
	min-width: 0;
	height: auto;
	margin: 0;
	padding: 0;
	transform: translateY(-50%);
	border-radius: 0;
	background: none;
	color: var(--au-fg);
	font-size: 9px;
	line-height: 1;
	font-weight: 600;
	text-align: center;
	pointer-events: none;
}
/* giỏ trống thì không in số */
.header-wrap-icon .cart-menu .count-holder.is-empty { display: none; }

/* Chừa chỗ cho header cố định (trang chủ để slider chạy full dưới header) */
main { padding-top: var(--header-h); }

/* ---------- 3. GALLERY SẢN PHẨM ---------- */
/* Nền ảnh dịu, bỏ viền xám cũ */
.pr_style_02 img.product-image-feature,
.pr_style_01 img.product-image-feature { border: 0; background: var(--au-image-bg); }

/* Dải ảnh nhỏ (thumbnail) nổi ở đáy khung ảnh — CHỈ desktop, giống trang gốc */
.au-gallery-thumbs { display: none; }
@media (min-width: 1024px) {
	.product-image-detail { position: relative; }
	.au-gallery-thumbs {
		display: flex;
		align-items: center;
		gap: var(--sp-3xs);
		position: static;
		margin: 0;
		width: auto;
		max-width: 100%;
		padding: var(--sp-2xs);
		border-radius: 2px;
		background: rgba(255, 255, 255, 0.9);
		overflow-x: auto;
		scrollbar-width: none;
	}
	.au-gallery-thumbs::-webkit-scrollbar { display: none; }
	.au-gallery-thumb {
		flex: 0 0 auto;
		width: 32px;
		height: 32px;
		padding: 0;
		border: 1px solid transparent;
		background: var(--au-image-bg);
		overflow: hidden;
		cursor: pointer;
	}
	.au-gallery-thumb > img { width: 100%; height: 100%; object-fit: cover; display: block; }
	.au-gallery-thumb.is-active { border-color: var(--au-fg); }
}

/* ---------- 4. CỘT THÔNG TIN MUA HÀNG ---------- */
.product-content-desc .product-title,
.product-content-desc h1 {
	font-size: var(--fs-body);
	line-height: 1.5rem;
	letter-spacing: var(--ls-title);
	font-weight: 400;
	text-transform: none;
}
.product-content-desc .price-box,
.product-content-desc .special-price { font-size: var(--fs-body); font-weight: 400; }
.product-content-desc .old-price { color: var(--au-muted); }

/* Nút CTA: vuông góc, cao 48px, chữ 12/700 UPPERCASE */
.product-content-desc .btn-cart,
.product-content-desc .btn-buynow,
.product-content-desc .add-to-cart,
#add-to-cart,
.btn-addtocart {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: var(--sp-2xs);
	width: 100%;
	min-height: 48px;
	/* 15 + 16 (line-height) + 15 + 2 viền = 48px đúng bằng spec */
	padding: 15px var(--sp-s) !important;
	border-radius: 0 !important;
	border: 1px solid var(--au-fg);
	background: var(--au-fg);
	color: var(--au-inverse);
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.product-content-desc .btn-buynow,
.btn-buynow {
	background: transparent;
	color: var(--au-fg);
}
.product-content-desc .btn-buynow:hover,
.btn-buynow:hover { background: var(--au-fg); color: var(--au-inverse); }

/* Nhãn nhóm (Màu / Kích cỡ / Mô tả) kiểu Gucci */
.product-content-desc .swatch .header,
.product-content-desc .title-bl h2,
.product-description .title-bl h2 {
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Ô chọn biến thể: 58×58, viền 1px, bo 2px */
.product-content-desc .swatch-element label {
	min-width: 58px;
	height: 40px;
	padding: 0 var(--sp-s);
	border: 1px solid var(--au-divider);
	border-radius: 2px;
	background: transparent;
	font-size: var(--fs-small);
	line-height: 38px;
	font-weight: 400;
}
.product-content-desc .swatch-element input:checked + label { border-color: var(--au-fg); }

/* ---------- 5. LƯỚI DANH SÁCH SẢN PHẨM (collection) ---------- */
.content-product-list { margin-inline: 0; }
.collection-page .pro-loop { padding: 0; }
.collection-page .pro-loop .product-loop { border: 0; }
.wrap-collection-title .heading-collection h1,
.collection-page .heading-collection h1 {
	font-size: var(--fs-body);
	font-weight: 400;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-align: center;
}

/* ---------- 6. BREADCRUMB Ở ĐÁY TRANG (sát footer) ---------- */
.breadcrumb-shop.au-breadcrumb--bottom {
	margin: 0;
	padding: var(--sp-m) 0 var(--sp-l);
	border-top: 1px solid var(--au-divider);
}
.au-breadcrumb--bottom .breadcrumb {
	margin: 0;
	padding: 0 var(--page-x);
	background: none;
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.au-breadcrumb--bottom .breadcrumb li,
.au-breadcrumb--bottom .breadcrumb li a { color: var(--au-muted); }
.au-breadcrumb--bottom .breadcrumb li.active span { color: var(--au-fg); }

/* ---------- 7. FOOTER ĐEN LỚN ---------- */
.main-footer { background: #000; color: var(--au-inverse); }
.main-footer .footer-card-glass {
	background: #000;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.au-footer {
	padding: var(--sp-2xl) var(--page-x) var(--sp-m);
	background: #000;
	color: var(--au-inverse);
}
.au-footer__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-m);
}
@media (min-width: 768px) {
	.au-footer__cols { grid-template-columns: repeat(2, 1fr); gap: var(--sp-l); }
}
@media (min-width: 1024px) {
	.au-footer__cols { grid-template-columns: repeat(4, 1fr); column-gap: var(--sp-2xl); }
	.au-footer { padding-top: var(--sp-3xl); }
}
.au-footer h3,
.au-footer .ft-title {
	margin: 0 0 var(--sp-xs);
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}
.au-footer ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: var(--sp-xs); }
.au-footer a { color: var(--au-inverse); font-size: var(--fs-small); line-height: var(--lh-small); text-decoration: underline; text-underline-offset: 3px; }
.au-footer a:hover, .au-footer a:focus { color: var(--au-sand); }
.au-footer .ft-caption { color: rgba(255, 255, 255, 0.6); font-size: var(--fs-small); line-height: var(--lh-small); }
.au-footer .ft-hotline .info { font-size: 1.25rem; letter-spacing: 0.02em; }

/* Mạng xã hội: icon viền tròn mảnh */
.au-footer .social-icons { flex-direction: row; gap: var(--sp-xs); flex-wrap: wrap; }
.au-footer .social-icons li { margin: 0; }
.au-footer .social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	color: var(--au-inverse);
}
.au-footer .social-wrapper { text-decoration: none; }
.au-footer .social-icon:hover { border-color: var(--au-inverse); }

/* Ô đăng ký nhận tin trên nền đen */
.au-footer .widget-newsletter .input-group { display: flex; border-bottom: 1px solid rgba(255, 255, 255, 0.35); }
.au-footer .widget-newsletter input[type="email"] {
	flex: 1 1 auto;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--au-inverse);
	font-size: var(--fs-small);
}
.au-footer .widget-newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.au-footer .widget-newsletter .btn-sign-up {
	flex: 0 0 auto;
	height: 44px;
	padding: 0 var(--sp-xs);
	border: 0;
	background: transparent;
	color: var(--au-inverse);
	font-size: var(--fs-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.au-footer .widget-newsletter .btn-sign-up:hover { color: var(--au-sand); }

.au-footer__legal {
	margin: var(--sp-2xl) 0 0;
	padding-top: var(--sp-m);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	color: rgba(255, 255, 255, 0.6);
}

/* ---------- 9. PANEL "CONTACT US" TRONG DRAWER PHẢI ---------- */
/* Dùng chung cơ chế show-* của theme: chỉ hiện khi drawer có class 'show-contact' */
#site-contact { display: none; }
#site-nav--mobile.show-contact #site-contact { display: block; }
#site-nav--mobile.show-contact #site-navigation,
#site-nav--mobile.show-contact #site-cart,
#site-nav--mobile.show-contact #site-search,
#site-nav--mobile.show-contact #site-filters { display: none; }
.site-nav.style--sidebar.show-contact .site-nav-container-last { padding-bottom: 100px; }

.au-contactpanel { background: var(--au-inverse); }
.au-contactpanel__title {
	margin: 0 0 var(--sp-l);
	font-size: 28px;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--au-fg);
}
.au-contactpanel__list { margin: 0; padding: 0; list-style: none; }
.au-contactpanel__item + .au-contactpanel__item { margin-top: var(--sp-m); }
.au-contactpanel__link {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2xs);
	font-size: var(--fs-body);
	line-height: 1.4;
	color: var(--au-fg);
	text-decoration: underline;
	text-underline-offset: 4px;
}
.au-contactpanel__link:hover,
.au-contactpanel__link:focus { color: var(--au-fg); opacity: 0.7; }
.au-contactpanel__link svg { flex: 0 0 auto; }
.au-contactpanel__note {
	margin: var(--sp-2xs) 0 0;
	font-size: var(--fs-small);
	line-height: var(--lh-small);
	color: var(--au-muted);
}
.au-contactpanel__more {
	margin-top: var(--sp-2xl);
	padding-top: var(--sp-m);
	border-top: 1px solid var(--au-divider);
}
.au-contactpanel__ask {
	margin: 0 0 var(--sp-xs);
	font-size: var(--fs-body);
	font-weight: 600;
	color: var(--au-fg);
}
.au-contactpanel__cta {
	display: inline-block;
	font-size: var(--fs-body);
	color: var(--au-fg);
	text-decoration: underline;
	text-underline-offset: 4px;
}

/* Nút đóng drawer: vòng tròn đen chữ X trắng (đúng kiểu trang gốc) */
.site-close-handle {
	top: var(--sp-s);
	right: var(--sp-s);
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: var(--au-fg);
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-close-handle .hamburger-menu { width: 18px; height: 18px; }
.site-close-handle .hamburger-menu .bar,
.site-close-handle .hamburger-menu .bar.animate { background: transparent; }
.site-close-handle .hamburger-menu .bar:before,
.site-close-handle .hamburger-menu .bar:after {
	background: var(--au-inverse);
	width: 18px;
	height: 1.5px;
	right: auto;
	left: 0;
}

/* ---------- 10. SỬA LỖI GIAO DIỆN ---------- */

/* 10a. Icon header bị tô đen đặc — do styles.css dòng 243:
       .icon-cart svg,.icon-search svg{fill:#252a2b}. Trả về dạng nét (outline). */
.header-wrap-icon svg,
.header-wrap-icon .icon-cart svg,
.header-wrap-icon .icon-search svg,
.header-wrap-icon .svg-cart,
.au-contact svg,
.au-menu-btn svg {
	fill: none !important;
	stroke: currentColor !important;
	width: 20px !important;
	height: 20px !important;
}
.au-contact svg { width: 14px !important; height: 14px !important; }
.header-wrap-icon svg path,
.header-wrap-icon svg circle,
.header-wrap-icon svg g { fill: none !important; stroke: currentColor !important; }

/* currentColor phải là màu chữ, KHÔNG phải màu link mặc định của trình duyệt */
.header-wrap-icon,
.header-wrap-icon a,
.header-wrap-icon a:hover,
.header-wrap-icon a:focus,
.header-wrap-icon a:visited,
.wrap-logo .au-brand,
.wrap-logo .au-brand:hover,
.wrap-logo .au-brand:visited { color: var(--au-fg) !important; }

/* Không giữ viền focus khi bấm chuột; chỉ hiện khi điều hướng bằng bàn phím */
.header-wrap-icon > span:focus,
.header-wrap-icon a:focus,
.au-contact:focus,
.au-menu-btn:focus { outline: none; }
.header-wrap-icon a:focus-visible,
.au-contact:focus-visible,
.au-menu-btn:focus-visible { outline: 2px solid var(--au-fg); outline-offset: 2px; }

/* 10b. Chọn size/màu bị "focus" nhiều ô cùng lúc.
       Nguyên nhân: theme gắn class .sd (hết hàng) và styles.css dòng 866 vẽ
       .sd bằng VIỀN ĐẬM — trông y như ô đang chọn. Nay tách rõ 2 trạng thái:
       .is-selected = đang chọn (viền đen) · .sd = hết hàng (mờ, gạch ngang). */
.product-content-desc .swatch { float: none; width: auto; margin: 0 0 var(--sp-s); }
.product-content-desc .swatch .header {
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--au-muted);
}
.product-content-desc .swatch .swatch-element { margin: 0 var(--sp-2xs) var(--sp-2xs) 0; }
.product-content-desc .swatch .swatch-element label {
	min-width: 58px;
	height: 40px;
	line-height: 38px;
	padding: 0 var(--sp-xs);
	border: 1px solid var(--au-divider);
	border-radius: 2px;
	background: transparent;
	font-size: var(--fs-small);
	font-weight: 400;
	color: var(--au-fg);
}
.product-content-desc .swatch .swatch-element.color label {
	min-width: 44px;
	width: 44px;
	height: 44px;
	padding: 4px;
}
/* --- Trạng thái ô biến thể ---
   ĐÃ KIỂM CHỨNG TRÊN TRANG THẬT (babyau.com), ngữ nghĩa của theme như sau:
     · label.sd            = ĐANG CHỌN   (product.liquid:1096 `$this.next().addClass('sd')`)
     · input[disabled]     = KHÔNG CHỌN ĐƯỢC (product.liquid:1116/1179)
     · input:checked       = KHÔNG BAO GIỜ đổi, vì product.liquid:1092 gọi
                             e.preventDefault() trên click của '.swatch input'
   Vì vậy "đang chọn" phải nhận cả 3 tín hiệu: .sd, .is-selected và :checked.
   Thứ tự: mặc định -> không khả dụng -> ĐANG CHỌN (đặt cuối để luôn thắng). */

/* mặc định */
.product-content-desc .swatch .swatch-element label {
	border: 1px solid var(--au-divider);
	border-radius: 2px;
	box-shadow: none;
	transform: none;
}

/* không khả dụng: mờ + gạch ngang */
.product-content-desc .swatch .swatch-element input:disabled + label,
.product-content-desc .swatch .swatch-element.soldout label {
	border-color: var(--au-divider) !important;
	box-shadow: none !important;
	color: var(--au-muted) !important;
	text-decoration: line-through;
	opacity: 0.45;
	transform: none;
}

/* ĐANG CHỌN — nét nguệch ngoạc như bút sáp trẻ con, đỏ nhạt */
.product-content-desc .swatch .swatch-element label.sd,
.product-content-desc .swatch .swatch-element.is-selected label,
.product-content-desc .swatch .swatch-element input:checked + label {
	border: 2px solid var(--au-crayon) !important;
	border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px !important;
	box-shadow: 0 0 0 1px rgba(232, 131, 125, 0.3) !important;
	color: var(--au-fg) !important;
	text-decoration: none !important;
	opacity: 1 !important;
	transform: rotate(-0.7deg);
}
.product-content-desc .swatch .swatch-element.color label.sd,
.product-content-desc .swatch .swatch-element.color.is-selected label,
.product-content-desc .swatch .swatch-element.color input:checked + label {
	border-radius: 225px 15px 255px 15px / 15px 255px 15px 225px !important;
	transform: rotate(0.8deg);
}

/* 10c. Breadcrumb: dùng chung màu nền trang, canh giữa, chữ nhỏ */
.breadcrumb-shop.au-breadcrumb--bottom {
	background: transparent !important;
	border-top: 1px solid var(--au-divider);
	margin: 0;
	padding: var(--sp-s) 0;
	display: block;
}
.au-breadcrumb--bottom > div { float: none; width: 100%; padding: 0; text-align: center; }
.au-breadcrumb--bottom .breadcrumb {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: var(--sp-2xs);
	margin: 0;
	padding: 0 var(--page-x);
	background: transparent !important;
	border-radius: 0;
	font-size: 11px;
	line-height: 16px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.au-breadcrumb--bottom .breadcrumb > li { float: none; display: inline-flex; align-items: center; }
.au-breadcrumb--bottom .breadcrumb > li + li:before { content: '/'; padding: 0 var(--sp-2xs) 0 0; color: var(--au-muted); }
.au-breadcrumb--bottom .breadcrumb li,
.au-breadcrumb--bottom .breadcrumb li a { color: var(--au-muted); text-decoration: none; }
.au-breadcrumb--bottom .breadcrumb li.active span { color: var(--au-fg); }

/* 10d. Footer: full width, bỏ ảnh nền + khung bọc bên ngoài */
footer.main-footer {
	background-image: none !important;
	background: #000 !important;
	padding: 0 !important;
	margin: 0 !important;
	max-width: none !important;
}
.main-footer .footer-card-glass,
.footer-card-glass {
	background: #000 !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.au-footer { max-width: none; margin: 0; border-radius: 0; }

/* ---------- 11. BỐ CỤC PDP KIỂU GUCCI ---------- */
/* Bỏ padding của container để gallery tràn viền */
.productDetail-page > .container-fluid { padding-left: 0; padding-right: 0; }

/* Tắt flickity để dùng scroll-snap thuần CSS — hành vi vuốt ngang giống nhau mọi thiết bị */
.box__product-gallery.scroll .site-box-content:after { content: '' !important; }

.pr_style_02 .wrapper-detail { display: block; margin: 0; }

/* --- 11a. Gallery: tràn viền, chạy lên dưới header, 2 ảnh cạnh nhau, vuốt ngang --- */
.pr_style_02 .product-image-detail {
	width: 100%;
	max-width: none;
	float: none;
	/* Theme ép .box__product-gallery cao 70vh (tablet) / 60vh (mobile) — styles.css:2283 & 2354.
	   Chiều cao đó KHÔNG khớp ảnh 3:4 nên ảnh tràn xuống che nội dung bên dưới và
	   cụm HUD (neo theo đáy thẻ này) bị lệch. Để chiều cao chạy theo ảnh. */
	height: auto !important;
	min-height: 0 !important;
	overflow: visible;
	padding: 0 !important;
	border: 0 !important;
	position: relative !important;   /* huỷ sticky cũ, vẫn làm mốc cho lớp phủ */
	top: auto !important;
	margin: calc(var(--header-h) * -1) 0 0 !important;  /* tràn lên dưới header */
}
.pr_style_02 #sliderproduct {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	/* KHÔNG dùng scroll-behavior:smooth — snap mandatory sẽ huỷ animation của
	   scrollTo() và kéo về vị trí cũ. Chuyển động do JS tự điều khiển (scripts.js). */
	scroll-behavior: auto;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
	background: var(--au-image-bg);
}
.pr_style_02 #sliderproduct::-webkit-scrollbar { display: none; }
/* chiều cao khung trượt do tỉ lệ ảnh quyết định, không để inline-style của flickity ép */
.pr_style_02 #sliderproduct { height: auto !important; align-items: stretch; }
.pr_style_02 #sliderproduct li.product-gallery-item {
	flex: 0 0 calc(100% / var(--slides-per-view));
	scroll-snap-align: start;
	width: auto !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0 !important;
	aspect-ratio: var(--gallery-ratio);   /* LUÔN 3:4 — chỉ chiều cao đổi theo bề rộng slide */
	height: auto !important;
	overflow: hidden;
	cursor: zoom-in;
}
.pr_style_02 #sliderproduct li.product-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0 !important;
	transition: transform 0.35s ease;
}
/* Click để phóng to gấp 2 lần (bấm lần nữa để thu về) */
.pr_style_02 #sliderproduct li.product-gallery-item.is-zoomed { cursor: zoom-out; }
.pr_style_02 #sliderproduct li.product-gallery-item.is-zoomed img { transform: scale(2); }

/* Lớp phủ thumbnail + mũi tên: góc dưới bên phải khung ảnh */
/* Thumbnail nằm CÙNG HÀNG với cụm nút trong .au-gallery-hud (không absolute nữa) */
@media (min-width: 1024px) {
	.pr_style_02 .au-gallery-thumbs {
		position: static;
		bottom: auto;
		right: auto;
		top: auto;
		left: auto;
		margin: 0;
		z-index: auto;
	}
}
.au-gallery-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	margin-left: var(--sp-3xs);
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	color: var(--au-fg);
	cursor: pointer;
}
.au-gallery-nav:hover { background: #fff; }

/* --- 11b. Khối thông tin: 2 cột bên dưới gallery (trái mô tả · phải mua hàng) --- */
.pr_style_02 .product-content-desc {
	width: 100%;
	max-width: none;
	float: none;
	position: static !important;
	top: auto !important;
	border: 0 !important;
	padding: var(--sp-l) var(--page-x) var(--sp-3xl) !important;
}
@media (min-width: 1024px) {
	.pr_style_02 .product-content-desc {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);   /* chia đôi: trái mô tả · phải thông tin */
		column-gap: var(--sp-3xl);
		align-items: start;
	}
	/* mặc định mọi khối nằm cột trái */
	.pr_style_02 .product-content-desc > * { grid-column: 1; min-width: 0; }
	/* Cột PHẢI gom: tên SP · SKU · giá · màu · size · thêm vào giỏ */
	.pr_style_02 .product-content-desc > .au-buycol {
		grid-column: 2;
		max-width: none;
		grid-row: 1 / span 3;
		position: sticky;
		top: calc(var(--header-h) + var(--sp-s));
		margin: 0;
		min-width: 0;
	}
	.pr_style_02 .product-content-desc > .product-description { grid-column: 1; grid-row: 1; }
	.pr_style_02 .product-content-desc > .wrap-tagged { grid-column: 1; grid-row: 2; }
}

/* Cỡ chữ theo tỉ lệ Gucci */
.pr_style_02 .product-title h1 {
	margin: 0 0 var(--sp-2xs);
	font-size: var(--fs-body);
	line-height: 1.5rem;
	letter-spacing: var(--ls-title);
	font-weight: 400;
	text-transform: none;
}
.pr_style_02 .product-title #pro_sku {
	font-size: var(--fs-small);
	line-height: var(--lh-small);
	color: var(--au-muted);
}
.pr_style_02 .product-title #pro_sku strong { font-weight: 400; }
.pr_style_02 .product-price { margin: var(--sp-s) 0; }
.pr_style_02 .product-price .pro-price {
	font-size: 1.125rem;
	line-height: 1.75rem;
	font-weight: 600;
}
.pr_style_02 .product-price del {
	font-size: var(--fs-small);
	color: var(--au-muted);
	font-weight: 400;
}
.pr_style_02 .product-description .title-bl h2,
.pr_style_02 .product-description .title-bl {
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
/* Chữ mô tả nhỏ lại đúng tỉ lệ Gucci (15/24) */
.pr_style_02 .product-description .description-content,
.pr_style_02 .description-productdetail,
.pr_style_02 .description-productdetail p,
.pr_style_02 .description-productdetail li,
.pr_style_02 .description-content p {
	font-size: var(--fs-desc) !important;
	line-height: var(--lh-desc) !important;
	color: var(--au-fg);
}
/* Mô tả để MỘT cột (chia 2 cột kèm cắt chiều cao gây chồng chữ) */
.pr_style_02 .description-productdetail { columns: auto; column-gap: normal; }
.pr_style_02 .description-productdetail > *:first-child { margin-top: 0; }

/* ---------- 12. TINH CHỈNH ĐỢT 2 ---------- */

/* 12a. Trang chi tiết SP: header trong suốt lúc ở đỉnh, đặc lại khi cuộn
        (ảnh tràn lên dưới header nên để trong suốt mới hợp lý) */
/* 'body.' để thắng specificity của rule body:not(.template-index) ở mục 2 */
body.template-product .main-header.wrap-flex-align {
	background: transparent;
	border-bottom-color: transparent;
}
body.template-product .main-header.is-scrolled.wrap-flex-align {
	background: var(--au-cream);
	border-bottom-color: var(--au-divider);
}

/* 12b. Desktop bỏ dấu + trước chữ "Liên hệ" */
@media (min-width: 1024px) { .au-contact__plus { display: none; } }

/* 12c. Cụm điều khiển gallery: thumbnail · prev/next · phóng to · số thứ tự
        Gom thành MỘT cụm, tách khỏi ảnh (trước đây icon dính vào slide) */
.pr_style_02 .product-image__button,
.pr_style_02 .icon-pr-fix { display: none !important; }

.au-gallery-hud {
	position: absolute;
	left: var(--page-x);
	right: var(--page-x);
	bottom: var(--sp-s);
	z-index: 6;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--sp-2xs);
	pointer-events: none;
}
.au-gallery-hud > * { pointer-events: auto; }
.au-gallery-actions {
	display: flex;
	align-items: center;
	gap: var(--sp-3xs);
	padding: var(--sp-3xs);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
}
.au-gallery-counter {
	display: inline-flex;
	align-items: center;
	height: 28px;
	padding: 0 var(--sp-2xs);
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	white-space: nowrap;
	color: var(--au-fg);
}
.au-gallery-nav {
	margin-left: 0;
	background: transparent;
}
.au-gallery-nav:hover { background: rgba(0, 0, 0, 0.06); }
.au-gallery-fullscreen svg { width: 18px; height: 18px; }

/* Thanh tiến trình dưới đáy ảnh — cho biết đang ở hình nào */
.au-gallery-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: rgba(0, 0, 0, 0.12);
	z-index: 6;
}
.au-gallery-progress > span {
	display: block;
	height: 100%;
	width: 0;
	background: var(--au-fg);
	transition: width 0.25s ease;
}

/* Trên mobile/tablet ẩn dải thumbnail, giữ lại nút + số thứ tự + thanh tiến trình */
@media (max-width: 1023px) {
	.au-gallery-hud .au-gallery-thumbs { display: none; }
	.au-gallery-hud { bottom: var(--sp-xs); }
}
@media (min-width: 1024px) {
	.pr_style_02 .au-gallery-hud { bottom: var(--sp-l); }
}

/* 12d. Mô tả: mặc định 3 dòng + nút "Xem thêm" */
/* Dùng max-height thay -webkit-line-clamp: mô tả Haravan có thẻ block lồng nhau
   (.description-productdetail > p) nên line-clamp không cắt được. */
.product-description .description-content {
	max-height: calc(var(--lh-desc) * 10);   /* khoảng 10 dòng rồi mới cần "Xem thêm" */
	overflow: hidden;
}
.product-description.is-open .description-content {
	max-height: none;
	overflow: visible;
}
.product-description .description-content > *:first-child { margin-top: 0; }
.au-desc-more {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-3xs);
	margin-top: var(--sp-2xs);
	padding: 0;
	border: 0;
	background: none;
	color: var(--au-fg);
	font-size: var(--fs-small);
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}
.au-desc-more:hover { opacity: 0.7; }

/* 12e. Cột phải gom tên SP · SKU · giá · biến thể · nút mua */
.au-buycol { display: block; }


/* 12f. Menu tablet/mobile: FULL WIDTH, trượt từ DƯỚI LÊN */
@media (max-width: 1023px) {
	.site-nav.style--sidebar {
		width: 100%;
		max-width: none;
		height: 90vh;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		border-radius: 16px 16px 0 0;
		-ms-transform: translateY(100%);
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
	.site-nav.style--sidebar.active {
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	/* không đẩy trang sang trái nữa vì panel đi từ dưới lên */
	.main-body.sidebar-move { right: 0; }
	.site-nav.style--sidebar .site-nav-container-last { padding: 56px 24px 120px; }
	.site-close-handle { top: var(--sp-xs); right: var(--sp-xs); }
}

/* 12g. Trang chủ — cụm chữ trên banner bị lệch trái ở tablet, canh lại giữa */
@media (max-width: 1199px) {
	.box-banner-inf {
		margin-left: auto !important;
		margin-right: auto !important;
		left: 0;
		right: 0;
		text-align: center;
	}
}

/* ---------- 13. TRANG GIỎ HÀNG (bố cục theo gucci.com/cart) ---------- */
.au-cart { padding: var(--sp-l) 0 var(--sp-3xl); }
.au-cart > .container-fluid { padding-inline: var(--page-x); }

.au-cart__head { margin-bottom: var(--sp-l); }
.au-cart__head h1 {
	margin: 0 0 var(--sp-2xs);
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.au-cart .count-cart { margin: 0; font-size: var(--fs-small); color: var(--au-muted); }
.au-cart .count-cart span { font-weight: 600; color: var(--au-fg); }

.au-cart__empty { padding: var(--sp-3xl) 0; text-align: center; }
.au-cart__empty .link-continue a { text-decoration: underline; text-underline-offset: 3px; }

/* Lưới 2 cột: trái danh sách · phải hộp tóm tắt */
.au-cart__grid { display: block; }
@media (min-width: 1024px) {
	.au-cart__grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) var(--buy-col);
		column-gap: var(--sp-2xl);
		align-items: start;
	}
}

/* --- Cột trái --- */
.au-cart__section-head {
	padding-bottom: var(--sp-xs);
	border-bottom: 1px solid var(--au-divider);
}
.au-cart__section-head h2 {
	margin: 0;
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Bảng giữ nguyên cấu trúc (JS cập nhật giá dựa vào nó) nhưng hiển thị như danh sách */
.au-cart .table-cart { width: 100%; margin: 0; border: 0; border-collapse: collapse; }
.au-cart .table-cart thead { display: none; }
.au-cart .table-cart,
.au-cart .table-cart tbody { display: block; width: 100%; }
.au-cart .table-cart tr.line-item-container {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) 24px;
	column-gap: var(--sp-s);
	align-items: start;
	padding: var(--sp-m) 0;
	border-bottom: 1px solid var(--au-divider);
}
@media (min-width: 768px) {
	.au-cart .table-cart tr.line-item-container { grid-template-columns: 140px minmax(0, 1fr) 24px; column-gap: var(--sp-m); }
}
.au-cart .table-cart td {
	display: block;
	padding: 0;
	border: 0;
	vertical-align: top;
	min-width: 0;
	overflow-wrap: anywhere;   /* tên/SKU dài không làm vỡ lưới */
}
.au-cart .table-cart td.image .product_image { background: var(--au-image-bg); }
.au-cart .table-cart td.image img { width: 100%; height: auto; display: block; }
.au-cart .table-cart td.item a { text-decoration: none; color: var(--au-fg); }
.au-cart .table-cart td.item h3 {
	margin: 0 0 var(--sp-2xs);
	font-size: var(--fs-body);
	line-height: 1.5rem;
	font-weight: 400;
	letter-spacing: var(--ls-title);
}
.au-cart .table-cart td.item p { margin: 0 0 var(--sp-3xs); font-size: var(--fs-small); line-height: var(--lh-small); color: var(--au-muted); }
.au-cart .table-cart td.item p.price { margin-top: var(--sp-xs); color: var(--au-fg); font-size: var(--fs-body); }
.au-cart .table-cart td.item p.price del { color: var(--au-muted); font-size: var(--fs-small); margin-left: var(--sp-2xs); }
.au-cart .table-cart td.remove { text-align: right; }
.au-cart .table-cart td.remove img { width: 14px; height: auto; display: inline-block; opacity: 0.5; }
.au-cart .table-cart td.remove a:hover img { opacity: 1; }

/* Ô số lượng vuông vức, viền mảnh */
.au-cart .qty.quantity-partent {
	display: inline-flex;
	align-items: center;
	margin-top: var(--sp-xs);
	border: 1px solid var(--au-divider);
	border-radius: 2px;
	overflow: hidden;
}
.au-cart .qty .qty-btn {
	width: 34px;
	height: 34px;
	border: 0;
	background: none;
	color: var(--au-fg);
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
}
.au-cart .qty .qty-btn:hover { background: rgba(0, 0, 0, 0.05); }
.au-cart .qty input.item-quantity {
	width: 40px;
	height: 34px;
	padding: 0;
	border: 0;
	border-inline: 1px solid var(--au-divider);
	background: none;
	text-align: center;
	font-size: var(--fs-small);
}

/* Ghi chú đơn hàng */
.au-cart .checkout-note { margin-top: var(--sp-m); }
.au-cart .checkout-note label {
	display: block;
	margin-bottom: var(--sp-2xs);
	font-size: var(--fs-micro);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 700;
}
.au-cart .checkout-note textarea {
	width: 100%;
	padding: var(--sp-2xs) var(--sp-xs);
	border: 1px solid var(--au-divider);
	border-radius: 2px;
	background: transparent;
	font-family: inherit;
	font-size: var(--fs-small);
	resize: vertical;
}

/* --- Cột phải: hộp tóm tắt đơn hàng --- */
.au-cart__summary { margin-top: var(--sp-l); }
@media (min-width: 1024px) {
	.au-cart__summary { margin-top: 0; position: sticky; top: calc(var(--header-h) + var(--sp-s)); }
}
.au-cart__summary-inner {
	padding: var(--sp-m);
	border: 1px solid var(--au-divider);
	background: transparent;
}
.au-cart__summary-title {
	margin: 0 0 var(--sp-m);
	padding-bottom: var(--sp-xs);
	border-bottom: 1px solid var(--au-divider);
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.au-cart__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--sp-xs);
	margin-bottom: var(--sp-xs);
	font-size: var(--fs-small);
	line-height: var(--lh-small);
}
.au-cart__muted { color: var(--au-muted); }
.au-cart__row--total {
	margin-top: var(--sp-s);
	padding-top: var(--sp-xs);
	border-top: 1px solid var(--au-divider);
	font-size: var(--fs-body);
}
.au-cart__row--total b { font-size: 1.25rem; font-weight: 600; }
.au-cart__note {
	margin: 0 0 var(--sp-m);
	font-size: var(--fs-micro);
	line-height: 1.1rem;
	color: var(--au-muted);
}

.au-cart__checkout,
.au-cart__update {
	display: block;
	width: 100%;
	min-height: 48px;
	padding: 15px var(--sp-s);
	border: 1px solid var(--au-fg);
	border-radius: 0;
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}
.au-cart__checkout { background: var(--au-fg); color: var(--au-inverse); }
.au-cart__checkout:hover { opacity: 0.85; }
.au-cart__update { margin-top: var(--sp-2xs); background: transparent; color: var(--au-fg); }
.au-cart__update:hover { background: var(--au-fg); color: var(--au-inverse); }
.au-cart__continue {
	display: block;
	margin-top: var(--sp-xs);
	text-align: center;
	font-size: var(--fs-small);
	color: var(--au-fg);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.au-cart__extra { margin-top: var(--sp-xs); }

/* ---------- 14. TINH CHỈNH ĐỢT 3 ---------- */

/* 14a. Trang chủ: header trong suốt lúc mới vào (giống trang sản phẩm),
        banner chạy full lên tận đỉnh — không bị header che góc trên. */
body.template-index .main-header.wrap-flex-align {
	background: transparent;
	border-bottom-color: transparent;
}
body.template-index .main-header.is-scrolled.wrap-flex-align {
	background: var(--au-cream);
	border-bottom-color: var(--au-divider);
}
/* bỏ khoảng chừa header ở trang chủ (header-h 56px -> 0) */
body.template-index main,
main.main-index { padding-top: 0 !important; }
/* bỏ padding của khối tiêu đề đầu trang chủ */
div.wrapper-heading-home { padding: 0 !important; border-bottom: 0 !important; }

/* 14b. Banner trang chủ: thay gạch trang trí bằng nút "Xem ngay" */
.caption_banner h2:after { display: none !important; }
.au-banner-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: var(--sp-s);
	padding: 12px var(--sp-m);
	background: var(--au-inverse);
	color: var(--au-fg);
	border: 1px solid var(--au-inverse);
	border-radius: 999px;
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.block-banner-category:hover .au-banner-cta { background: var(--au-fg); color: var(--au-inverse); border-color: var(--au-fg); }

/* 14c. Logo luôn nằm CHÍNH GIỮA header trên mobile/tablet */
@media (max-width: 1023px) {
	.main-header.wrap-flex-align { position: fixed; }
	.wrap-logo {
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		margin: 0;
		z-index: 1;
		pointer-events: auto;
	}
	.desktop-menu-left, .header-wrap-icon { position: relative; z-index: 2; }
}

/* 14d. Không thấy animation drawer khi đổi kích thước desktop <-> tablet */
.au-no-anim .site-nav.style--sidebar,
.au-no-anim .main-body { transition: none !important; }

/* 14e. Trang liên hệ: nền đọc được phía dưới form */
.layout-pageContact .wrapbox-content-page {
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 4px;
}
@media (min-width: 992px) {
	.layout-pageContact .wrapbox-content-page { padding: var(--sp-2xl) var(--sp-m); }
}
.layout-pageContact .contact-form .form-control,
.layout-pageContact .contact-form input,
.layout-pageContact .contact-form textarea {
	width: 100%;
	padding: 12px var(--sp-xs);
	border: 1px solid var(--au-divider);
	border-radius: 2px;
	background: #fff;
	color: var(--au-fg);
	font-family: inherit;
	font-size: var(--fs-small);
}
.layout-pageContact .contact-form input::placeholder,
.layout-pageContact .contact-form textarea::placeholder { color: var(--au-muted); }
.layout-pageContact .contact-form .form-control:focus {
	outline: none;
	border-color: var(--au-fg);
}
.layout-pageContact .box-info-contact .list-info p { color: var(--au-fg); }

/* 14f. Danh sách sản phẩm: desktop 2 cột */
@media (min-width: 992px) {
	.collection-page .content-product-list > .pro-loop,
	.search-page .content-product-list > .pro-loop { width: 50%; }
}

/* 14g. Tải thêm sản phẩm (infinite loading) — ẩn phân trang số */
#auPagination { display: none !important; }
.au-infinite {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-xs);
	padding: var(--sp-l) var(--page-x) var(--sp-2xl);
	text-align: center;
}
.au-infinite__more {
	min-height: 48px;
	padding: 15px var(--sp-m);
	border: 1px solid var(--au-fg);
	border-radius: 0;
	background: transparent;
	color: var(--au-fg);
	font-size: var(--fs-micro);
	line-height: var(--lh-micro);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}
.au-infinite__more:hover { background: var(--au-fg); color: var(--au-inverse); }
.au-infinite__more[hidden] { display: none; }
.au-infinite__end { margin: 0; font-size: var(--fs-small); color: var(--au-muted); }
.au-infinite__spinner {
	display: none;
	width: 22px;
	height: 22px;
	border: 2px solid var(--au-divider);
	border-top-color: var(--au-fg);
	border-radius: 50%;
	animation: au-spin 0.7s linear infinite;
}
.au-infinite.is-loading .au-infinite__spinner { display: block; }
.au-infinite.is-loading .au-infinite__more { display: none; }
@keyframes au-spin { to { transform: rotate(360deg); } }

/* ---------- 8. GIẢM CHUYỂN ĐỘNG ---------- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
