/*
Theme Name: Storefront Child
Theme URI: https://woocommerce.com/storefront/
Description: Storefront 官方主题的子主题。请在此处添加自定义样式，父主题（Storefront）的样式会自动加载，更新父主题不会丢失你的修改。
Author: oruif
Author URI: https://xruiflower.com
Template: storefront
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: storefront-child
*/

/* 在下方添加你的自定义样式 */




/* 隐藏所有页面标题 */
.page .entry-title,
.page-title {
    display: none;
}






/* 同时隐藏购物车和结账页的简短描述 */
.wc-block-components-product-metadata__description {
    display: none !important;
}





.wc-block-components-address-form__country {
    display: none !important;
}





/* 输入框圆角 */
input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="number"], textarea, select {
    border-radius: 5px;
}
button, .button, .wp-block-button__link {
    border-radius: 5px;
}




/* 头部文字/菜单改深色 */
/* 头部背景改白 */
.site-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e5e5;  /* 加条浅色分割线，更美观 */
}



/* 隐藏头部搜索框 */
.site-search { display: none !important; }
