/*
Theme Name:    Crystal
Template:      cartify
Version:       1.0.0
*/

/* =========================================================
   Crystal Homepage - Layout Reset
========================================================= */
.crystal-homepage {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

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

.crystal-homepage .crystal-container {
    width: min(1400px, calc(100% - 40px));
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


/* ��ҳ�� section */

.crystal-homepage > section {
    width: 100%;
    max-width: none;
}



.crystal-homepage {
    overflow: hidden;
}

.crystal-container {
    width: min(1200px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   Common
========================================================= */

.crystal-section-label {
    display: inline-block;
    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: #777;
}

.crystal-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 8px;

    background: #111;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.crystal-button:hover {
    color: #fff;

    transform: translateY(-2px);

    opacity: .88;
}


/* =========================================================
   HERO
========================================================= */

.crystal-home-hero {
    width: 100%;
}

.crystal-home-hero-inner {
    width: 100%;
}

.crystal-home-hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
}

.crystal-home-hero-placeholder {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f4f5;
    color: #999;
    font-size: 24px;
}


/* =========================================================
   BRAND MARQUEE
========================================================= */

.crystal-brands-section {
    padding: 26px 0;

    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.crystal-brands-label {
    margin-bottom: 15px;

    color: #888;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .08em;
}

.crystal-brand-marquee {
    width: 100%;

    overflow: hidden;

    position: relative;
}

.crystal-brand-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation:
    crystal-brand-scroll 35s linear infinite;
    will-change: transform;
}

.crystal-brand-item {
    flex: 0 0 auto;
    background:#f8f9fa;
    margin-right: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8e8;
    border-radius: 9px;
    text-decoration: none;
    transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
}

.crystal-brand-item:hover{background:#222;}
.crystal-brand-item:hover span{color:#fff;}

.crystal-brand-item img {
    display: block;
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.crystal-brand-item span {
    padding-top:15px;
    text-transform:uppercase;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition:all 0.3s ease;
    -webkit-transition:all 0.3s ease;
    -moz-transition:all 0.3s ease;
}

.crystal-brand-marquee:hover
.crystal-brand-track {
    animation-play-state: paused;
}

@keyframes crystal-brand-scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   Featured Products
========================================================= */

.crystal-featured {
    padding: 70px 0 25px;
}

.crystal-featured-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;
}

.crystal-featured-grid-reverse {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
}

.crystal-featured-content {
    padding: 20px 0;
}

.crystal-featured-content h2 {
    max-width: 540px;
    margin: 0 0 18px;
    color: #111;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.crystal-featured-promo {
    margin-bottom: 12px;
    color: #555;
    font-size: 14px;
    font-weight: 700;
}

.crystal-featured-price {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
}

.crystal-featured-price del {
    margin-right: 8px;
    color: #999;
    font-size: 15px;
    font-weight: 400;
}

.crystal-featured-image {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    border-radius: 16px;
    background: #f3f5f7;
    text-decoration: none;
}

.crystal-featured-image img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: contain;
    transition:
        transform .3s ease;
}

.crystal-featured-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   CTA
========================================================= */

.crystal-home-cta {
    padding: 80px 0;
}

.crystal-cta-box {
    padding: 75px 30px;

    border-radius: 18px;

    background: #f3f5f7;

    text-align: center;
}

.crystal-cta-box h2 {
    margin: 0 0 12px;

    color: #111;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -.035em;
}

.crystal-cta-box p {
    margin: 0 0 28px;

    color: #666;
}

.crystal-button-dark {
    background: #111;
}


/* =========================================================
   Latest Products
========================================================= */

.crystal-latest-products {
    padding: 30px 0 90px;
}

.crystal-section-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;
}

.crystal-section-heading h2,
.crystal-section-heading-single h2 {
    margin: 0;

    color: #111;

    font-size: clamp(28px, 3vw, 40px);

    line-height: 1.1;

    letter-spacing: -.03em;
}

.crystal-slider-buttons {
    display: flex;

    gap: 8px;
}

.crystal-slider-button {
    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid #ddd;
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 17px;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}

.crystal-slider-button:hover {
    background: #111;
    color: #fff;
}

.crystal-products-viewport {
    width: 100%;
    max-width: 100%;
    min-width: 0;

    overflow-x: auto;
    overflow-y: hidden;

    box-sizing: border-box;

    scrollbar-width: none;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    contain: layout paint;
}

.crystal-products-viewport::-webkit-scrollbar {
    display: none;
}


.crystal-products-track {
    display: flex;

    gap: 20px;

    width: max-content;

    max-width: none;
    min-width: 0;

    box-sizing: border-box;
}

.crystal-product-card {
    flex: 0 0 calc(
        (1400px - 60px) / 4
    );

    width: calc(
        (1400px - 60px) / 4
    );

    min-width: 0;
}

.crystal-product-image {
    display: flex;

    width: 100%;

    aspect-ratio: 1 / 1;

    align-items: center;
    justify-content: center;

    padding: 20px;

    border-radius: 14px;

    background: #f3f5f7;

    overflow: hidden;

    text-decoration: none;
}

.crystal-product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform .3s ease;
}

.crystal-product-card:hover
.crystal-product-image img {
    transform: scale(1.04);
}

.crystal-product-content {
    padding-top: 14px;
}

.crystal-product-brand {
    margin-bottom: 5px;

    color: #888;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .05em;
}

.crystal-product-content h3 {
    margin: 0 0 8px;

    font-size: 15px;

    line-height: 1.35;
}

.crystal-product-content h3 a {
    color: #111;

    text-decoration: none;
}

.crystal-product-price {
    font-size: 16px;
    font-weight: 700;
}

.crystal-product-price del {
    margin-right: 5px;

    color: #999;

    font-size: 13px;

    font-weight: 400;
}


/* =========================================================
   About
========================================================= */

.crystal-about {
    padding: 90px 0;
    background: #f7f7f7;
}

.crystal-about-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.crystal-about-content h2 {
    max-width: 560px;
    margin: 0 0 20px;
    color: #111;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.crystal-about-content p {
    max-width: 560px;
    margin: 0 0 15px;
    color: #666;
    line-height: 1.7;
}

.crystal-about-content .crystal-button {
    margin-top: 10px;
}

.crystal-features {
    display: flex;
    flex-direction:column;
    gap: 35px;
    padding-top:20px;
}
.crystal-features .feature-top{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px 40px;
}
.crystal-feature {
    display: flex;
    gap: 15px;
}

.crystal-feature-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111;
    color: #fff;

    font-size: 14px;
    font-weight: 700;
}

.crystal-feature h3 {
    margin: 0 0 7px;

    font-size: 16px;
}

.crystal-feature p {
    margin: 0;

    color: #666;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   Reviews
========================================================= */

.crystal-reviews {
    padding: 95px 0;
}

.crystal-section-heading-single {
    margin-bottom: 35px;

    text-align: center;
}

.crystal-reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.crystal-review-card {
    padding: 25px;

    border: 1px solid #eee;
    border-radius: 14px;

    background: #fff;
}

.crystal-review-stars {
    margin-bottom: 15px;

    color: #111;

    font-size: 13px;

    letter-spacing: 2px;
}

.crystal-review-card blockquote {
    margin: 0 0 25px;

    color: #333;

    font-size: 14px;

    line-height: 1.65;
}

.crystal-review-author {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.crystal-review-author strong {
    font-size: 13px;
}

.crystal-review-author span {
    color: #888;

    font-size: 11px;
}


/* =========================================================
   Latest Posts
========================================================= */

.crystal-latest-posts {
    padding: 20px 0;
}

.crystal-view-all {
    color: #111;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.crystal-posts-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.crystal-post-card {
    min-width: 0;
}

.crystal-post-image {
    display: flex;

    width: 100%;

    aspect-ratio: 16 / 10;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 14px;

    background: #f3f5f7;

    text-decoration: none;
}

.crystal-post-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .3s ease;
}

.crystal-post-card:hover
.crystal-post-image img {
    transform: scale(1.03);
}

.crystal-post-image span {
    color: #aaa;

    font-size: 20px;
}

.crystal-post-content {
    padding-top: 15px;
}

.crystal-post-content time {
    display: block;

    margin-bottom: 8px;

    color: #888;

    font-size: 11px;
}

.crystal-post-content h3 {
    margin: 0 0 12px;

    font-size: 18px;

    line-height: 1.3;
}

.crystal-post-content h3 a {
    color: #111;

    text-decoration: none;
}

.crystal-read-more {
    color: #111;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 1000px) {

    .crystal-container {
        width: min(
            100% - 32px,
            1200px
        );
    }


    .crystal-featured-grid,
    .crystal-featured-grid-reverse {
        gap: 40px;
    }


    .crystal-about-grid {
        gap: 50px;
    }


    .crystal-product-card {
        flex-basis: calc(
            (100vw - 32px - 60px) / 4
        );

        width: calc(
            (100vw - 32px - 60px) / 4
        );
    }

}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767px) {


    .crystal-homepage .crystal-container {
        width: calc(100% - 28px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero */

    .crystal-home-hero-placeholder {

    }
    /* Brands */

    .crystal-brands-section {
        padding: 18px 0;
    }

    .crystal-brand-item {
        width: 120px;
        padding: 8px 14px;
    }

    .crystal-brand-item img {
        #max-height: 27px;
    }


    /* Featured */

    .crystal-featured {
        padding: 45px 0 15px;
    }

    .crystal-featured-grid,
    .crystal-featured-grid-reverse {

        display: flex;

        flex-direction: column;

        gap: 25px;

    }

    .crystal-featured-grid-reverse
    .crystal-featured-image {
        order: -1;
    }

    .crystal-featured-content {
        width: 100%;
    }

    .crystal-featured-content h2 {
        font-size: 30px;
    }

    .crystal-featured-image {
        width: 100%;

        min-height: 300px;

        padding: 25px;
    }

    .crystal-featured-image img {
        height: 250px;
    }


    /* CTA */

    .crystal-home-cta {
        padding: 55px 0;
    }

    .crystal-cta-box {
        padding: 55px 20px;
    }


    /* Latest Products */

    .crystal-latest-products {
        padding: 35px 0 65px;
    }

    .crystal-section-heading {
        align-items: center;
    }

    .crystal-section-heading h2 {
        font-size: 28px;
    }

    .crystal-slider-button {
        width: 38px;
        height: 38px;
    }

    .crystal-products-track {
        gap: 16px;
    }

    .crystal-product-card {

        flex-basis: calc(
            (100vw - 28px - 16px) / 2
        );

        width: calc(
            (100vw - 28px - 16px) / 2
        );

    }


    /* About */

    .crystal-about {
        padding: 65px 0;
    }

    .crystal-about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .crystal-about-content h2 {
        font-size: 32px;
    }

    .crystal-features {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* Reviews */

    .crystal-reviews {
        padding: 65px 0;
    }

    .crystal-reviews-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    /* Posts */

    .crystal-latest-posts {
        padding-bottom: 65px;
    }

    .crystal-posts-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}


.site-header-main, .site-footer-main, .site-footer-widgets {
    background-color: #fafafa !important;
}
.site-header-top{background:#fafafa !important;}
.site-header-mobile .top-1{background-color: #fafafa !important;}
.site-header-laptop .main-2{background-color:#fafafa !important;}
@media (min-width: 1024px) {
    .site-header-main, .site-footer-main, .site-footer-widgets {
    background-color: #fafafa !important;
}
.site-header-laptop .main-2{background-color:#fafafa !important;}
.site-header-mobile .top-1{background-color: #fafafa !important;}
}

@media (min-width: 768px) {
    .site-header-main, .site-footer-main, .site-footer-widgets {
    background-color: #fafafa !important;
}
.site-header-mobile .top-1{background-color: #fafafa !important;}
.site-header-laptop .main-2{background-color:#fafafa !important;}
}
@media (min-width: 400px) {
    .site-header-main, .site-footer-main, .site-footer-widgets{
    background-color: #fafafa;
}
.site-header-mobile .top-1{background-color: #fafafa !important;}
.site-header-laptop .main-2{background-color:#fafafa !important;}
}
.agni-ajax-search-form{
border-color:#f5f5f5;
}



/* Hide the broken built-in tooltip pseudo elements */
.agni-products-variation-swatches
.variable-item[data-wvstooltip]::before,
.agni-products-variation-swatches
.variable-item[data-wvstooltip]::after {
	display: none !important;
	content: none !important;
}

/* Our archive swatch tooltip */
#cartify-swatch-tooltip {
	position: fixed;
	z-index: 99999999;

	display: none;
	pointer-events: none;

	padding: 6px 9px;

	background: #1f1f1f;
	color: #fff;

	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	white-space: nowrap;

	border-radius: 4px;

	transform: translate(-50%, -100%);
}

#cartify-swatch-tooltip::after {
	content: "";

	position: absolute;
	left: 50%;
	top: 100%;

	transform: translateX(-50%);

	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #1f1f1f;
}



.crystal-home-faq {
	margin-top: 80px;
}

.crystal-home-faq-heading {
	max-width: 720px;
	margin-bottom: 30px;
}

.crystal-home-faq-heading h2 {
	margin-top: 8px;
	margin-bottom: 0;
}

.crystal-home-faq-list {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.crystal-home-faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.crystal-home-faq-item summary {
	position: relative;

	padding: 22px 45px 22px 0;

	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;

	cursor: pointer;
	list-style: none;
}

.crystal-home-faq-item summary::-webkit-details-marker {
	display: none;
}

.crystal-home-faq-item summary::after {
	content: "+";

	position: absolute;
	right: 0;
	top: 50%;

	transform: translateY(-50%);

	font-size: 24px;
	font-weight: 400;
}

.crystal-home-faq-item[open] summary::after {
	content: "−";
}

.crystal-home-faq-answer {
	max-width: 850px;

	padding: 0 45px 22px 0;
}

.crystal-home-faq-answer p {
	margin: 0;

	line-height: 1.7;
	color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 666px) {

	.crystal-home-faq {
		margin-top: 55px;
	}

	.crystal-home-faq-item summary {
		font-size: 16px;
		padding-top: 18px;
		padding-bottom: 18px;
	}

}



/* =========================================================
   Homepage Hero
   ========================================================= */

.crystal-home-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.crystal-home-hero-inner {
	position: relative;
	min-height: 650px;
	overflow: hidden;
}

.crystal-home-hero-image {
	display: block;
	width: 100%;
	height: 650px;
	object-fit: cover;
	object-position: center;
}


/* 左侧渐变，让白色文字更清晰 */
.crystal-home-hero-inner::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;

	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.62) 0%,
		rgba(0, 0, 0, 0.40) 35%,
		rgba(0, 0, 0, 0.10) 65%,
		rgba(0, 0, 0, 0) 100%
	);
}


/* 内容 */
.crystal-home-hero-content {
	position: absolute;
	z-index: 2;

	top: 50%;
	left: max(30px, calc((100% - 1320px) / 2));

	transform: translateY(-50%);

	width: min(620px, calc(100% - 60px));

	color: #fff;
}


/* 小标题 */
.crystal-home-hero-label {
	display: block;

	margin-bottom: 16px;

	color: rgba(255, 255, 255, 0.78);

	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;

	letter-spacing: 0.10em;
	text-transform: uppercase;
}


/* H1 */
.crystal-home-hero-content h1 {
	max-width: 620px;

	margin: 0 0 20px;

	color: #fff;

	font-size: clamp(40px, 4vw, 64px);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.035em;
}


/* 描述 */
.crystal-home-hero-content p {
	max-width: 570px;

	margin: 0 0 28px;

	color: rgba(255, 255, 255, 0.88);

	font-size: 16px;
	line-height: 1.65;
}


/* Hero CTA */
.crystal-home-hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 48px;
	padding: 0 26px;

	background: #CBE63A;
	color: #111 !important;

	border: 1px solid #CBE63A;
	border-radius: 6px;

	font-size: 14px;
	font-weight: 600;
	line-height: 1;

	text-decoration: none;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.crystal-home-hero-button:hover {
	background: #D9F052;
	border-color: #D9F052;
	color: #111 !important;

	transform: translateY(-1px);
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1023px) {

	.crystal-home-hero-inner {
		min-height: 500px;
	}

	.crystal-home-hero-image {
		height: 500px;
	}

	.crystal-home-hero-content {
		left: 30px;
		width: min(560px, calc(100% - 60px));
	}

	.crystal-home-hero-content h1 {
		font-size: clamp(36px, 5vw, 50px);
	}

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 666px) {

	.crystal-home-hero-inner {
		min-height: 480px;
	}

	.crystal-home-hero-image {
		height: 480px;
		object-position: center;
	}

	.crystal-home-hero-inner::after {
		background: linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.68) 0%,
			rgba(0, 0, 0, 0.48) 70%,
			rgba(0, 0, 0, 0.22) 100%
		);
	}

	.crystal-home-hero-content {
		left: 20px;
		width: calc(100% - 40px);
	}

	.crystal-home-hero-label {
		margin-bottom: 12px;
		font-size: 11px;
	}

	.crystal-home-hero-content h1 {
		margin-bottom: 16px;

		font-size: clamp(32px, 9vw, 42px);
		line-height: 1.08;
	}

	.crystal-home-hero-content p {
		margin-bottom: 24px;

		font-size: 15px;
		line-height: 1.55;
	}

	.crystal-home-hero-button {
		min-height: 46px;
		padding: 0 20px;
	}

}


/* Footer 菜单样式 */
.footer-menu-wrapper{

}
.footer-navigation {
    margin: 20px 0;
    width:100%;
    text-align: center;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: #222;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding-right:10px;
}

.footer-menu a:hover {
    color: #000;
    text-decoration: underline;
}

/* 手机端 */
@media (max-width: 768px) {
    .footer-menu {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}


.footer-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin: 0;
}

/* ✅ 只在 li 中间加，第一个之前和最后一个之后都没有 */
.footer-menu li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #999;
}

@media(max-width:768px){
    .site-title-logo img {max-width:120px !important;}
}


/* =========================================================
   Crystal About / Contact / FAQ pages
   ========================================================= */
:root {
    --crystal-info-accent: #c8ff2e;
    --crystal-info-dark: #0a0b0b;
    --crystal-info-surface: #f5f6f2;
    --crystal-info-line: #e0e2dc;
    --crystal-info-muted: #696d66;
    --crystal-info-radius: 24px;
}

body.crystal-info-page-shell #content > .col-full {
    width: min(1480px, calc(100% - 64px)) !important;
    max-width: none !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
}

body.crystal-info-page-shell #primary,
body.crystal-info-page-shell .content-area,
body.crystal-info-page-shell main.site-main {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

body.crystal-info-page-shell #secondary,
body.crystal-info-page-shell .widget-area {
    display: none !important;
}

.crystal-info-page {
    padding: 28px 0 100px;
    color: #111;
}

.crystal-info-page *,
.crystal-info-page *::before,
.crystal-info-page *::after {
    box-sizing: border-box;
}

.crystal-info-eyebrow {
    margin: 0 0 16px;
    color: var(--crystal-info-accent);
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.crystal-info-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 500px;
    margin: 0 0 72px;
    padding: clamp(48px, 6vw, 88px);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 80% 28%, rgba(200, 255, 46, .19), transparent 35%),
        var(--crystal-info-dark);
    border-radius: var(--crystal-info-radius);
}

.crystal-info-hero__copy {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 940px;
}

.crystal-info-hero h1 {
    max-width: 1000px;
    margin: 0;
    color: #fff;
    font-size: clamp(50px, 7vw, 100px);
    line-height: .92;
    font-weight: 800;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.crystal-info-hero__lead {
    max-width: 720px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.7;
}

.crystal-info-hero__orb {
    position: absolute;
    top: -150px;
    right: -90px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(200, 255, 46, .3);
    border-radius: 50%;
}

.crystal-info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 24px;
    color: #0a0b0b;
    background: var(--crystal-info-accent);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background-color 180ms ease;
}

.crystal-info-button:hover {
    color: #fff;
    background: #111;
    transform: translateY(-2px);
}

.crystal-info-intro {
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: start;
    margin: 0 0 92px;
}

.crystal-info-intro h2,
.crystal-info-section__heading h2,
.crystal-info-split h2,
.crystal-contact-form-panel h2,
.crystal-faq-contact-cta h2 {
    margin: 0;
    font-size: clamp(36px, 4.3vw, 64px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.045em;
}

.crystal-info-prose {
    max-width: 820px;
    color: var(--crystal-info-muted);
    font-size: 17px;
    line-height: 1.85;
}

.crystal-info-prose p:first-child {
    margin-top: 0;
}

.crystal-info-section {
    margin-bottom: 92px;
}

.crystal-info-section__heading {
    max-width: 900px;
    margin-bottom: 38px;
}

.crystal-info-section__heading > p:last-child {
    color: var(--crystal-info-muted);
    line-height: 1.7;
}

.crystal-info-card-grid {
    display: grid;
    gap: 18px;
}

.crystal-info-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.crystal-info-card {
    min-height: 300px;
    padding: 28px;
    background: var(--crystal-info-surface);
    border: 1px solid var(--crystal-info-line);
    border-radius: 20px;
}

.crystal-info-card--accent {
    background: var(--crystal-info-accent);
    border-color: var(--crystal-info-accent);
}

.crystal-info-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 58px;
    background: #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.crystal-info-card h3 {
    margin: 0 0 14px;
    font-size: 23px;
    line-height: 1.1;
}

.crystal-info-card p {
    margin: 0;
    color: var(--crystal-info-muted);
    font-size: 14px;
    line-height: 1.7;
}

.crystal-info-card--accent p {
    color: rgba(0, 0, 0, .65);
}

.crystal-info-split {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(40px, 8vw, 120px);
    align-items: start;
    margin-bottom: 92px;
    padding: clamp(40px, 6vw, 80px);
    border-radius: var(--crystal-info-radius);
}

.crystal-info-split--dark {
    color: #fff;
    background:
        radial-gradient(circle at 90% 0, rgba(200, 255, 46, .16), transparent 35%),
        var(--crystal-info-dark);
}

.crystal-info-split--dark h2 {
    color: #fff;
}

.crystal-info-checklist {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.crystal-info-checklist li {
    position: relative;
    padding: 17px 0 17px 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
}

.crystal-info-checklist li::before {
    content: "✓";
    position: absolute;
    top: 17px;
    left: 0;
    color: var(--crystal-info-accent);
    font-weight: 800;
}

.crystal-info-age-cta {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    padding: 34px;
    background: var(--crystal-info-surface);
    border: 1px solid var(--crystal-info-line);
    border-radius: 20px;
}

.crystal-info-age-cta__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    background: var(--crystal-info-accent);
    border-radius: 50%;
    font-size: 25px;
    font-weight: 800;
}

.crystal-info-age-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.05;
}

.crystal-info-age-cta p:last-child {
    margin: 0;
    color: var(--crystal-info-muted);
}

.crystal-info-editor-content {
    max-width: 900px;
    margin: 70px auto 0;
}

/* Contact */

.crystal-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 72px;
}

.crystal-contact-card {
    min-height: 250px;
    padding: 28px;
    background: var(--crystal-info-surface);
    border: 1px solid var(--crystal-info-line);
    border-radius: 20px;
}

.crystal-contact-card--accent {
    background: var(--crystal-info-accent);
    border-color: var(--crystal-info-accent);
}

.crystal-contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 42px;
    color: #111;
    background: #fff;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 800;
}

.crystal-contact-card h2 {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.1;
}

.crystal-contact-card h2 a {
    color: inherit;
    text-decoration: none;
}

.crystal-contact-card > p:last-child {
    margin: 0;
    color: var(--crystal-info-muted);
}

.crystal-contact-card--accent > p:last-child {
    color: rgba(0, 0, 0, .62);
}

.crystal-contact-main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 72px;
}

.crystal-contact-form-panel,
.crystal-contact-company-card {
    padding: clamp(30px, 4vw, 54px);
    border: 1px solid var(--crystal-info-line);
    border-radius: var(--crystal-info-radius);
}

.crystal-contact-form-panel {
    background: #fff;
}

.crystal-contact-company-card {
    position: sticky;
    top: calc(var(--crystal-header-height, 82px) + 24px);
    background: var(--crystal-info-surface);
}

.crystal-contact-form-slot {
    margin-top: 34px;
}

.crystal-contact-form-slot input:not([type="checkbox"]):not([type="radio"]),
.crystal-contact-form-slot select,
.crystal-contact-form-slot textarea {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 14px 16px;
    background: var(--crystal-info-surface);
    border: 1px solid var(--crystal-info-line);
    border-radius: 12px;
    box-shadow: none;
}

.crystal-contact-form-slot textarea {
    min-height: 160px;
}

.crystal-contact-form-slot input[type="submit"],
.crystal-contact-form-slot button[type="submit"] {
    min-height: 52px;
    padding: 0 24px;
    color: #111;
    background: var(--crystal-info-accent);
    border: 0;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.crystal-contact-form-placeholder {
    padding: 24px;
    background: var(--crystal-info-surface);
    border: 1px dashed #c4c7be;
    border-radius: 16px;
}

.crystal-contact-company-card h2 {
    margin: 0 0 28px;
    font-size: 30px;
    line-height: 1.1;
}

.crystal-contact-details {
    margin: 0;
}

.crystal-contact-details > div {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--crystal-info-line);
}

.crystal-contact-details dt {
    color: #8b8e87;
    font-size: 11px;
}

.crystal-contact-details dd {
    margin: 0;
    font-size: 12px;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.crystal-contact-details a {
    color: inherit;
}

.crystal-contact-returns {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--crystal-info-line);
}

.crystal-contact-returns p:not(.crystal-info-eyebrow) {
    font-size: 13px;
    line-height: 1.65;
}

.crystal-contact-returns small {
    display: block;
    color: #8b8e87;
    line-height: 1.55;
}

/* FAQ */

.crystal-faq-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -42px 0 70px;
    padding: 0 36px;
    position: relative;
    z-index: 3;
}

.crystal-faq-chips a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 17px;
    color: #111;
    background: #fff;
    border: 1px solid var(--crystal-info-line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.crystal-faq-chips a:hover {
    background: var(--crystal-info-accent);
    border-color: var(--crystal-info-accent);
}

.crystal-faq-groups {
    display: grid;
    gap: 24px;
}

.crystal-faq-group {
    display: grid;
    grid-template-columns: minmax(230px, .35fr) minmax(0, 1.65fr);
    gap: clamp(34px, 6vw, 90px);
    padding: clamp(30px, 5vw, 64px);
    scroll-margin-top: 120px;
    background: var(--crystal-info-surface);
    border: 1px solid var(--crystal-info-line);
    border-radius: var(--crystal-info-radius);
}

.crystal-faq-group__heading h2 {
    margin: 0;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1;
    letter-spacing: -.04em;
}

.crystal-faq-list {
    border-top: 1px solid #d9dbd4;
}

.crystal-faq-item {
    border-bottom: 1px solid #d9dbd4;
}

.crystal-faq-item summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 20px;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 650;
}

.crystal-faq-item summary::-webkit-details-marker {
    display: none;
}

.crystal-faq-item__icon {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
}

.crystal-faq-item__icon::before,
.crystal-faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    background: #111;
    transform: translate(-50%, -50%);
}

.crystal-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 180ms ease;
}

.crystal-faq-item[open] .crystal-faq-item__icon {
    background: var(--crystal-info-accent);
}

.crystal-faq-item[open] .crystal-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.crystal-faq-item__answer {
    max-width: 820px;
    padding: 0 54px 24px 0;
    color: var(--crystal-info-muted);
    font-size: 14px;
    line-height: 1.75;
}

.crystal-faq-item__answer p {
    margin: 0;
}

.crystal-faq-contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 72px;
    padding: clamp(34px, 5vw, 62px);
    color: #fff;
    background:
        radial-gradient(circle at 85% 0, rgba(200, 255, 46, .18), transparent 35%),
        var(--crystal-info-dark);
    border-radius: var(--crystal-info-radius);
}

.crystal-faq-contact-cta h2 {
    color: #fff;
}

.crystal-faq-contact-cta p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
}

/* Responsive */

@media (max-width: 1180px) {
    .crystal-info-card-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .crystal-contact-main {
        grid-template-columns: minmax(0, 1fr) 340px;
    }
}

@media (max-width: 900px) {
    body.crystal-info-page-shell #content > .col-full {
        width: calc(100% - 30px) !important;
    }

    .crystal-info-page {
        padding-top: 18px;
    }

    .crystal-info-hero {
        min-height: 0;
        margin-bottom: 52px;
        padding: 44px 28px;
    }

    .crystal-info-hero h1 {
        font-size: clamp(43px, 11vw, 72px);
    }

    .crystal-info-intro,
    .crystal-info-split,
    .crystal-contact-main,
    .crystal-faq-group {
        grid-template-columns: minmax(0, 1fr);
    }

    .crystal-info-intro,
    .crystal-info-section,
    .crystal-info-split {
        margin-bottom: 58px;
    }

    .crystal-contact-cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .crystal-contact-company-card {
        position: static;
    }

    .crystal-faq-group {
        gap: 28px;
    }

    .crystal-faq-contact-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    body.crystal-info-page-shell #content > .col-full {
        width: calc(100% - 24px) !important;
    }

    .crystal-info-card-grid--four {
        grid-template-columns: minmax(0, 1fr);
    }

    .crystal-info-card {
        min-height: 0;
    }

    .crystal-info-card__number {
        margin-bottom: 36px;
    }

    .crystal-info-age-cta {
        grid-template-columns: minmax(0, 1fr);
    }

    .crystal-info-age-cta__badge {
        width: 68px;
        height: 68px;
    }

    .crystal-faq-chips {
        margin-top: -32px;
        padding: 0 18px;
    }

    .crystal-faq-chips a {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
        text-align: center;
    }

    .crystal-faq-group {
        padding: 26px 20px;
    }

    .crystal-faq-item summary {
        font-size: 14px;
    }

    .crystal-faq-item__answer {
        padding-right: 0;
    }
}

.footer-menu-wrapper .fbg{text-align:center;}
.footer-menu-wrapper .fbg img{width: auto; height: auto; max-height: 450px;}

.site-header-additional{display:none;}
.site-header-mobile .spacer-mobile{height:auto !important;}

.site-header-desktop .main-2 .right-3 .my-account-1.logged-in .site-header-icon-myaccount__contents {
    background-color:#e8e8e8 !important;
}

.agni-quickview-contents ul.single-product-variable-items{overflow:hidden;}
.agni-quickview-container__close{
    background:#000000;
    color:orange;
    right: 15px;
    top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

@media(max-width:768px){
    .shop-page-container .content-area{
        margin-top:15px;
    }
    /* 强制显示移动端菜单的子菜单 */
    /* 针对你提供的 HTML 结构 */
    .category-dropdown-menu__nav-menus li.menu-item-has-children > ul.sub-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* 隐藏旁边的下拉箭头，因为已经默认展开了 */
    .category-dropdown-menu__nav-menus li.menu-item-has-children > a .agni-menu-item-more {
        display: none !important;
    }
    
    
    /* 强制一级菜单加粗 */
    #menu-primary-menu-4 > li > a .agni-menu-item-text {
        font-family: "Segment", "Satoshi-Variable", sans-serif !important;
        font-weight: 700 !important;
        /* 这一行是给不支持字重的字体增加视觉厚度 */
        -webkit-text-stroke: 0.5px currentColor; 
    }
    
}

.site-header-menu-primary ul.sub-menu{
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}
.site-header-menu-primary ul.sub-menu li{transition:all 0.3s ease; -webkit-transition:all 0.3s ease; -moz-transition:all 0.3s ease;}
.site-header-menu-primary ul.sub-menu li:hover{
    background:#e8e8e8;
}


.agni-products-variation-swatches__add-to-cart:hover{background:#CBE63A;color:#000;}

.products .product .single_add_to_cart_button {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    margin-top: 0 !important;
}

.agni-quickview, .agni-products-variation-swatches__add-to-cart{
    margin:0 auto !important;
}

header.site-header{
    box-shadow: 0 5px 65px rgba(0, 0, 0, 0.1);
    height:100px !important;
}
.site-header-desktop .main-2 {
        height: 100px !important;
    }

.blog-post-style-1 .blog-post-title{font-size:22px !important;}

.blog-post-style-1 .blog-post-meta{margin:15px 0 !important;}

.article-line{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}
.article-line .al-l{width:45%;}
.article-line .al-r{width:48%;}
@media(max-width:768px){
    .article-line .al-l{width:100%;margin-bottom:15px;}
    .article-line .al-r{width:100%;}
}

.blog-single-page-container.has-right-sidebar {
                display: flex;
                align-items: flex-start;
                max-width: 1400px; /* 根据您的实际容器宽度调整 */
                margin: 0 auto;
                gap:20px;
                padding: 30px 15px;
                flex-wrap:wrap;
            }
            
.blog-single-page-container.has-right-sidebar .content-area {
                flex: 1;
                min-width: 0;
        }
            
/* 兼容主题原生的 secondary 样式 */
.blog-single-page-container.has-right-sidebar #secondary {
                max-width: 380px; 
                flex-shrink: 0;
                padding:50px 25px 15px 25px;
                height:100%;
            }
@media(max-width:768px){
.blog-single-page-container.has-right-sidebar #secondary {
        width:100%;
        max-width: 100%; 
    }
}
            

.nsxz-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999999;
        backdrop-filter: blur(4px);
        animation: nsxzFadeIn 0.3s ease;
        /* 默认隐藏，由 JS 控制显示 */
        display: none;
    }
    .nsxz-popup-overlay.active {
        display: flex;
    }
    .nsxz-popup-box {
        background: #fff;
        max-width: 480px;
        width: 90%;
        padding: 40px 30px 30px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        text-align: center;
        position: relative;
        animation: nsxzSlideUp 0.4s ease;
    }
    .nsxz-popup-box h2 {
        font-size: 24px;
        margin-top: 0;
        color: #222;
    }
    .nsxz-popup-box p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin: 10px 0 24px;
    }
    .nsxz-popup-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .nsxz-popup-buttons button {
        padding: 12px 32px;
        border: none;
        border-radius: 40px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s;
        min-width: 120px;
    }
    .nsxz-btn-primary {
        background: #000;
        color: #fff;
    }
    .nsxz-btn-primary:hover {
        background: #333;
    }
    .nsxz-btn-secondary {
        background: #eee;
        color: #333;
    }
    .nsxz-btn-secondary:hover {
        background: #ddd;
    }
    .nsxz-btn-danger {
        background: #d32f2f;
        color: #fff;
    }
    .nsxz-btn-danger:hover {
        background: #b71c1c;
    }
    .nsxz-cookie-text {
        font-size: 14px;
        color: #777;
        margin-top: 16px;
    }
    .nsxz-cookie-text a {
        color: #0073aa;
        text-decoration: underline;
    }

    @keyframes nsxzFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    @keyframes nsxzSlideUp {
        from { transform: translateY(30px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    @media (max-width: 480px) {
        .nsxz-popup-box {
            padding: 28px 20px 24px;
        }
        .nsxz-popup-buttons button {
            min-width: 100px;
            padding: 10px 20px;
            font-size: 14px;
        }
    }           


.agni-product-layout-block-sale{position:absolute;top:8px;right:8px;z-index:5;color:red;}
            
            
            
            
            
            
.cr-product-highlights {
    margin: 16px 0 14px;
    border-top: 1px solid #e8e8e8;
}

.cr-highlight {
    border-bottom: 1px solid #e8e8e8;
}

.cr-highlight summary {
    display: flex;
    align-items: center;
    gap: 9px;

    min-height: 34px;
    padding: 7px 2px;

    cursor: pointer;
    list-style: none;

    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;

    color: #333;
}

.cr-highlight summary::-webkit-details-marker {
    display: none;
}

.cr-highlight summary:hover {
    color: #04aae4;
}

.cr-highlight__icon {
    flex: 0 0 16px;

    width: 16px;
    height: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d8d8d8;
    border-radius: 50%;

    font-size: 11px;
    font-weight: 400;

    color: #777;
}

.cr-highlight[open] .cr-highlight__icon {
    color: #04aae4;
    border-color: #04aae4;
    font-size: 0;
}

.cr-highlight[open] .cr-highlight__icon::before {
    content: "−";
    font-size: 12px;
}

.cr-highlight__content {
    padding: 0 6px 8px 27px;

    font-size: 13px;
    line-height: 1.5;

    color: #777;
}
            
.wvs-archive-product-image{
    border-radius:15px;
}
            
            
      
@media (min-width: 1440px) {
    .agni-product-layout-block-images.product-style-1 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image, .agni-product-layout-block-images.product-style-2 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image, .agni-product-layout-block-images.product-style-3 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image {
        width: 20% !important;
        height:auto !important;
    }
}
@media (min-width: 1024px) {
    .agni-product-layout-block-images.product-style-1 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image, .agni-product-layout-block-images.product-style-2 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image, .agni-product-layout-block-images.product-style-3 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image {
        width: 20% !important;
        height:auto !important;
    }
}
@media (min-width: 667px) {
    .agni-product-layout-block-images.product-style-1 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image, .agni-product-layout-block-images.product-style-2 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image, .agni-product-layout-block-images.product-style-3 .woocommerce-product-gallery__nav .woocommerce-product-gallery__image {
        width: 20% !important;
        height:auto !important;
    }
}

.agni-product-layout-block-add_to_cart.has-variation-style-1 .variations tr{flex-direction:column;}        
            
.site-header-menu li a {
    display: inline-block;
    width: 100%;
}        
            
.custom-filter-bar-dropdown {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 40px;
    background: #f8f9fa;
    padding: 18px 30px;
    border-radius: 10px;
    margin: 20px 0 30px;
    border: 1px solid #e9ecef;
    align-items: flex-end;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 1 180px; /* 自适应宽度，最小180px */
    min-width: 150px;
}

.filter-item label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #495057;
    letter-spacing: 0.3px;
}

.filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: white;
    font-size: 0.95rem;
    color: #212529;
    appearance: auto; /* 保留原生下拉箭头 */
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-select:hover,
.filter-select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* 移动端：堆叠 */
@media (max-width: 600px) {
    .custom-filter-bar-dropdown {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    .filter-item {
        flex: 1 1 auto;
        width: 100%;
    }
}
            