/*
Theme Name: DCSEXY.SHOP 子主题
...
*/

/* 在这里添加弹窗的 CSS 样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Inter', sans-serif;
  min-height: 100vh;
  background-color: #121212;
}
.background-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0b0e14;
  background-image: url("data:image/svg+xml,%3Csvg..."); /* 保持原样 */
  filter: blur(24px) brightness(0.6);
}
/* ===== 弹窗（年龄验证） ===== */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 200, 220, 0.9); /* 半透明粉色，与页眉协调 */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.age-overlay.hidden {
    opacity: 0;
    pointer-events: none; /* 隐藏时不可点击 */
}

/* 弹窗卡片 */
.verify-card {
    background: #fff9fc;                /* 极浅粉白 */
    max-width: 440px;
    width: 100%;
    border-radius: 40px;
    padding: 2.2rem 2rem;
    box-shadow: 0 30px 50px rgba(196, 69, 105, 0.25); /* 粉色阴影 */
    border: 2px solid #ffd0dd;
    text-align: left;
    animation: popIn 0.3s cubic-bezier(0.21, 1.11, 0.37, 1.11); /* 弹入动画 */
    font-family: 'Quicksand', sans-serif;
}

/* 弹入动画 */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* 标题 */
.verify-card .title {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    font-weight: 400;
    color: #c44569;                      /* 主色 */
    margin-bottom: 1rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verify-card .title span {
    font-size: 2rem;
}

/* 描述文字 */
.verify-card .description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b5e5e;
    margin-bottom: 2rem;
    padding: 1rem 1.2rem;
    background: #fff0f5;
    border-left: 4px solid #ffb6c1;
    border-radius: 20px;
    font-weight: 400;
}

/* 按钮组 */
.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    flex: 1 1 140px;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 1rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px rgba(196, 69, 105, 0.2);
    text-align: center;
}

/* 进入按钮 */
.btn-enter {
    background: #c44569;
    color: white;
    border: 2px solid #b03a5c;
}
.btn-enter:hover {
    background: #b03a5c;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(196, 69, 105, 0.4);
}

/* 离开按钮 */
.btn-leave {
    background: #ffe4ec;
    color: #c44569;
    border: 2px solid #ffb6c1;
}
.btn-leave:hover {
    background: #ffd0dd;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 150, 180, 0.3);
}

/* 隐藏时的遮罩（已由 .hidden 控制） */
.age-overlay.hidden {
    display: none; /* 保持隐藏 */
}

/* 移动端适配 */
@media (max-width: 480px) {
    .verify-card {
        padding: 1.8rem 1.2rem;
    }
    .title {
        font-size: 1.8rem;
    }
    .btn {
        font-size: 0.9rem;
        padding: 0.8rem 0.5rem;
    }
}
/* ===== 清新粉嫩页脚 ===== */
.dcsexy-footer {
    background: #ffd9e6; /* 极浅粉 */
    border-top: 2px solid #ffd9e6;
    padding: 3rem 2rem 0;
    font-family: 'Quicksand', sans-serif;
    color: #5a4e4e;
    box-shadow: 0 -10px 30px rgba(248, 187, 208, 0.1);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.footer-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 12px 25px rgba(255, 180, 200, 0.2);
    border: 1px solid #ffe4ec;
    transition: transform 0.2s;
}

.footer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 30px rgba(255, 160, 180, 0.3);
}

.footer-title {
    font-family: 'Pacifico', cursive;
    font-size: 1.6rem;
    font-weight: 400;
    color: #c44569;
    margin-top: 0;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 0 rgba(255, 200, 220, 0.5);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b5e5e;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffe4ec;
    border-radius: 50%;
    color: #c44569;
    font-size: 1.2rem;
    transition: all 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(249, 168, 184, 0.3);
}

.social-icon:hover {
    background: #ffb6c1;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: #6b5e5e;
    font-weight: 500;
    transition: color 0.2s;
    border-bottom: 1px dotted transparent;
}

.footer-links a:hover {
    color: #e36b8b;
    border-bottom-color: #f9a8b8;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #6b5e5e;
    font-size: 0.95rem;
}

.contact-info i {
    width: 20px;
    color: #f9a8b8;
    font-size: 1.2rem;
}

.contact-info a {
    color: #6b5e5e;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #e36b8b;
}

.payment-icons {
    display: flex;
    gap: 0.8rem;
    font-size: 2rem;
    color: #f9a8b8;
    border-top: 1px dashed #ffd9e6;
    padding-top: 1.2rem;
    margin-top: 0.5rem;
}

.payment-icons i {
    transition: transform 0.2s;
    cursor: default;
}

.payment-icons i:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #ffd9e6;
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.95rem;
    color: #a58b8b;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 60px 60px 0 0;
    backdrop-filter: blur(4px);
}

.footer-bottom i.fa-heart {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

/* 响应式 */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-card {
        text-align: center;
    }
    .social-links, .payment-icons {
        justify-content: center;
    }
    .contact-info li {
        justify-content: center;
    }
}
/* ===== 清新粉嫩页眉 ===== */
body .site-header {
    background: #ffd9e6; /* 极浅粉 */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 3px solid #ffe2f0;
    box-shadow: 0 8px 20px rgba(255, 180, 200, 0.2);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

/* Logo 使用手写体 */
	header .logo a {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    font-weight: 400;
    text-decoration: none;
    color: #c44569;                /* 先加 !important 测试 */
    text-shadow: 0 4px 10px rgba(196, 69, 105, 0.3);
    letter-spacing: -0.5px;
    transition: text-shadow 0.3s;
    /* 确保下面这些属性不存在： */
    /* background: linear-gradient(...); */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
}
.logo a:hover {
    text-shadow: 0 6px 15px rgba(255, 120, 160, 0.5);
}

/* 导航菜单 */
.main-nav {
    flex: 1;
    margin-left: 1rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #6b4e5e;
    text-decoration: none;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

	body .nav-list a i {
    font-size: 0.8rem;
    color: #ffa7b9;
    transition: transform 0.2s;
}

	body .nav-list a:hover {
    color: #e36b8b;
    border-bottom-color: #ffb6c1;
}
	body .nav-list a:hover i {
    transform: rotate(180deg);
    color: #e36b8b;
}

/* 二级菜单 */
	body .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    min-width: 220px;
    border-radius: 24px;
    padding: 0.8rem 0;
    list-style: none;
    box-shadow: 0 15px 30px rgba(255, 170, 190, 0.3);
    border: 1px solid #ffe2f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 200;
}
	body .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

	body .sub-menu li {
    width: 100%;
}
	body .sub-menu a {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    color: #6b5e5e;
    border-bottom: none;
    display: block;
    white-space: nowrap;
    transition: background 0.2s;
}
	body .sub-menu a:hover {
    background: #fff0f5;
    color: #e36b8b;
}

/* 右侧图标栏 */
	body .header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* 搜索 */
	body .search-wrapper {
    position: relative;
}
	body .search-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #c44569;
    cursor: pointer;
    padding: 0.3rem;
    transition: color 0.2s, transform 0.2s;
}
	body .search-toggle:hover {
    color: #e36b8b;
    transform: scale(1.1);
}
	body .search-form {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 150, 180, 0.25);
    display: none;
    align-items: center;
    padding: 0.2rem 0.2rem 0.2rem 1.2rem;
    border: 2px solid #ffe2f0;
    width: 250px;
    z-index: 200;
}
	body .search-form.active {
    display: flex;
}
	body .search-form input {
    border: none;
    outline: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    width: 100%;
    background: transparent;
    color: #604e4e;
}
	body .search-form input::placeholder {
    color: #dba1b1;
    font-weight: 300;
}
	body .search-form button {
    background: #ffb6c1;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    color: white;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
	body .search-form button:hover {
    background: #ff9eb5;
    transform: scale(1.05);
}

/* 用户图标 */
	body .user-icon,
	body .cart-icon {
    font-size: 1.6rem;
    color: #c44569;
    text-decoration: none;
    position: relative;
    transition: color 0.2s, transform 0.2s;
}
	body .user-icon:hover, .cart-icon:hover {
    color: #c44569;
    transform: scale(1.1);
}

/* 购物车徽章 */
	body .cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #b03a5c;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(255, 150, 185, 0.6);
}

/* 移动端菜单按钮 */
	body .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #c44569;
    cursor: pointer;
    padding: 0.3rem;
    transition: transform 0.2s;
}
	body .mobile-menu-toggle:hover {
    transform: scale(1.1);
}

/* 响应式 */
@media (max-width: 768px) {
    .site-header {
        padding: 0.6rem 1rem;
    }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        border-bottom: 2px solid #ffd9e6;
        box-shadow: 0 15px 30px rgba(255, 180, 200, 0.2);
        display: block;
        margin-left: 0;
        z-index: 99;
    }
    .main-nav.active {
        display: block;
    }
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 1.5rem;
    }
    .nav-list li {
        border-bottom: 1px solid #ffe2f0;
    }
    .nav-list a {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: none;
    }
    .sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #fff2f7;
        border-radius: 20px;
        margin: 0.5rem 0 0.5rem 1rem;
        padding: 0;
        border: 1px solid #ffd9e6;
        display: none;
    }
    .sub-menu.active {
        display: block;
    }
    .sub-menu a {
        padding: 0.8rem 1.5rem;
    }
    .menu-item-has-children.active .arrow-icon {
        transform: rotate(180deg);
    }
    .mobile-menu-toggle {
        display: none;
    }
    .header-actions {
        gap: 0.8rem;
    }
}
@media (max-width: 480px) {
    .logo a {
        font-size: 1.6rem;
    }
    .search-form {
        width: 200px;
    }
}
.home-content * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.home-content {
    font-family: 'Quicksand', sans-serif;
    background: #fff9fb; /* 极浅粉背景 */
    color: #4a3f44;
    line-height: 1.5;
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 20px 50px;
}
/* 主色 #c44569 */
.home-content .text-primary { color: #c44569; }
.home-content .bg-primary { background-color: #c44569; }
.home-content .btn-primary {
    background-color: #c44569;
    border: none;
    color: white;
    transition: 0.2s;
}
.home-content .btn-primary:hover {
    background-color: #a02e4f;
    cursor: pointer;
}
.home-content .section-title {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #c44569;
    text-align: center;
    margin-bottom: 30px;
}
/* 轮播 */
.home-content .carousel {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(196,69,105,0.15);
    margin-bottom: 60px;
}
.home-content .carousel-inner {
    display: flex;
    transition: transform 0.4s ease;
}
.home-content .carousel-item {
    flex: 0 0 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
}
.home-content .carousel-item::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(90deg, rgba(196,69,105,0.6) 0%, rgba(255,213,225,0.3) 100%);
}
.home-content .carousel-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.home-content .carousel-content h2 {
    font-family: 'Pacifico', cursive;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
}
.home-content .carousel-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 400;
}
.home-content .carousel-btn {
    background: white;
    color: #c44569;
    border: none;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.2s;
}
.home-content .carousel-btn:hover { background: #ffe2eb; transform: scale(1.02); }
.home-content .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: #c44569;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.home-content .carousel-control.prev { left: 20px; }
.home-content .carousel-control.next { right: 20px; }
.home-content .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.home-content .dot {
    width: 14px; height: 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 20px;
    transition: 0.2s;
    cursor: pointer;
}
.home-content .dot.active { background: white; width: 30px; }

/* 分类网格 */
.home-content .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}
.home-content .category-card {
    background: white;
    border-radius: 40px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 15px 25px rgba(196,69,105,0.1);
    transition: 0.2s;
}
.home-content .category-card:hover { transform: translateY(-8px); }
.home-content .category-icon {
    font-size: 3.5rem;
    color: #c44569;
    margin-bottom: 15px;
}
.home-content .category-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4a2f38;
}
.home-content .subcat-list {
    list-style: none;
    margin: 15px 0;
    font-size: 1rem;
    color: #7a5a64;
}
.home-content .subcat-list li { padding: 3px 0; }
.home-content .shopnow-link {
    display: inline-block;
    margin-top: 15px;
    color: #c44569;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #ffb8c6;
}

/* 信任徽章 */
.home-content .trust-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: #ffeef2;
    border-radius: 80px;
    padding: 30px 40px;
    flex-wrap: wrap;
    margin: 50px 0;
}
.home-content .trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a2f38;
}
.home-content .trust-item i { font-size: 2.5rem; color: #c44569; }

/* 畅销产品 */
.home-content .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}
.home-content .product-card {
    background: white;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(196,69,105,0.08);
    transition: 0.2s;
    text-align: center;
}
.home-content .product-card:hover { box-shadow: 0 15px 30px rgba(196,69,105,0.2); }
.home-content .product-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #fadbe3;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #c44569;
    margin-bottom: 15px;
}
.home-content .product-name { font-weight: 600; font-size: 1.3rem; }
.home-content .product-price { color: #c44569; font-weight: 700; margin: 8px 0; }
.home-content .add-to-cart {
    background: #c44569;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
}
.home-content .add-to-cart:hover { background: #a02e4f; }

/* 品牌承诺 */
.home-content .promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin: 50px 0;
}
.home-content .promise-item {
    background: #ffeef2;
    border-radius: 60px;
    padding: 40px 20px;
}
.home-content .promise-item i { font-size: 3.5rem; color: #c44569; }
.home-content .promise-item h3 { font-size: 1.8rem; margin: 15px 0; }

/* 评价 */
.home-content .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}
.home-content .review-card {
    background: white;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(196,69,105,0.1);
}
.home-content .reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.home-content .reviewer i { font-size: 2.5rem; color: #c44569; }
.home-content .stars { color: #ffb800; margin: 10px 0; }

/* 邮件订阅 */
.home-content .newsletter {
    background: #ffe2eb;
    border-radius: 80px;
    padding: 50px;
    text-align: center;
    margin: 60px 0;
}
.home-content .newsletter h2 { font-family: 'Caveat', cursive; font-size: 3rem; color: #c44569; }
.home-content .newsletter p { font-size: 1.2rem; margin: 15px 0 25px; }
.home-content .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}
.home-content .newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 60px;
    font-size: 1rem;
    outline: none;
}
.home-content .newsletter-form button {
    background: #c44569;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 0 35px;
    font-weight: 700;
    cursor: pointer;
}

/* 响应式 */
@media (max-width: 1024px) {
    .home-content .category-grid,
    .home-content .products-grid,
    .home-content .review-grid,
    .home-content .social-grid { grid-template-columns: repeat(2, 1fr); }
    .home-content .promise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .home-content .trust-grid { flex-direction: column; align-items: center; }
    .home-content .category-grid,
    .home-content .products-grid,
    .home-content .review-grid,
    .home-content .social-grid { grid-template-columns: 1fr; }
    .home-content .carousel-item { height: 380px; }
    .home-content .carousel-content h2 { font-size: 2.2rem; }
    .home-content .newsletter-form { flex-direction: column; }
}
/* 结构化数据隐藏 */
.home-content .schema-hidden { display: none; }
/* DCsexy 顶部通知栏 */
.dc-top-bar {
    width: 100%;
    background: linear-gradient(90deg, #1a0b13, #2d1a24, #1a0b13);
    border-bottom: 1px solid rgba(255, 110, 140, 0.3);
    padding: 12px 20px;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.dc-top-bar .bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.dc-top-bar .coupon-code {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ff99bb;
    border-radius: 40px;
    padding: 4px 16px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffe0f0;
    box-shadow: 0 0 10px #ff99bb;
}

.dc-top-bar .shipping-highlight {
    background: rgba(255, 120, 160, 0.2);
    border-left: 2px solid #ff8095;
    border-right: 2px solid #ff8095;
    padding: 4px 12px;
    border-radius: 30px;
}

@media (max-width: 600px) {
    .dc-top-bar {
        font-size: 14px;
        padding: 8px 10px;
    }
}