@charset "UTF-8";

body{
	background-color: #c2723c;
  	margin: 0;
	font-family: Arial, sans-serif;
}

html, body{
  	height: 100%;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

.main-nav a:hover {
  color: #ffcc00;
}

.container {
	margin-bottom: 30px;
}

.product-card {
	position: relative;
	transition: transform 0.3s;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

.product-card img {
	width: 100%;
	height: auto;
	display: block;
    }

.product-card:hover {
	transform: scale(1.05);
    }

    /* 卡片按钮悬停显示 */
.product-card .btn {
	opacity: 0;
	transition: opacity 0.3s;
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
    }

.product-card:hover .btn {
	opacity: 1;
    }

    /* 左侧筛选栏 */

.selected-filters {
	margin-bottom: 10px;
}

.selected-filters .filter-label {
  	display: inline-flex;
  	align-items: center;
  	gap: 6px;
  	background-color: #007bff;
  	color: #222;
  	padding: 4px 8px;
  	border-radius: 12px;
  	margin-right: 5px;
  	cursor: default;
  	font-size: 14px;
}

.selected-filters .filter-label span {
	display: inline-block;
  	padding: 2px 6px;
  	cursor: pointer;
  	margin-left: 6px;
	font-weight: bold;
}


.filters {
	background-color: #fdf6e9;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	margin-bottom: 20px;
    }

.filters h6 {
	font-weight: 600;
	margin-bottom: 10px;
    }

.filters ul {
	list-style: none;
	padding-left: 0;
    }

.filters ul li {
	margin-bottom: 8px;
    }

.filters ul li a {
	text-decoration: none;
	color: #333;
    }

.filters ul li a:hover {
	color: #ff6600;
    }

.bar {
  	width: 100%;
  	height: 40px;
  	background-color: #2c2c2c;
	margin-top: 30px;
}

.site-footer .footer-pill-wrap{
	width: 1000px;
	height: 35px;
	padding-bottom: 40px;
	background-color: #c2723c;
	border: 3px solid #2c2c2c;
 	border-radius: 40px;
	margin-top: 60px;
	margin: 60px auto 0;
}
.site-footer .footer-pill{
 	max-width: 1100px;
	margin: 0 auto;
  	color: #fff;
 	border-radius: 9999px;
  	padding: 14px 22px;
  	text-align: center;
 	font-size: 10px;
  	line-height: 1.3;
}

.footer-row {
	padding-top: 40px;
	padding-bottom: 40px;
	margin-left: 0;
	margin-right: 0;
}

.container1 {
	background-color: #c2723c;
	color: #fff;
}

/* 2) footer */

.site-footer .footer-legal{
	background-color: #fdf6e9;
	margin-top: 5px;
}
.site-footer .footer-legal-row{
  	display: flex;
  	justify-content: space-between;
 	gap: 20px;
  	flex-wrap: wrap;
  	padding: 16px 0;
}
.site-footer .footer-legal-row a{
  	color: #2c2c2c;
  	text-decoration: none;
  	font-weight: 600;
}
.site-footer .footer-legal-row a:hover{
  	text-decoration: underline;
}

/* 3) social */
.site-footer .footer-social{
	background-color: #2c2c2c;
	padding: 26px 0 30px;
}
.site-footer .social-row{
  	display: flex;
  	justify-content: center;
  	gap: 160px;
}
.site-footer .social-btn{
  	width: 64px;
  	height: 64px;
  	border-radius: 50%;
  	background: #d9d9d9;
  	display: inline-flex;
  	align-items: center;
  	justify-content: center;
  	color: #1b1b1b;
  	text-decoration: none;
  	font-size: 30px;
}

/* 4) bottom thin bar */
.site-footer .footer-bottom{
  	background-color: #fdf6e9;
  	color: #2c2c2c;
  	font-size: 14px;
  	padding: 6px 0;
}


* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* 手机适配 */
@media (max-width: 768px) {

  .site-header {
    flex-direction: column;
    padding: 12px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-card:hover {
    transform: none;
  }

  .product-card .btn {
    opacity: 1;
    position: static;
    margin-top: 8px;
  }

  .site-footer .footer-pill-wrap {
    width: 90%;
  }

  .site-footer .social-row {
    gap: 24px;
  }
}





