/**
 * LineKits 覆盖层样式。
 *
 * 依赖 ueeshop.css（源站 t177 主题样式）；本文件只做：
 * 1. WordPress 基础重置；2. 轮播/大菜单/手风琴等交互所需样式；
 * 3. 首页模块补充（VIEW MORE、评论墙、Track Order、FAQ）；
 * 4. WooCommerce 页面适配；5. 响应式断点。
 *
 * @package linekits
 */

/* ---------- 1. WordPress 基础重置 ---------- */
html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: "Opensans-Regular", "OpenSans-Regular", Arial, "Microsoft YaHei", sans-serif;
	color: var(--ThemesTextContentColor, #333);
	background: #fff;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: middle;
}

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

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	background: #fff;
	clip: auto;
	clip-path: none;
	color: #ff7828;
	display: block;
	font-size: 14px;
	height: auto;
	left: 6px;
	padding: 10px 16px;
	top: 6px;
	width: auto;
	z-index: 100000;
}

.lk-main {
	min-height: 40vh;
}

.clear:after,
.clean:after {
	content: "";
	display: block;
	clear: both;
}

/* Ueeshop 容器（源站 1500px 内容宽） */
.ly_i_wrapper_1500 {
	width: 1500px;
	max-width: 96%;
	margin: 0 auto;
	box-sizing: border-box;
}

/* 头部左侧文字标识（源站顶栏） */
.ly_header_lctext {
	font-family: "OpenSans-Bold", Arial, sans-serif;
	letter-spacing: 1px;
}

.lk-logo-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

/* ---------- 2. 轮播 ---------- */
.ly_carousel_1 .carousel_content {
	position: relative;
	overflow: hidden;
}

.ly_carousel_1 .carousel_content::before {
	content: "";
	display: block;
	padding-top: 44.63%;
}

.ly_carousel_1 .carousel_item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.ly_carousel_1 .carousel_item.carousel_current {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

.ly_carousel_1 .carousel_item img {
	width: 100%;
	display: block;
}

.ly_carousel_1 .carousel_btn .carousel_prev,
.ly_carousel_1 .carousel_btn .carousel_next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	background: rgba(255, 255, 255, 0.75);
	color: #333;
	cursor: pointer;
	z-index: 12;
	transition: background 0.3s;
}

.ly_carousel_1 .carousel_btn .carousel_prev:hover,
.ly_carousel_1 .carousel_btn .carousel_next:hover {
	background: #ff7828;
	color: #fff;
}

.ly_carousel_1 .carousel_prev {
	left: 0;
}

.ly_carousel_1 .carousel_next {
	right: 0;
}

.ly_carousel_1 .carousel_dots {
	position: absolute;
	bottom: 14px;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 12;
}

.ly_carousel_1 .carousel_dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(0, 0, 0, 0.15);
	cursor: pointer;
}

.ly_carousel_1 .carousel_dot.on {
	background: #ff7828;
	border-color: #ff7828;
}

/* ---------- 3. 大菜单（hover 展开） ---------- */
.default_nav .default_nav_themes {
	position: relative;
	display: inline-block;
}

.default_nav .default_nav_themes > a {
	display: block;
	padding: 0 18px;
	line-height: 46px;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	color: var(--ThemesNavTextColor, #000);
	transition: color 0.25s;
}

.default_nav .default_nav_themes:hover > a {
	color: var(--ThemesNavTextHoverColor, #ff7828);
}

.default_nav .default_nav_themes:hover > .nav_sec,
.default_nav .default_nav_themes.nav_open > .nav_sec {
	display: block;
	opacity: 1;
	margin-top: 0;
}

.default_nav .nav_sec .nav_sec_item {
	float: left;
	width: 33.33%;
	box-sizing: border-box;
	padding: 4px 10px;
}

.default_nav .nav_sec .nav_sec_a {
	display: block;
	padding: 6px 0;
	font-size: 14px;
	color: var(--ThemesNavLevel2TextColor, #000);
}

.default_nav .nav_sec .nav_sec_a:hover {
	color: var(--ThemesNavLevel2TextHoverColor, #ff7828);
}

/* 左侧分类下拉（cate_nav） */
.ly_nav_cate .cate_nav_list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	z-index: 10005;
	max-height: 520px;
	overflow-y: auto;
}

.ly_nav_cate:hover .cate_nav_list,
.ly_nav_cate.cate_open .cate_nav_list {
	display: block;
}

.ly_nav_cate {
	position: relative;
}

/* ---------- 4. 首页模块补充 ---------- */
.ly_product_more {
	clear: both;
	text-align: center;
	padding: 26px 0 10px;
}

.ly_product_more a {
	display: inline-block;
	padding: 10px 34px;
	border: 1px solid #222;
	color: #222;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: all 0.3s;
}

.ly_product_more a:hover {
	background: var(--ThemesBoardBgColor, #ff7828);
	border-color: var(--ThemesBoardBgColor, #ff7828);
	color: #fff;
}

.product_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.product_list .product_item {
	float: left;
	width: 25%;
	box-sizing: border-box;
	padding: 0 10px 24px;
	list-style: none;
}

.ly_products_box {
	overflow: hidden;
}

.ly_products_box .ly_pro_item {
	float: left;
	width: 25%;
	box-sizing: border-box;
	padding: 0 10px 24px;
}

/* 评论墙 */
.total_products_review .review_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 26px;
}

.total_products_review .list_item {
	background: #fff;
	border: 1px solid #eee;
	padding: 16px;
	box-sizing: border-box;
}

.total_products_review .item_img img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.total_products_review .item_content {
	margin: 10px 0;
	font-size: 13px;
	color: #555;
	line-height: 1.7;
}

.total_products_review .review_pro_item .pro_info .title {
	font-size: 13px;
	color: #222;
	margin-bottom: 6px;
}

.total_products_review .review_pro_item .link a {
	display: inline-block;
	font-size: 12px;
	padding: 6px 14px;
	border: 1px solid #ddd;
	color: #222;
	transition: all 0.3s;
}

.total_products_review .review_pro_item .link a:hover {
	background: var(--ThemesBoardBgColor, #ff7828);
	border-color: var(--ThemesBoardBgColor, #ff7828);
	color: #fff;
}

/* Track Your Order */
.global_mode_order_tracking1 {
	background: #f7f7f7;
	padding: 46px 0;
	text-align: center;
}

.global_mode_order_tracking1 .container {
	width: 1500px;
	max-width: 96%;
	margin: 0 auto;
}

.global_mode_order_tracking1 .sub_title {
	color: #666;
	font-size: 14px;
	margin: 10px 0 24px;
}

.global_mode_order_tracking1 .global_tracking_form form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	align-items: center;
}

.global_mode_order_tracking1 .track_field {
	display: flex;
	align-items: center;
	gap: 8px;
}

.global_mode_order_tracking1 .track_field label {
	font-size: 13px;
	color: #333;
	white-space: nowrap;
}

.global_mode_order_tracking1 input {
	min-width: 240px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	font-size: 13px;
}

.global_mode_order_tracking1 .input_button {
	height: 42px;
	padding: 0 26px;
	border: 0;
	cursor: pointer;
	background: var(--ThemesFooterButtonBgColor, #ff7828);
	color: #fff;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	letter-spacing: 0.5px;
	transition: opacity 0.3s;
}

.global_mode_order_tracking1 .input_button:hover {
	opacity: 0.88;
}

/* FAQ 手风琴 */
.global_faq_box {
	padding: 50px 0;
}

.global_faq_box .container {
	width: 1200px;
	max-width: 94%;
	margin: 0 auto;
}

.global_faq_box .faq_big_title {
	text-align: center;
	margin-bottom: 26px;
}

.global_faq_box .list .item {
	border-bottom: 1px solid #eee;
}

.global_faq_box .title {
	position: relative;
	padding: 18px 40px 18px 4px;
	font-size: 15px;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	color: var(--ThemesBoxTitleColor, #000);
	cursor: pointer;
}

.global_faq_box .title i {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s;
}

.global_faq_box .item.faq_open .title i {
	transform: translateY(-50%) rotate(180deg);
}

.global_faq_box .content {
	display: none;
}

.global_faq_box .item.faq_open .content {
	display: block;
	/* ueeshop.css 把 .content 定为 height:0 + overflow:hidden（源站用 JS 动画高度），
	   本地仅切 display 不够，展开态必须重置高度与裁切，否则答案不可见。 */
	height: auto;
	overflow: visible;
}

.global_faq_box .inner_height {
	padding: 0 4px 20px;
	font-size: 13px;
	line-height: 1.9;
	color: #555;
}

/* 搜索表单（头部） */
.ly_header_b_center .default_search form {
	display: flex;
	align-items: center;
}

.ly_header_b_center .default_search input.text {
	flex: 1;
	height: 40px;
	padding: 0 14px;
	border: 1px solid #eee;
	background: #f7f7f7;
	font-size: 13px;
	box-sizing: border-box;
}

.ly_header_b_center .default_search button.button {
	width: 46px;
	height: 40px;
	border: 0;
	background: var(--ThemesHeaderIconSearchBgColor, #ff7828);
	color: var(--ThemesHeaderIconSearchColor, #fff);
	cursor: pointer;
}

/* ---------- 5. WooCommerce 适配 ---------- */
.lk-shop-main {
	width: 1500px;
	max-width: 96%;
	margin: 0 auto;
	padding: 24px 0 40px;
	box-sizing: border-box;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	text-align: center;
}

.woocommerce ul.products li.product img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px;
	font-family: "Opensans-Regular", Arial, sans-serif;
	color: var(--ThemesProductsTitleColor, #404852);
	line-height: 1.5;
	padding: 10px 0 4px;
}

.woocommerce ul.products li.product .price {
	color: var(--ThemesProductsPriceColor, #000);
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 16px;
}

.woocommerce ul.products li.product .price del {
	color: var(--ThemesProductsDelPriceColor, #82888f);
	font-size: 13px;
	margin-left: 6px;
}

.woocommerce ul.products li.product .button {
	margin-top: 8px;
	background: var(--AddtoCartColor, #1e71ce);
	color: #fff;
	border-radius: 0;
	font-size: 12px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.woocommerce ul.products li.product .button:hover {
	background: var(--ThemesBoardBgColor, #ff7828);
	color: #fff;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
	display: flex;
	gap: 6px;
	justify-content: center;
	padding: 24px 0;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 1px solid #e5e5e5;
	margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 38px;
	height: 38px;
	line-height: 38px;
	padding: 0;
	text-align: center;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--ThemesBoardBgColor, #ff7828);
	color: #fff;
}

.woocommerce .woocommerce-breadcrumb {
	font-size: 12px;
	color: #888;
	padding: 12px 0;
}

.woocommerce div.product .product_title {
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 26px;
	color: #000;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ThemesProductsPriceColor, #000);
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 24px;
}

.woocommerce div.product p.price del {
	color: var(--ThemesProductsDelPriceColor, #82888f);
	font-size: 16px;
}

.woocommerce div.product form.cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: var(--AddtoCartColor, #1e71ce);
	color: #fff;
	border-radius: 0;
	padding: 12px 30px;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover {
	background: var(--ThemesBoardBgColor, #ff7828);
}

.woocommerce .quantity .qty {
	height: 44px;
	width: 74px;
	border: 1px solid #ddd;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 30px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: #f5f5f5;
	border: 1px solid #eee;
	border-radius: 0;
	margin: 0 4px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: #fff;
	border-bottom-color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 13px;
	text-transform: uppercase;
	padding: 12px 22px;
}

.woocommerce table.shop_table {
	border: 1px solid #eee;
	border-radius: 0;
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
	background: var(--AddtoCartColor, #1e71ce);
	color: #fff;
	border-radius: 0;
}

.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--ThemesBoardBgColor, #ff7828);
	background: #fafafa;
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--ThemesBoardBgColor, #ff7828);
}

.woocommerce-error {
	border-top-color: #cc4444;
	background: #fafafa;
}

.woocommerce-error::before {
	color: #cc4444;
}

/* 面包屑与标题容器 */
.lk-archive-header {
	width: 1500px;
	max-width: 96%;
	margin: 0 auto;
	padding: 16px 0 4px;
	box-sizing: border-box;
}

.lk-archive-header h1 {
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 24px;
	color: #000;
	margin: 8px 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin: 0 0 16px;
	font-size: 13px;
}

/* 博客/页面正文 */
.lk-content {
	width: 1200px;
	max-width: 94%;
	margin: 0 auto;
	padding: 30px 0 50px;
	box-sizing: border-box;
}

.lk-content h1 {
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 28px;
	color: #000;
}

.lk-content img {
	height: auto;
}

/* ---------- 6. 响应式 ---------- */
@media (max-width: 1500px) {
	.ly_header_b_center .default_search input.text {
		min-width: 0;
	}
}

@media (max-width: 1220px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	/* 商品栅格列数不再随视口压缩，移动端与源站一致保持 Columns_N 原列数。 */

	.total_products_review .review_list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.ly_header_b_center {
		display: none;
	}

	.ly_header_b_left {
		float: left;
		width: 50%;
	}

	.ly_header_b_right {
		float: right;
		width: 50%;
		text-align: right;
	}

	.ly_nav {
		display: none;
	}

	.ly_nav.lk-nav-open {
		display: block;
	}

	.ly_nav .ly_i_wrapper_1500 {
		width: 100%;
		max-width: 100%;
	}

	.ly_nav_cate .cate_nav_list {
		position: static;
		display: block;
		box-shadow: none;
		max-height: none;
	}

	.ly_nav_default .default_nav .default_nav_themes {
		display: block;
		border-bottom: 1px solid #f0f0f0;
	}

	.ly_nav_default .default_nav .default_nav_themes > a {
		line-height: 42px;
	}

	.default_nav .nav_sec {
		position: static;
		opacity: 1;
		margin-top: 0;
		box-shadow: none;
		max-height: none;
		display: none;
	}

	.default_nav .default_nav_themes.nav_open > .nav_sec {
		display: block;
	}

	.default_nav .nav_sec .nav_sec_item {
		float: none;
		width: 100%;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ly_footer_container .ly_foot_t_left .default_foot_menu .menu_list {
		float: none;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.ly_i_wrapper_1500 {
		width: 100%;
		max-width: 100%;
		padding: 0 12px;
	}

	.ly_header_bot .ly_header_b_left,
	.ly_header_bot .ly_header_b_right {
		width: 100%;
		float: none;
		text-align: center;
	}

	.ly_header_b_right {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 14px;
		padding-top: 8px;
	}

	.ly_carousel_1 .carousel_content::before {
		padding-top: 62%;
	}

	.ly_carousel_1 .carousel_btn {
		display: none;
	}

	/* 移动端商品栅格保持 4 列（对齐源站 Columns_4），不再压缩为 2 列。 */

	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px 10px;
	}

	.total_products_review .review_list {
		grid-template-columns: 1fr;
	}

	.global_mode_order_tracking1 .global_tracking_form form {
		flex-direction: column;
		align-items: stretch;
	}

	.global_mode_order_tracking1 .track_field {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.global_mode_order_tracking1 input {
		width: 100%;
		min-width: 0;
	}

	.global_mode_order_tracking1 .input_button {
		width: 100%;
	}

	.lk-shop-main,
	.lk-archive-header {
		width: 100%;
		max-width: 100%;
		padding-left: 12px;
		padding-right: 12px;
	}

	.woocommerce div.product .product_title {
		font-size: 20px;
	}

	.woocommerce div.product p.price,
	.woocommerce div.product span.price {
		font-size: 20px;
	}

	.woocommerce table.shop_table {
		font-size: 13px;
	}

	.woocommerce .woocommerce-cart-form__contents .product-thumbnail {
		display: none;
	}
}

@media (max-width: 480px) {
	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 12px;
	}
}

/* ---------- 7. 商品页（定制面板） ---------- */
.lk-single__grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 46px;
	padding: 26px 0 40px;
}

.lk-single__gallery .lk-gallery__main img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border: 1px solid #f0f0f0;
}

.lk-gallery__thumbs {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	overflow-x: auto;
}

.lk-gallery__thumbs img {
	width: 76px;
	height: 76px;
	object-fit: cover;
	border: 1px solid #eee;
	cursor: pointer;
	flex: none;
}

.lk-gallery__thumbs img.on {
	border-color: var(--ThemesBoardBgColor, #ff7828);
}

.lk-single__title {
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 26px;
	color: #000;
	margin: 0 0 10px;
}

.lk-single__price {
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 22px;
	color: var(--ThemesProductsPriceColor, #000);
	margin: 12px 0 20px;
}

.lk-single__price .themes_products_origin_price {
	color: var(--ThemesProductsDelPriceColor, #82888f);
	font-size: 15px;
	margin-left: 10px;
	text-decoration: line-through;
}

.lk-attr-row {
	margin-bottom: 16px;
}

.lk-attr__title {
	margin-bottom: 8px;
	font-size: 14px;
}

.lk-attr__options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.lk-opt {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.lk-opt input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.lk-opt span {
	display: inline-block;
	min-width: 46px;
	padding: 8px 12px;
	border: 1px solid #ddd;
	background: #fff;
	text-align: center;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.25s;
}

.lk-opt input:checked + span {
	border-color: var(--ThemesBoardBgColor, #ff7828);
	color: var(--ThemesBoardBgColor, #ff7828);
	box-shadow: inset 0 0 0 1px var(--ThemesBoardBgColor, #ff7828);
}

.lk-opt--line {
	display: inline-flex;
}

.lk-fee-tag {
	font-style: normal;
	font-size: 12px;
	color: #ff5555;
	margin-left: 4px;
}

.lk-custom-input {
	margin-top: 12px;
	padding: 14px;
	background: #fafafa;
	border: 1px solid #eee;
}

.lk-custom-input label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
}

.lk-custom-input input[type="text"] {
	width: 100%;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	font-size: 14px;
}

.lk-tips {
	font-size: 12px;
	color: #999;
}

.lk-single__actions {
	display: flex;
	gap: 12px;
	margin-top: 22px;
}

.lk-btn-add,
.lk-btn-buy {
	flex: 1;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
	border: 0;
	transition: opacity 0.25s;
}

.lk-btn-add {
	background: var(--AddtoCartColor, #1e71ce);
	color: #fff;
}

.lk-btn-add:hover {
	opacity: 0.88;
}

.lk-btn-buy {
	background: var(--BuyNowColor, #ff5555);
	color: #fff;
	text-decoration: none;
}

.lk-btn-buy:hover {
	opacity: 0.88;
}

.lk-single__detail {
	margin-top: 26px;
	padding-top: 18px;
	border-top: 1px solid #eee;
}

.lk-detail__title {
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 15px;
	margin-bottom: 10px;
}

.lk-detail__content {
	font-size: 13px;
	line-height: 1.9;
	color: #555;
}

.lk-related {
	margin: 10px 0 46px;
}

@media (max-width: 992px) {
	.lk-single__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

/* 商品页：面包屑 + 图集竖排缩略图 */
.lk-breadcrumb {
	padding: 14px 0 4px;
	font-size: 12px;
	color: #888;
}

.lk-breadcrumb a {
	color: #555;
}

.lk-breadcrumb .current {
	color: #888;
}

.lk-single__gallery {
	display: flex;
	flex-direction: row;
	gap: 12px;
	align-items: flex-start;
}

.lk-gallery__thumbs {
	display: flex;
	flex-direction: column;
	gap: 8px;
	order: -1;
	flex: none;
}

.lk-gallery__thumbs img {
	width: 76px;
	height: 76px;
	object-fit: cover;
	border: 1px solid #eee;
	cursor: pointer;
	flex: none;
}

.lk-gallery__main {
	flex: 1;
	min-width: 0;
}

@media (max-width: 768px) {
	.lk-gallery__thumbs {
		flex-direction: row;
		flex-wrap: wrap;
		order: 0;
		width: 100%;
	}

	.lk-single__gallery {
		flex-direction: column;
	}
}

/* 悬浮购物车小窗 */
.lk-cart-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.lk-mini-cart {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	width: 320px;
	background: #fff;
	border: 1px solid #eee;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	z-index: 10020;
	padding: 12px;
	box-sizing: border-box;
}

.lk-cart-wrap:hover .lk-mini-cart {
	display: block;
}

.lk-mini-cart__item {
	display: flex;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid #f4f4f4;
}

.lk-mini-cart__item img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	flex: none;
}

.lk-mini-cart__name {
	font-size: 13px;
	color: #222;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lk-mini-cart__qty {
	font-size: 12px;
	color: #888;
	margin-top: 4px;
}

.lk-mini-cart__foot {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	padding: 10px 0 6px;
}

.lk-mini-cart__btn {
	display: block;
	height: 42px;
	line-height: 42px;
	text-align: center;
	background: var(--ThemesBoardBgColor, #ff7828);
	color: #fff;
	font-size: 13px;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	letter-spacing: 1px;
}

.lk-mini-cart__btn:hover {
	opacity: 0.88;
	color: #fff;
}

/* EN/USD 语言货币弹窗（源站中心 modal 样式） */
.ly_header_top .default_language_currency_box {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 480px;
	min-height: 215px;
	background: #fff;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	border-radius: 6px;
	z-index: 999999;
	padding: 0;
	box-sizing: border-box;
}

.ly_header_top .default_language_currency_box.show {
	display: block !important;
}

.ly_header_top .default_language_currency_box .top_box {
	height: 55px;
	line-height: 55px;
	text-align: center;
	font-size: 20px;
	position: relative;
}

.ly_header_top .default_language_currency_box .top_box i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	position: absolute;
	right: 8px;
	top: 8px;
	cursor: pointer;
	border-radius: 50%;
	background: #f1f1f1;
	font-size: 18px;
	/* 覆盖从 .top_box 继承的 line-height:55px，避免 × 被推出圆钮 */
	line-height: 1;
	color: #333;
	font-style: normal;
}
.ly_header_top .default_language_currency_box .top_box i::before {
	/* ueeshop 的 .default_language_currency_style i:not(.iconfont):before 是给 EN/USD
	   旁的下拉三角用的，会连带命中本关闭钮：重置其三角边框与绝对定位，仅保留 × 字形 */
	content: '\00d7';
	border: 0;
	width: auto;
	height: auto;
	position: static;
}

.ly_header_top .default_language_currency_box .default_language_currency_container {
	height: 100%;
	padding: 0 30px 30px;
	box-sizing: border-box;
}

.ly_header_top .default_language_currency_box .currency_title {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 8px;
	color: #333;
	text-align: left;
	font-weight: 700;
	font-family: "OpenSans-Bold", Arial, sans-serif;
}

.ly_header_top .default_language_currency_box .default_language_currency_list {
	margin-bottom: 0;
}

.ly_header_top .default_language_currency_box select {
	width: 100%;
	height: 40px;
	border: 1px solid #bbb;
	padding: 0 10px;
	font-size: 14px;
	background: #fff;
	box-sizing: border-box;
	margin-bottom: 18px;
}

.ly_header_top .default_language_currency dt {
	cursor: pointer;
}

}

/* ---------- WHAT OUR CUSTOMERS SAY（本地重构版式：米色底 + 记分牌 + 横向滑轨） ---------- */
@font-face {
	font-family: "Alexandria";
	src: url("../fonts/alexandria-font.woff2") format("woff2"),
		url("../fonts/alexandria-font.woff") format("woff"),
		url("../fonts/alexandria-font.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

.lk-reviews {
	--lkr-bg: #E9E2D2;
	--lkr-card: #FFFFFF;
	--lkr-ink: #141414;
	--lkr-muted: #6D675A;
	--lkr-star: #E8A33D;
	--lkr-chip: #F3EEE2;
	background: var(--lkr-bg);
	padding: 64px 0 72px;
	color: var(--lkr-ink);
}

.lk-reviews__inner {
	width: 1200px;
	max-width: 94%;
	margin: 0 auto;
}

.lk-reviews__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}

.lk-reviews__eyebrow {
	margin: 0 0 12px;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lkr-muted);
}

.lk-reviews__title {
	margin: 0;
	font-family: "Alexandria", "OpenSans-Regular", Arial, sans-serif;
	font-weight: normal;
	font-size: clamp(26px, 3.2vw, 40px);
	line-height: 1.08;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	max-width: 640px;
}

.lk-reviews__score {
	flex: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
	background: var(--lkr-ink);
	color: #FFFFFF;
	border-radius: 14px;
	padding: 16px 20px 14px;
	min-width: 176px;
}

.lk-reviews__score-num {
	font-family: "Alexandria", "OpenSans-Regular", Arial, sans-serif;
	font-size: 38px;
	line-height: 1;
}

.lk-reviews__score-stars {
	display: flex;
	gap: 3px;
}

.lk-reviews__score-cap {
	font-size: 12px;
	line-height: 1.45;
	color: #CFC7B2;
}

.lk-star {
	width: 15px;
	height: 15px;
	fill: #D8D2C4;
	flex: none;
}

.lk-star.is-on {
	fill: var(--lkr-star);
}

.lk-reviews__score-stars .lk-star {
	width: 16px;
	height: 16px;
}

.lk-reviews__nav {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-bottom: 14px;
}

.lk-reviews__arrow {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--lkr-ink);
	background: transparent;
	color: var(--lkr-ink);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.lk-reviews__arrow:hover {
	background: var(--lkr-ink);
	color: #FFFFFF;
}

.lk-reviews__arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.lk-reviews__arrow:disabled:hover {
	background: transparent;
	color: var(--lkr-ink);
}

.lk-reviews__arrow svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
}

.lk-reviews__rail {
	list-style: none;
	margin: 0;
	padding: 2px 2px 8px;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 340px;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.lk-reviews__rail::-webkit-scrollbar {
	display: none;
}

.lk-review-card {
	scroll-snap-align: start;
	background: var(--lkr-card);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 0 rgba(20, 20, 20, 0.05), 0 14px 28px -22px rgba(20, 20, 20, 0.4);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lk-review-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 1px 0 rgba(20, 20, 20, 0.05), 0 20px 34px -22px rgba(20, 20, 20, 0.45);
}

.lk-review-card__photo {
	margin: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--lkr-chip);
}

.lk-review-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.lk-review-card:hover .lk-review-card__photo img {
	transform: scale(1.045);
}

.lk-review-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px 18px 16px;
	flex: 1;
}

.lk-review-card__stars {
	display: flex;
	gap: 3px;
}

.lk-review-card__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: #2B2925;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.lk-review-card__chip {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--lkr-chip);
	border-radius: 12px;
	padding: 11px 12px;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.lk-review-card__chip:hover {
	background: #ECE5D3;
}

.lk-review-card__chip-name {
	flex: 1;
	font-size: 12.5px;
	line-height: 1.45;
	color: var(--lkr-ink);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.lk-review-card__chip-cta {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lkr-ink);
}

.lk-review-card__chip-cta svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	transition: transform 0.2s ease;
}

.lk-review-card__chip:hover .lk-review-card__chip-cta svg {
	transform: translateX(3px);
}

.lk-reviews a:focus-visible,
.lk-reviews button:focus-visible {
	outline: 2px solid var(--lkr-ink);
	outline-offset: 2px;
}

@media (max-width: 768px) {
	.lk-reviews {
		padding: 44px 0 52px;
	}

	.lk-reviews__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		margin-bottom: 18px;
	}

	.lk-reviews__score {
		flex-direction: row;
		align-items: center;
		gap: 14px;
		padding: 12px 16px;
	}

	.lk-reviews__score-num {
		font-size: 30px;
	}

	.lk-reviews__rail {
		grid-auto-columns: min(300px, 80vw);
		gap: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lk-review-card,
	.lk-review-card__photo img,
	.lk-review-card__chip-cta svg,
	.lk-reviews__arrow {
		transition: none;
	}

	.lk-review-card:hover {
		transform: none;
	}

	.lk-review-card:hover .lk-review-card__photo img {
		transform: none;
	}
}

/* ---------- How to Make Money 页面（本地重构版式） ---------- */
.lk-mm {
	--lkm-ink: #141414;
	--lkm-muted: #6D675A;
	--lkm-beige: #E9E2D2;
	--lkm-chip: #F3EEE2;
	--lkm-amber: #E8A33D;
	--lkm-accent: #FF7828;
	--lkm-radius: 16px;
	color: var(--lkm-ink);
	font-size: 15px;
	line-height: 1.7;
}

.lk-mm h1,
.lk-mm h2,
.lk-mm h3,
.lk-mm h4 {
	font-family: "Alexandria", "OpenSans-Regular", Arial, sans-serif;
	font-weight: normal;
	line-height: 1.2;
	margin: 0;
}

.lk-mm .lk-mm-n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	flex: none;
	border-radius: 50%;
	background: var(--lkm-ink);
	color: #FFFFFF;
	font-family: "Alexandria", "OpenSans-Regular", Arial, sans-serif;
	font-size: 15px;
}

.lk-mm-hero {
	background: var(--lkm-beige);
	border-radius: var(--lkm-radius);
	padding: 40px 36px;
	margin: 0 0 22px;
}

.lk-mm-eyebrow {
	margin: 0 0 12px;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--lkm-muted);
}

.lk-mm-title {
	font-size: clamp(24px, 3vw, 36px);
	text-transform: uppercase;
	margin: 0 0 14px;
}

.lk-mm-lead {
	margin: 0;
	max-width: 720px;
	color: #3B382F;
}

.lk-mm-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 26px 0 0;
}

.lk-mm-facts > div {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.lk-mm-facts strong {
	font-family: "Alexandria", "OpenSans-Regular", Arial, sans-serif;
	font-size: 24px;
	line-height: 1.1;
}

.lk-mm-facts span {
	font-size: 13px;
	color: var(--lkm-muted);
	line-height: 1.5;
}

.lk-mm-steps3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 0 0 40px;
}

.lk-mm-steps3 > div {
	background: var(--lkm-chip);
	border-radius: var(--lkm-radius);
	padding: 22px 20px;
}

.lk-mm-steps3 h3 {
	font-size: 17px;
	margin: 12px 0 8px;
}

.lk-mm-steps3 p {
	margin: 0;
	font-size: 14px;
	color: #4A463D;
}

.lk-mm-guide {
	margin: 0 0 40px;
}

.lk-mm-guide-title {
	font-size: clamp(20px, 2.2vw, 26px);
	text-transform: uppercase;
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 1px solid #E5DFD2;
}

.lk-mm-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 26px;
}

.lk-mm-timeline li {
	display: grid;
	grid-template-columns: 1fr 220px;
	gap: 22px;
	align-items: center;
	background: #FFFFFF;
	border: 1px solid #ECE6D8;
	border-radius: var(--lkm-radius);
	padding: 20px 22px;
}

.lk-mm-step-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 8px;
}

.lk-mm-step-head h4 {
	font-size: 16px;
}

.lk-mm-timeline p {
	margin: 0;
	color: #4A463D;
	font-size: 14px;
}

.lk-mm-phone {
	margin: 0;
	justify-self: center;
	width: 200px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #ECE6D8;
	box-shadow: 0 12px 24px -18px rgba(20, 20, 20, 0.45);
}

.lk-mm-phone img {
	display: block;
	width: 100%;
	height: auto;
}

.lk-mm-pc {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.lk-mm-pc-card {
	background: var(--lkm-chip);
	border-radius: var(--lkm-radius);
	padding: 22px 20px;
}

.lk-mm-pc-card h4 {
	font-size: 16px;
	margin: 0 0 8px;
}

.lk-mm-pc-card p {
	margin: 0 0 14px;
	font-size: 14px;
	color: #4A463D;
}

.lk-mm-pc-card img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
	border: 1px solid #E5DFD2;
	margin: 0 0 12px;
}

.lk-mm-pc-card img:last-child {
	margin-bottom: 0;
}

.lk-mm-rules {
	background: var(--lkm-ink);
	color: #FFFFFF;
	border-radius: var(--lkm-radius);
	padding: 30px 32px;
	margin: 0 0 30px;
}

.lk-mm-rules h3 {
	font-size: 20px;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.lk-mm-rules ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.lk-mm-rules li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	line-height: 1.7;
	color: #E8E4DA;
}

.lk-mm-rules li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--lkm-amber);
}

.lk-mm-rules strong {
	color: #FFFFFF;
}

.lk-mm-cta {
	text-align: center;
	background: var(--lkm-beige);
	border-radius: var(--lkm-radius);
	padding: 34px 24px;
}

.lk-mm-cta h3 {
	font-size: 22px;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.lk-mm-cta p {
	margin: 0 0 18px;
	color: #4A463D;
	font-size: 14px;
}

.lk-mm-btn {
	display: inline-block;
	background: var(--lkm-accent);
	color: #FFFFFF;
	font-family: "OpenSans-Bold", Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 0.04em;
	padding: 13px 34px;
	border-radius: 999px;
	text-decoration: none;
	transition: filter 0.2s ease;
}

.lk-mm-btn:hover {
	filter: brightness(0.94);
	color: #FFFFFF;
}

.lk-mm a:focus-visible {
	outline: 2px solid var(--lkm-ink);
	outline-offset: 2px;
}

@media (max-width: 900px) {
	.lk-mm-pc {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.lk-mm-hero {
		padding: 26px 20px;
	}

	.lk-mm-facts {
		grid-template-columns: 1fr;
	}

	.lk-mm-steps3 {
		grid-template-columns: 1fr;
		margin-bottom: 32px;
	}

	.lk-mm-timeline li {
		grid-template-columns: 1fr;
	}

	.lk-mm-phone {
		width: min(240px, 70%);
	}

	.lk-mm-rules {
		padding: 24px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lk-mm-btn {
		transition: none;
	}
}

.lk-mm-step-txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
