/** 
 * 描述：首页
 */
@charset "utf-8";
body {
	font-family: 'Microsoft YaHei', sans-serif;
	background-color: #f9f9f9;
	color: #333;
}

.main-container {
	max-width: 1200px;
	margin: 20px auto;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;
}

.container {
	display: flex;
	gap: 20px;
}

/* 左侧排行榜样式 */
.left-column {
	flex: 1;
}

.tab-header {
	display: flex;
	border-bottom: 2px solid #eee;
	margin-bottom: 15px;
}

.tab-btn {
	flex: 1;
	padding: 10px 5px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	color: #999;
	position: relative;
	transition: color 0.3s;
	text-align: center;
}

.tab-btn.active {
	color: #333;
	font-weight: bold;
	font-size:18px;
}

.tab-btn.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #722ed1;
}

.tab-btn:hover {
	color: #722ed1;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.ranking-list {
	list-style: none;
}

.ranking-item {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px dashed #eee;
}

.ranking-item:last-child {
	border-bottom: none;
}

.ranking-item:hover{ color: #722ed1;}
.ranking-item:hover i{ color: #722ed1; cursor:pointer}
.ranking-item.active { background: #722ed1; color: white; }
.ranking-item.active:hover { background: #722ed1;}

.rank {
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background-color: #f1f1f1;
	border-radius: 4px;
	margin-right: 10px;
	font-size: 12px;
}

.rank.top1 {
	background-color: #ff4757;
	color: white;
}

.rank.top2 {
	background-color: #F08F3A;
	color: white;
}

.rank.top3 {
	background-color: #C79E5F;
	color: white;
}

.item-name {
	flex: 1;
	font-size: 14px;
}

.item-value {
	font-size: 14px;
	color: #666;
}

/* 中间栏目样式 */
.middle-column {
	flex: 2;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* 幻灯片样式 */
.slider-container {
	position: relative;
	width: 560px;
	height: 230px;
	overflow: hidden;
	border-radius: 8px;
}
.slider-container img{
	width: 560px;
	height: 230px;
}
.slider-container .banner-arrow { width: 560px; position: absolute; top: 95px; left: 50%; margin-left: -50%; z-index:99999 }
.slider-container .arrow { background: url(../images/home_bg.png) no-repeat; width: 45px; height: 100px; position: absolute; z-index: 2; top:25px; cursor: pointer; }/*40px*/
.slider-container .pre { background-position: 0 -100px; left:6px; }
.slider-container .next { background-position: -45px -100px; right: 0; }
.slider-container .banner-arrow:hover .arrow { opacity: 0.5!important; }
.slider-container .banner-arrow .arrow:hover { opacity: 0.8!important; }
/* 满屏背静切换焦点图 */
.full-screen-slides { width: 560px; height: 230px; position: relative; z-index: 1; background: #343544; }
.full-screen-slides li { width: 560px; height: 230px; position: absolute; z-index: 1; top: 0; left: 0; }
.full-screen-slides li a { display: block; width:560px; height:230px; text-indent:-9999px; margin-left: -280px; position: absolute; z-index: 2; left: 50%; }
.full-screen-slides image{ width: 560px; height: 230px;}
.full-screen-slides-pagination { font-size: 0; *word-spacing:-1px/*IE6、7*/;
text-align: center; display:block; list-style:none; width:560px; height: 6px; padding:7px 8px; margin-left: -280px; position:absolute; left:50%; top: 200px; z-index: 9; }
.full-screen-slides-pagination li { vertical-align: top; letter-spacing: normal; word-spacing: normal; display: inline-block; *display:inline/*IE6、7*/;
list-style:none; border-radius: 5px; margin-left:4px; filter:progid:DXImageTransform.Microsoft.gradient(enabled='true', startColorstr='#3F000000', endColorstr='#3F000000');
background:rgba(0,0,0,0.25); overflow: hidden; cursor: pointer; *zoom:1;
}
.full-screen-slides-pagination a { display: block; width:10px; height:5px; line-height:15px; overflow: hidden; text-align: center; color:#fff; font-family:arial; font-size:12px; text-indent:-9999px; }
.full-screen-slides-pagination .current { background: #Fff; }

/* 分类区域样式 - 居底显示 */
.categories-container {
	border-radius: 8px;
	padding: 0;
	margin-top: 0;
	background:url(../images/tool_bg.png) no-repeat center;
	height:160px;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px 15px;
}

.category-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: transform 0.2s;
}

.category-item:hover {
	transform: translateY(-3px);
}

.category-icon {
	width: 50px;
	height: 50px;
	background-color: #f1f1f1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
	color: #3498db;
	font-size: 20px;
	padding:0;
}

.category-icon img{
	width: 20px;
	height: 20px;
	position:relative;
	left:15px;
	top:5px;
}

.category-name {
	font-size: 13px;
	text-align: center;
	color: #666;
}

/* 右侧数据样式 */
.right-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* 右侧上部标题 */
.right-title {
	font-size: 18px;
	font-weight: bold;
	color: #2c3e50;
	text-align: left;
	margin-bottom: 0px;
}

/* 右侧上部 - 统一背景的数据三格 */
.data-container {
	background-color: #f8f9fa;
	border-radius: 6px;
	padding: 15px;
}

.data-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.data-box {
	padding: 12px 0;
	text-align: center;
	position: relative;
}

/* 添加竖线分隔符 */
.data-box:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	height: 60%;
	width: 1px;
	background-color: #ddd;
}

.data-box-title {
	font-size: 12px;
	color: 666;
	margin-bottom: 5px;
}

.data-box-value {
	font-size: 14px;
	color: #2c3e50;
	height:20px;
}

/*统计数据*/
.data-box-value .toptitle{
	padding-left:2px;
	position: relative;
	top:-4px
}

/* 横线分隔符 */
.data-divider {
	height: 1px;
	background-color: #ddd;
	margin: 8px 0 5px 0;
}

/* 循环滚动信息框 */
.scroll-info {
	height: 30px;
	overflow: hidden;
	position: relative;
}

.scroll-content {
	position: absolute;
	width: 100%;
	transition: transform 0.5s ease;
}

.info-item {
	font-size: 13px;
	color: #666;
	padding: 5px 0;
	height: 30px;
	line-height: 30px;
}

.info-item.highlight {
	color: #e74c3c;
	font-weight: bold;
}

.info-link {
	color: inherit;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;	
}

.info-link:hover {
	color: #FF2825;
}

/* 广告栏标题 */
.ad-title-section {
	margin-bottom: 0px;
}

.ad-main-title {
	font-size: 18px;
	font-weight: bold;
	color: #2c3e50;
	text-align: left;
}

/* 右侧中部 - 广告栏（纯图片） */
.ad-section {
	background-color: #f8f9fa;
	border-radius: 6px;
	padding: 0;
	overflow: hidden;
	height: 120px; /* 高度减少30像素 */
	display: flex;
	align-items: center;
	justify-content: center;
	/* 去掉边框 */
}

.ad-section .sk_list{ height: 120px; overflow: hidden; position: relative; width: 100%; background-color:#F8F9FA}
.ad-section .sk_list .arrow{background: url(../images/home_bg.png) no-repeat; opacity: 0.2!important; width: 10px; height: 16px; position: absolute; z-index: 2; top: 52px; cursor: pointer;}
.ad-section .sk_list:hover .arrow{opacity: 0.8!important;}
.ad-section .sk_list .arrow:hover{opacity: 0.8!important;}
.ad-section .sk_list .pre{background-position: 0 0; left: 0;}
.ad-section .sk_list .next{background-position: -10px 0; right:0;}
.ad-section .special_wrapper{height: 120px; position: relative; width: 100%;}
.ad-section img {
	width: 100%;
	height: 120px;
	display: block;
	object-fit: cover;
}

/* 右侧下部 - 登录按钮（简化版） */
.login-section {
	padding: 10px 0;
	display: flex;
	gap: 12px;
	justify-content: center;
}

.login-btn {
	display: inline-block;
	background-color: #722ed1;
	color: white;
	padding: 12px 30px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.3s;
	font-size: 15px;
}

.login-btn:hover {
	background-color: #FF7853; color:#FFFFFF;
}

/* 搜索框*/
.index-search-container {
	max-width: 800px;
	width: 100%;
	border-radius: 12px;
	padding: 30px 0 0 0;
	margin:0 auto;
}
		
.tabs-container {
	display: flex;
	justify-content: center;
	margin-bottom: 25px;
}

.search-tabs {
	display: flex;
	gap: 30px;
	background: transparent;
	padding: 5px;
	border-radius: 8px;
}

.search-tab {
	padding: 5px 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	color: #333333;
	border-radius: 30px;
	font-size: 0.95rem;
	font-weight:600;
	position: relative;
}

.search-tab:hover {
	color: #7753FF;
}

.search-tab.active {
	color: #ffffff;
	background:#7753FF;
	font-weight:600;
}

.search-input-container {
	position: relative;
	margin-bottom: 25px;
	border: 2px solid #7753FF;
	padding: 10px 60px 10px 10px;
	border-radius:25px;
	background:#ffffff;
}

.search-input-container input{
	border: 0;
	font-size:14px;
}

.search-input-container input:focus{
	border: none;
	outline:none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
}

.search-goods {
	width: 100%;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	outline: none;
	background: white;
	height:30px;
	border:0;
}

.search-goods:focus {
	border-color: #7753FF;
	box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.search-icon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: #7753FF;
	color: white;
	width: 60px;
	height: 40px;
	border-radius: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.2rem;
	box-shadow: 0 3px 8px rgba(67, 97, 238, 0.3);
}

.search-icon:hover {
	background: #6742f0;
	transform: translateY(-50%) scale(1);
}

.recent-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: left;
}

.recent-tag {
	color: #666666;
	padding: 0 16px 8px 16px;
	font-size: 0.8rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.recent-tag:hover {
	color: #722ed1;
}

/*数字滚动插件的CSS可调整样式*/
.mt-number-animate{ font-family: '微软雅黑'; height: 20px; line-height:20px;/*设置数字显示高度*/; overflow: hidden; display: inline-block; position: relative; text-align:center; font-size:16px}
.mt-number-animate .mt-number-animate-dot{ width: 5px;/*设置分割符宽度*/ float: left; text-align: center; padding:0 1px; color:#FF2826}
.mt-number-animate .mt-number-animate-dom{ width: 6px;/*设置单个数字宽度*/ text-align: center; float: left; position: relative; top: 0;margin-right:1px;color:#FF2826; font-weight:600;}
.mt-number-animate .mt-number-animate-dom .mt-number-animate-span{ width: 100%; float: left;}

/*猜你喜欢*/
.wti-floor {position:relative;}
.text-title {color:#222;text-align:center;height:43px;font-weight:800}
.text-title>.text-ctn {position:relative;font-size:24px;line-height:22px;font-family:'Microsoft YaHei',SimSun,sans-serif,'\65b9\6b63\5170\4ead\9ed1'}
.text-title>.text-ctn:after,.text-title>.text-ctn:before {content:'';position:absolute;width:50px;height:2px;background-color:#222;top:18px}
.text-title>.text-ctn:before {left:-68px}
.text-title>.text-ctn:after {right:-68px}
.wti-floor .wti-love {display:table; width: 1200px; margin:0 auto;}
.wti-floor .wti-love li{float:left;width:228px;margin-right:9px;margin-bottom:12px}
.wti-floor .wti-love li a{display:block;position:relative;background-color:#fff;overflow:hidden;width:100%;height:300px}
.wti-floor .wti-love li a:hover { text-decoration: none; border-color: #FFCC33 !important;border-width: 1px !important; box-shadow: 0 0 4px rgba(0, 0, 0, 0.12); color: #FFCC33 !important;}
.wti-floor .wti-love li a .goods-thumb {display:block;  margin: 30px 30px 20px; width:170px;height:170px;overflow:hidden;}
.wti-floor .wti-love li a .goods-thumb img{display:block; max-width: 100%; max-height: 100%;}
.wti-floor .wti-love li a .item-info{display:block;padding:0 15px;text-align:left}
.wti-floor .wti-love li a .item-info .item-desc{display:block;height:34px;line-height:17px;overflow:hidden;font-size:14px;color:#666}
.wti-floor .wti-love li a .item-info .item-detail{position:relative; text-align: center; display:block;height:33px;line-height:22px;margin-top:2px}
.wti-floor .wti-love li a .item-info .item-price{line-height:32px;color:#c00;font-size:16px; font-weight: 600;}
.wti-floor .wti-love li a .item-info .item-price .price-rmb{font-size:14px}

/* 商品区域 */
.goods-container {
	width: 1200px;
	margin: 0 auto 20px auto;
	/*background-color:#FCFCFC;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	box-sizing: border-box;	*/
}


/* 自适应的一级分类样式 */
.wth-brand-class ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.wth-brand-class ul li {
	position: relative;
	padding: 12px 20px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	color: #555;
	border: 1px solid #eaeaea;
	white-space: nowrap;
	flex: 1 0 auto;
	text-align: center;
	min-width: fit-content;
}

.wth-brand-class ul li:hover {
	background-color: rgba(119,83,255, 0.05);
	color: #7753FF;
	border-color: #7753FF;
}

.wth-brand-class ul li.tabs-selected {
	background-color: #7753FF;
	color: white;
	box-shadow: 0 4px 8px rgba(119,83,255, 0.3);
	border-color: #7753FF;
}

.wth-brand-class ul li.tabs-selected:hover {
	background: #6742f0;
}
        
/* 推荐标签样式 */
.recommended-badge {
	position: absolute;
	top: -10px;
	right: -18px;
	background: linear-gradient(45deg, #FF0066, #FF0000);
	color: white;
	font-size: 10px;
	padding: 3px 8px;
	border-radius: 6px;
	font-weight: bold;
	box-shadow: 0 2px 5px rgba(255, 107, 107, 0.3);
	z-index: 1;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% { transform: scale(0.6); }
	50% { transform: scale(0.7); }
	100% { transform: scale(0.6); }
}

.brands-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.brand-card {
	background: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #f3f4f6;
}

.brand-card:hover {
	/*transform: translateY(-1px);*/
	background-color: #f8f9ff;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 0 20px 0;
	position: relative;
	height:40px;
}

.brand-logo img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	transition: transform 0.3s;
	border-radius:5px;
}

.category-tag {
	position: absolute;
	top: 8px;
	right: 8px;
	background: rgba(255, 255, 255, 0.5);
	color: #722ed1;
	padding: 3px 8px;
	border-radius: 10px;
	font-size: 0.65rem;
	font-weight: 600;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	z-index: 1;
}

.brand-info {
	padding: 0 14px 10px 14px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.brand-info h3 {
	font-size: 1rem;
	margin-bottom: 20px;
	color: #2c3e50;
	text-align: center;
	font-weight: 600;
}

.brand-description {
	width:200px;
	color: #7f8c8d;
	font-size: 0.8rem;
	line-height: 20px;
	height: 20px;
	text-align:center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom:10px;
}
/*优势栏目*/
.youshi-container {
	width: 1200px;
	padding: 0;
	box-sizing: border-box;
	margin:0 auto;
}
.advantages {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.advantage-column {
	flex: 1;
	min-width: 285px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.advantage-column:hover {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.advantage-content {
	display: flex;
	padding: 20px;
	height: 100%;
}

.left-content {
	flex: 1;
	padding-right: 25px;
}

.advantage-title {
	color: #2c3e50;
	margin-bottom: 8px;
	font-size: 1rem; /* 缩小标题字体 */
	font-weight: 600;
	white-space: nowrap;
}

.advantage-desc {
	color: #657485;
	font-size: 0.7rem; /* 缩小说明字体 */
	line-height: 1.4;
	white-space: nowrap; /* 确保文字在一行显示 */
	overflow: hidden;
	text-overflow: ellipsis;
}

.right-content .arrow {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	font-weight:0;
}

.advantage-column:hover .arrow {
	transform: translateX(8px);
}

.advantage-link {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 10px;
}   

/* 为每列添加不同的淡色背景 */
.advantages a:nth-child(1) {
	background: rgba(52, 152, 219, 0.05);
}

.advantages a:nth-child(2) {
	background: rgba(46, 204, 113, 0.05);
}

.advantages a:nth-child(3) {
	background: rgba(155, 89, 182, 0.05);
}

.advantages a:nth-child(4) {
	background: rgba(241, 196, 15, 0.05);
}

/* 箭头颜色与背景相协调 */
.advantages a:nth-child(1) .arrow {
	background: rgba(52, 152, 219, 1);
}

.advantages a:nth-child(2) .arrow {
	background: rgba(46, 204, 113, 1);
}

.advantages a:nth-child(3) .arrow {
	background: rgba(155, 89, 182, 1);
}

.advantages a:nth-child(4) .arrow {
	background: rgba(241, 196, 15, 1);
}

/* 首页导航按钮 */

.banner-container {
	width: 1200px;
	border-radius: 0px;
	overflow: hidden;
	margin:0 auto 20px auto;
}

.banner {
	width: 100%;
	height: 120px;
	background: linear-gradient(90deg, #FFF3EF 0%, #FFDFDF 100%);
	display: flex;
	position: relative;
	background:url(../images/bannerbg.png) no-repeat left top;
}

/* 左侧合作图标 */
.left-section {
	width: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
}

.left-section img{
	height:90px;
	width:auto;
}

.handshake-icon {
	font-size: 40px;
	color: #FF5628;
}

/* 中间文字内容 */
.middle-section {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 0 0 20px;
	color: #333;
}

.top-text {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #f5d560;
	letter-spacing: 0.5px;
}

.bottom-text {
	font-size: 16px;
	color: #fff;
	opacity: 0.95;
	max-width: 90%;
	line-height: 1.5;
}

.accent {
	color: #f5d560;
	font-weight: 700;
	position: relative;
	display: inline-block;
}

.accent::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #f5d560 0%, transparent 100%);
	border-radius: 2px;
}

/* 右侧加盟按钮 */
.right-section {
	width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 40px 20px 0;
}

.join-button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	color: #6F33F4;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(111,51,244,0.25);
	white-space: nowrap;
	border: 1px solid rgba(111,51,244,0.1);
}

.join-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(111,51,244,0.35);
	background: #E6E6FA;
}

.join-button:active {
	transform: translateY(-1px);
}

.button-text {
	margin-right: 10px;
	font-size: 20px;
}

.join-arrow {
	width: 20px;
	height: 20px;
	position: relative;
	transition: transform 0.3s ease;
	font-size:24px;
}

.join-button:hover .join-arrow {
	transform: translateX(3px);
}


/* 装饰元素 */
.decoration {
	position: absolute;
	opacity: 0.1;
}

.circle-1 {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid #3A20B8;
	top: -30px;
	left: 150px;
}

.circle-2 {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #3A20B8;
	bottom: -15px;
	right: 200px;
}

.buttons-panel {
	padding: 8px 0;
	display: flex;
	gap: 12px;
	justify-content: center;
}

.action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.75rem;
	transition: all 0.3s;
	font-weight: 500;
	border: 1px solid transparent;
	white-space: nowrap;
	flex: 1;
	min-height: 28px;
	font-size:13px;
}

.products-btn {
	background: #FFFFFF;
	border-color: #7753FF;
	color:#7753FF;
}

.favorite-btn {
	background: #7753FF;
	border-color: #7753FF;
}

.favorite-btn.active {
	background: #6742f0;
	border-color: #6742f0;
}

.action-btn:hover {
	transform: scale(1.0);
	color:#FFFFFF;
}

.products-btn:hover {
	background: #f8f9ff;
	border-color: #7753FF;
	color:#7753FF;
}

.favorite-btn:hover {
	background: #6742f0;
	border-color: #6742f0;
}

.favorite-btn.active:hover {
	background: #6742f0;
	border-color: #6742f0;
}

.action-btn i {
	margin-left: 4px;
	font-size: 0.9rem;
}