@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//usextoys.top/wp-content/themes/woodmart/fonts/woodmart-font-1-400.woff2?v=7.3.4") format("woff2");
}

:root {
	--wd-header-banner-h: 40px;
	--wd-text-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: rgb(40,40,40);
	--wd-text-font-size: 16px;
	--wd-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 600;
	--wd-title-color: #242424;
	--wd-entities-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 500;
	--wd-entities-title-color: rgb(0,0,0);
	--wd-entities-title-color-hover: rgb(40, 40, 40);
	--wd-alternative-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 500;
	--wd-widget-title-transform: inherit;
	--wd-widget-title-color: rgb(0,0,0);
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 400;
	--wd-header-el-transform: inherit;
	--wd-header-el-font-size: 16px;
	--wd-primary-color: rgb(87,29,174);
	--wd-alternative-color: #fbbc34;
	--wd-link-color: #333333;
	--wd-link-color-hover: #242424;
	--btn-default-bgcolor: #f7f7f7;
	--btn-default-bgcolor-hover: #efefef;
	--btn-accented-bgcolor: rgb(87,29,174);
	--btn-accented-bgcolor-hover: rgb(255,39,77);
	--wd-form-brd-width: 1px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
}
.woodmart-woocommerce-layered-nav .wd-scroll-content {
	max-height: 223px;
}
div.wd-popup.wd-age-verify {
	max-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: none;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
}
div.wd-popup.wd-promo-popup {
	max-width: 800px;
}
.page-title-default {
	background-color: rgb(255,255,255);
	background-image: none;
	background-size: cover;
	background-position: center center;
}
.footer-container {
	background-color: #ffffff;
	background-image: none;
}
html .wd-buy-now-btn {
	color: rgb(255,255,255);
	background: rgb(221,51,51);
}
html .wd-buy-now-btn:hover {
	color: rgb(255,255,255);
	background: rgb(0,0,0);
}
.product-labels .product-label.onsale {
	background-color: rgb(221,51,51);
}
.product-labels .product-label.new {
	background-color: rgb(60,193,75);
}
.product-labels .product-label.featured {
	background-color: rgb(242,148,55);
}
div.wd-popup.popup-quick-view {
	max-width: 920px;
}

@media (max-width: 1024px) {
	:root {
		--wd-header-banner-h: 40px;
	}

}
:root{
--wd-container-w: 1700px;
--wd-form-brd-radius: 5px;
--btn-default-color: #333;
--btn-default-color-hover: #333;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 0px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-default-box-shadow-active: none;
--btn-default-bottom: 0px;
--btn-accented-brd-radius: 35px;
--btn-accented-box-shadow: none;
--btn-accented-box-shadow-hover: none;
--wd-brd-radius: 0px;
}

@media (min-width: 1717px) {
.platform-Windows .wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}

@media (min-width: 1700px) {
html:not(.platform-Windows) .wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}


.quantity {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity input[type="button"] {
    width: 40px; /* 增大按钮尺寸 */
    height: 40px;
    background-color: #f0f0f0; /* 按钮默认背景颜色 */
    border: 1px solid #ddd; /* 边框 */
    color: #333; /* 字体颜色 */
    font-size: 20px; /* 增加字体大小 */
    cursor: pointer;
    text-align: center;
   
    transition: all 0.3s ease; /* 平滑过渡效果 */
    line-height: 1; /* 确保文字居中 */
}

.quantity input[type="button"]:hover {
    background-color: #007cba; /* 悬停时的背景颜色 */
    color: white; /* 悬停时的字体颜色 */
    transform: scale(1.1); /* 悬停时稍微放大按钮 */
}

.quantity .input-text.qty {
    width: 60px; /* 数字输入框的宽度 */
    text-align: center; /* 数字居中 */
    border: 1px solid #ddd; /* 边框 */
    margin: 0 10px; /* 按钮和输入框之间的间距 */
    font-size: 16px;
    padding: 10px; /* 内边距，让框看起来更大 */
    border-radius: 0px; /* 圆角边框 */
    transition: border-color 0.3s ease; /* 边框颜色变化 */
}

.quantity .input-text.qty:focus {
    border-color: #007cba; /* 聚焦时改变边框颜色 */
    outline: none; /* 去掉默认的聚焦轮廓 */
}

@media (max-width: 768px) {
    .quantity input[type="button"] {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .quantity .input-text.qty {
        width: 50px;
    }
}
.quantity {
    display: flex;
    align-items: left;
    justify-content: left;

    width: 100%;          /* 占满整行 */
    margin: 20px 0;       /* 上下留白 */
    flex-wrap: nowrap;    /* 避免换行 */
}
/* 通用按钮容器样式 */
.buy-buttons-wrapper {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}

.buy-buttons-wrapper .single_add_to_cart_button,
.buy-buttons-wrapper .wd-buy-now-btn {
    flex: 1;
    box-sizing: border-box;
    margin: 0 !important;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
    border-radius: 2px;
}

/* ✅ Add to cart 样式 */
.buy-buttons-wrapper .single_add_to_cart_button {
    background-color: transparent;
    border: 1px solid black;
    color: black;
    transition: all 0.3s ease;
}

/* 鼠标悬停时的 add to cart 样式 */
.buy-buttons-wrapper .single_add_to_cart_button:hover {
    background-color: black;
    color: white;
}

/* ✅ Buy Now 样式（默认红色背景） */
.buy-buttons-wrapper .wd-buy-now-btn {
    background-color: #e53935; /* 红色，也可以换成你想要的色值 */
    border: none;
    color: white;
    transition: all 0.3s ease;
}

/* Buy Now 悬停样式（可选） */
.buy-buttons-wrapper .wd-buy-now-btn:hover {
    opacity: 0.9;
}

/* ✅ 移动端按钮变成上下排 */
@media (max-width: 768px) {
    .buy-buttons-wrapper {
        flex-direction: column;
    }

    .buy-buttons-wrapper .single_add_to_cart_button,
    .buy-buttons-wrapper .wd-buy-now-btn {
        width: 100%;
        margin: 5px 0 !important;
    }
}


.buy-buttons-wrapper {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.cfvsw-product-page table.variations .label label {
    margin-top: 20px;
    margin-bottom: 20px;
}



/* 默认样式：未选中 */
.cfvsw-swatches-container .cfvsw-swatches-option {
    background-color: initial; /* 保留默认背景颜色 */
    color: initial;            /* 保留默认字体颜色 */
}

/* 选中样式 */
.cfvsw-swatches-container .cfvsw-selected-swatch {
    background-color: black !important;  /* 选中背景颜色 */
    color: white !important;             /* 选中字体颜色 */
    border: 2px solid black !important;  /* 可选：突出边框 */
    transition: all 0.3s ease;           /* 动态过渡效果 */
}




