/**
 * Luxury Premium Enhancements - 奢侈品高端UI增强
 * 
 * 针对以下区域的高端设计优化:
 * 1. 页眉导航菜单 - 精致悬停效果和动画
 * 2. 产品展示区块 - 1x4 横向布局
 * 3. 品牌承诺区块 - 优雅图标设计
 * 4. 页脚 - 豪华品牌风格
 * 
 * 配色方案: 黑色/金色/米白色 - 经典奢侈品配色
 */

/* ====================================================
   1. 页眉导航菜单 - 高端UI效果
   ==================================================== */

/* 页眉容器 */
.site-header,
.main-header-bar,
.ast-main-header-wrap {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3) !important;
    padding: 1.5rem 0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

/* 滚动时页眉效果 */
.site-header.shrink,
.ast-main-header-wrap.shrink {
    padding: 0.8rem 0 !important;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.5) !important;
}

/* Logo 样式 */
.site-branding,
.site-logo-img {
    position: relative;
    z-index: 10;
}

.site-branding .site-title,
.site-branding .site-title a {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    color: #D4AF37 !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4) !important;
    transition: all 0.4s ease !important;
    position: relative;
    display: inline-block;
}

.site-branding .site-title a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #D4AF37 50%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.site-branding .site-title a:hover::after {
    opacity: 1;
}

.site-branding .site-title a:hover {
    color: #F5E6C8 !important;
    text-shadow: 0 4px 16px rgba(212, 175, 55, 0.6) !important;
    transform: translateY(-2px);
}

/* 导航菜单 - 高端效果 */
.main-navigation ul,
.main-header-menu ul,
.ast-desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-navigation ul li,
.main-header-menu ul li,
.ast-desktop-menu > li {
    position: relative;
}

.main-navigation ul li a,
.main-header-menu ul li a,
.ast-desktop-menu > li > a {
    font-family: 'Inter', -apple-system, sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #F5F3F0 !important;
    padding: 1rem 1.5rem !important;
    position: relative !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* 菜单项悬停 - 豪华效果 */
.main-navigation ul li a:hover,
.main-header-menu ul li a:hover,
.ast-desktop-menu > li > a:hover {
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.08) !important;
    transform: translateY(-2px);
}

/* 菜单项底部金色装饰线 */
.main-navigation ul li a::before,
.main-header-menu ul li a::before,
.ast-desktop-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #D4AF37 50%, 
        transparent 100%
    );
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.main-navigation ul li a:hover::before,
.main-header-menu ul li a:hover::before,
.ast-desktop-menu > li > a:hover::before {
    width: 80%;
}

/* 菜单项顶部光效 */
.main-navigation ul li a::after,
.main-header-menu ul li a::after,
.ast-desktop-menu > li > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: rgba(212, 175, 55, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transform: translateX(-50%);
}

.main-navigation ul li a:hover::after,
.main-header-menu ul li a:hover::after,
.ast-desktop-menu > li > a:hover::after {
    width: 60%;
}

/* 当前激活菜单项 */
.main-navigation ul li.current-menu-item > a,
.main-header-menu ul li.current-menu-item > a,
.ast-desktop-menu > li.current-menu-item > a {
    color: #D4AF37 !important;
    font-weight: 600 !important;
    background: rgba(212, 175, 55, 0.12) !important;
}

.main-navigation ul li.current-menu-item > a::before,
.main-header-menu ul li.current-menu-item > a::before,
.ast-desktop-menu > li.current-menu-item > a::before {
    width: 80%;
}

/* 下拉菜单 */
.main-navigation ul ul,
.main-header-menu ul ul,
.ast-desktop-menu .sub-menu {
    background: #1a1a1a !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
    padding: 1rem 0 !important;
    border-radius: 0 !important;
    margin-top: 0.5rem !important;
    min-width: 240px !important;
}

.main-navigation ul ul li a,
.main-header-menu ul ul li a,
.ast-desktop-menu .sub-menu li a {
    padding: 0.8rem 2rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.main-navigation ul ul li:last-child a,
.main-header-menu ul ul li:last-child a,
.ast-desktop-menu .sub-menu li:last-child a {
    border-bottom: none !important;
}

.main-navigation ul ul li a:hover,
.main-header-menu ul ul li a:hover,
.ast-desktop-menu .sub-menu li a:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    padding-left: 2.5rem !important;
}

/* 购物车图标 (如果有) */
.ast-header-cart,
.ast-menu-cart-with-border {
    position: relative;
}

.ast-header-cart a,
.ast-menu-cart-with-border a {
    color: #F5F3F0 !important;
    font-size: 1.2rem !important;
    padding: 0.8rem !important;
    transition: all 0.3s ease !important;
}

.ast-header-cart a:hover,
.ast-menu-cart-with-border a:hover {
    color: #D4AF37 !important;
    transform: scale(1.1);
}

.ast-header-cart .count,
.ast-menu-cart-with-border .count {
    background: #D4AF37 !important;
    color: #000 !important;
    font-weight: 600 !important;
    border-radius: 50% !important;
}


/* ====================================================
   2. 产品展示区块 - 1x4 横向布局
   ==================================================== */

/* 产品列表容器 */
.woocommerce ul.products,
.products,
.luxury-products,
section.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2.5rem !important;
    padding: 4rem 0 !important;
    margin: 0 !important;
}

/* 产品卡片 */
.woocommerce ul.products li.product,
.products .product,
.luxury-product-card {
    position: relative !important;
    background: #FFFFFF !important;
    overflow: hidden !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin: 0 !important;
    width: 100% !important;
}

.woocommerce ul.products li.product:hover,
.products .product:hover,
.luxury-product-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

/* 产品图片容器 */
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product img,
.luxury-product-card__image {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    aspect-ratio: 3 / 4 !important;
    background: #F5F3F0 !important;
}

/* 产品图片 */
.woocommerce ul.products li.product img,
.luxury-product-card__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.woocommerce ul.products li.product:hover img,
.luxury-product-card:hover img {
    transform: scale(1.15) !important;
}

/* 产品图片叠加效果 */
.woocommerce ul.products li.product .woocommerce-loop-product__link::after,
.luxury-product-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__link::after,
.luxury-product-card:hover .luxury-product-card__image::after {
    opacity: 1;
}

/* 产品信息区域 */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    color: #000000 !important;
    margin: 1.5rem 1.5rem 0.8rem !important;
    letter-spacing: 0.02em !important;
    transition: color 0.3s ease !important;
}

.woocommerce ul.products li.product:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product:hover h2,
.woocommerce ul.products li.product:hover h3 {
    color: #D4AF37 !important;
}

/* 产品价格 */
.woocommerce ul.products li.product .price,
.luxury-product-card__price {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin: 0 1.5rem 1.5rem !important;
    letter-spacing: 0.05em !important;
}

.woocommerce ul.products li.product .price del {
    color: #999999 !important;
    font-size: 0.95rem !important;
    margin-right: 0.5rem !important;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none !important;
    color: #D4AF37 !important;
}

/* 添加到购物车按钮 */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button {
    position: absolute !important;
    bottom: 1.5rem !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(20px) !important;
    opacity: 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    background: #D4AF37 !important;
    padding: 0.8rem 2rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4) !important;
    white-space: nowrap !important;
}

.woocommerce ul.products li.product:hover .button,
.woocommerce ul.products li.product:hover .add_to_cart_button {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: #000000 !important;
    color: #D4AF37 !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3) !important;
}

/* 产品徽章 (打折/新品) */
.woocommerce span.onsale,
.luxury-product-badge {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    z-index: 10 !important;
    background: #D4AF37 !important;
    color: #000000 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* 产品分类标签 */
.woocommerce ul.products li.product .posted_in,
.luxury-product-category {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #999999 !important;
    margin: 0 1.5rem 0.5rem !important;
}


/* ====================================================
   3. 品牌承诺区块 - Our Promise
   ==================================================== */

/* 承诺区块容器 */
.luxury-promise,
.our-promise-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 6rem 2rem;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* 装饰性背景元素 */
.luxury-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.luxury-promise::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.5) 50%, 
        transparent 100%
    );
}

/* 标题 */
.luxury-promise__title,
.our-promise-section h2 {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 600 !important;
    color: #FFFFFF !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.02em !important;
    position: relative;
}

/* 副标题 */
.luxury-promise__subtitle,
.our-promise-section .subtitle {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 300 !important;
    color: rgba(245, 243, 240, 0.8) !important;
    text-align: center !important;
    max-width: 700px !important;
    margin: 0 auto 4rem !important;
    line-height: 1.8 !important;
}

/* 承诺项目网格 */
.luxury-promise__grid,
.our-promise-section .promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 承诺项目卡片 */
.luxury-promise__item,
.promise-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.luxury-promise__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.luxury-promise__item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.luxury-promise__item:hover::before {
    opacity: 1;
}

/* 图标容器 */
.luxury-promise__icon,
.promise-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 图标背景圆环 */
.luxury-promise__icon::before,
.promise-item .icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-promise__item:hover .luxury-promise__icon::before,
.promise-item:hover .icon::before {
    transform: scale(1.2);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* 图标样式 */
.luxury-promise__icon svg,
.luxury-promise__icon i,
.promise-item .icon svg,
.promise-item .icon i {
    font-size: 2.5rem;
    color: #D4AF37;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.luxury-promise__item:hover .luxury-promise__icon svg,
.luxury-promise__item:hover .luxury-promise__icon i,
.promise-item:hover .icon svg,
.promise-item:hover .icon i {
    transform: scale(1.15) rotate(5deg);
    color: #F5E6C8;
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
}

/* 勾选图标 (✓) */
.luxury-promise__check,
.promise-check {
    color: #D4AF37;
    font-size: 2rem;
    font-weight: 700;
}

/* 承诺标题 */
.luxury-promise__item-title,
.promise-item h3 {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #FFFFFF !important;
    margin-bottom: 1rem !important;
    position: relative;
    z-index: 1;
}

/* 承诺描述 */
.luxury-promise__item-desc,
.promise-item p {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 300 !important;
    line-height: 1.7 !important;
    color: rgba(245, 243, 240, 0.7) !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}


/* ====================================================
   4. 页脚 - 豪华品牌风格
   ==================================================== */

/* 页脚主容器 */
.site-footer,
.ast-footer-wrap,
.footer-luxury {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%) !important;
    color: #F5F3F0 !important;
    padding: 0 !important;
    margin-top: 8rem !important;
    border-top: 3px solid #D4AF37 !important;
    position: relative;
    overflow: hidden;
}

/* 页脚顶部装饰线 */
.site-footer::before,
.ast-footer-wrap::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.4) 50%, 
        transparent 100%
    );
}

/* 页脚主要内容区 */
.footer-adv,
.footer-adv-overlay,
.ast-footer-overlay,
.site-footer .ast-container {
    background: transparent !important;
    padding: 5rem 2rem 3rem !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* 页脚小部件区域 */
.footer-widget-area {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 3rem !important;
    margin-bottom: 3rem !important;
}

/* 页脚小部件 */
.site-footer .widget,
.ast-footer-wrap .widget {
    background: transparent !important;
    padding: 0 !important;
}

/* 页脚小部件标题 */
.site-footer .widget-title,
.ast-footer-wrap .widget-title {
    font-family: 'Playfair Display', 'Georgia', serif !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    color: #D4AF37 !important;
    margin-bottom: 2rem !important;
    text-transform: uppercase !important;
    position: relative;
    padding-bottom: 1rem;
}

.site-footer .widget-title::after,
.ast-footer-wrap .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, 
        #D4AF37 0%, 
        transparent 100%
    );
}

/* 页脚链接 */
.site-footer a,
.ast-footer-wrap a {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 300 !important;
    color: rgba(245, 243, 240, 0.8) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block;
    position: relative;
}

.site-footer a::before,
.ast-footer-wrap a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.site-footer a:hover,
.ast-footer-wrap a:hover {
    color: #D4AF37 !important;
    transform: translateX(5px);
}

.site-footer a:hover::before,
.ast-footer-wrap a:hover::before {
    width: 100%;
}

/* 页脚文本 */
.site-footer p,
.ast-footer-wrap p,
.site-footer ul,
.ast-footer-wrap ul {
    font-family: 'Lato', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 300 !important;
    color: rgba(245, 243, 240, 0.7) !important;
    line-height: 1.9 !important;
    margin-bottom: 1.2rem !important;
}

/* 页脚列表 */
.site-footer ul,
.ast-footer-wrap ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-footer ul li,
.ast-footer-wrap ul li {
    margin-bottom: 1rem !important;
    padding-left: 1.5rem !important;
    position: relative;
}

.site-footer ul li::before,
.ast-footer-wrap ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.site-footer ul li:hover::before,
.ast-footer-wrap ul li:hover::before {
    transform: translateX(3px);
}

/* 页脚社交媒体图标 */
.footer-social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer-social-icons a {
    width: 48px !important;
    height: 48px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1) !important;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37 !important;
    font-size: 1.2rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.footer-social-icons a:hover {
    background: #D4AF37 !important;
    color: #000000 !important;
    border-color: #D4AF37;
    transform: translateY(-5px) rotate(5deg) !important;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* 页脚底部 / 版权区 */
.site-info,
.ast-footer-bar,
.ast-small-footer,
.ast-small-footer-wrap {
    background: #000000 !important;
    padding: 2rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: center !important;
}

.site-info p,
.ast-footer-bar p,
.ast-small-footer p {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.05em !important;
    color: rgba(245, 243, 240, 0.5) !important;
    margin: 0 !important;
}

.site-info a,
.ast-footer-bar a,
.ast-small-footer a {
    color: #D4AF37 !important;
    font-weight: 400 !important;
}

.site-info a:hover,
.ast-footer-bar a:hover,
.ast-small-footer a:hover {
    color: #F5E6C8 !important;
}


/* ====================================================
   5. 响应式设计 - 移动端适配
   ==================================================== */

/* 平板电脑 (1024px及以下) */
@media (max-width: 1024px) {
    /* 产品网格 - 3列 */
    .woocommerce ul.products,
    .products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
    
    /* 承诺网格 - 2列 */
    .luxury-promise__grid,
    .our-promise-section .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* 页脚小部件 - 2列 */
    .footer-widget-area {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem !important;
    }
}

/* 平板电脑竖屏 (768px及以下) */
@media (max-width: 768px) {
    /* 导航菜单 */
    .main-navigation ul li a,
    .main-header-menu ul li a,
    .ast-desktop-menu > li > a {
        padding: 0.8rem 1rem !important;
        font-size: 0.75rem !important;
    }
    
    /* 产品网格 - 2列 */
    .woocommerce ul.products,
    .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    /* 承诺区块 */
    .luxury-promise,
    .our-promise-section {
        padding: 4rem 1.5rem;
    }
    
    .luxury-promise__grid,
    .our-promise-section .promise-grid {
        gap: 2rem;
    }
    
    /* 页脚小部件 - 1列 */
    .footer-widget-area {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* 手机 (576px及以下) */
@media (max-width: 576px) {
    /* Logo */
    .site-branding .site-title,
    .site-branding .site-title a {
        font-size: 1.5rem !important;
    }
    
    /* 产品网格 - 1列 */
    .woocommerce ul.products,
    .products {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* 承诺网格 - 1列 */
    .luxury-promise__grid,
    .our-promise-section .promise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* 承诺标题 */
    .luxury-promise__title,
    .our-promise-section h2 {
        font-size: 2rem !important;
    }
    
    /* 页脚 */
    .footer-adv,
    .footer-adv-overlay,
    .site-footer .ast-container {
        padding: 3rem 1.5rem 2rem !important;
    }
}


/* ====================================================
   6. 额外的高端细节效果
   ==================================================== */

/* 页面加载动画 */
@keyframes luxuryFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-fade-in {
    animation: luxuryFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 滚动显示动画 */
.luxury-scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 光泽效果 (用于按钮和卡片) */
.luxury-shine {
    position: relative;
    overflow: hidden;
}

.luxury-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s ease;
}

.luxury-shine:hover::before {
    left: 100%;
}

/* 金色分隔线 */
.luxury-divider-gold {
    width: 100px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #D4AF37 50%,
        transparent 100%
    );
    margin: 3rem auto;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #D4AF37 0%, #C9A961 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #F5E6C8 0%, #D4AF37 100%);
}

/* 选中文本样式 */
::selection {
    background: #D4AF37;
    color: #000000;
}

::-moz-selection {
    background: #D4AF37;
    color: #000000;
}
