/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 12 2026 | 17:07:47 */
/* Add/* ============================================
   Group Sounds Lab - 摇滚复古木质风格
   ============================================ */

/* 全局米白背景 */
body {
    background-color: #FAF8F5 !important;
    font-family: Georgia, serif !important;
}

/* 标题字体 - 复古感 */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, serif !important;
    color: #5D4037 !important;
}

/* 主色调 */
:root {
    --primary-wood: #5D4037;
    --accent-copper: #B87333;
}

/* 按钮样式 - 金属铜感 */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background-color: #B87333 !important;
    border-color: #B87333 !important;
    color: #FFFFFF !important;
    border-radius: 4px;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background-color: #5D4037 !important;
    border-color: #5D4037 !important;
}

/* 链接颜色 */
a {
    color: #B87333 !important;
}

a:hover {
    color: #5D4037 !important;
}

/* 头部导航 */
.site-header {
    background-color: #5D4037 !important;
    border-bottom: 3px solid #B87333;
}

.main-navigation a {
    color: #FFFFFF !important;
}

/* Footer */
.site-footer {
    background-color: #5D4037 !important;
    color: #FFFFFF !important;
}

/* 产品卡片 */
.woocommerce ul.products li.product {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(93, 64, 55, 0.1);
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #5D4037 !important;
}

.woocommerce ul.products li.product .price {
    color: #B87333 !important;
}

/* 价格 */
.woocommerce div.product p.price {
    color: #B87333 !important;
    font-size: 28px;
}

/* 添加购物车按钮 */
.single_add_to_cart_button {
    background-color: #B87333 !important;
    border: none !important;
    padding: 15px 40px !important;
}

.single_add_to_cart_button:hover {
    background-color: #5D4037 !important;
} your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

