/* Luxury Product Slider v2 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&display=swap");

.luxury-slider-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #000;
    padding: 100px 0;
    overflow: hidden;
}

/* 边缘渐变 */
.luxury-slider-section::before,
.luxury-slider-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}
.luxury-slider-section::before {
    left: 0;
    background: linear-gradient(90deg, #000 0%, transparent 100%);
}
.luxury-slider-section::after {
    right: 0;
    background: linear-gradient(-90deg, #000 0%, transparent 100%);
}

/* 滑动容器 */
.luxury-slider-track-wrapper {
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 30px 120px;
    scroll-behavior: smooth;
}
.luxury-slider-track-wrapper::-webkit-scrollbar {
    display: none;
}

.luxury-slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

/* ========== 高级卡片设计 ========== */
.luxury-card {
    flex-shrink: 0;
    width: 380px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(160deg, #111 0%, #0a0a0a 100%);
    border: 1px solid rgba(218, 165, 32, 0.08);
    box-shadow: 
        0 30px 60px -20px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.02) inset;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 悬浮光边效果 */
.luxury-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(218, 165, 32, 0.4) 50%,
        transparent 60%,
        transparent 100%
    );
    background-size: 300% 300%;
    background-position: 100% 100%;
    z-index: 0;
    opacity: 0;
    transition: all 0.6s ease;
}

.luxury-card:hover {
    transform: translateY(-16px);
    border-color: rgba(218, 165, 32, 0.25);
    box-shadow: 
        0 50px 80px -30px rgba(0, 0, 0, 0.9),
        0 0 100px -20px rgba(218, 165, 32, 0.15);
}

.luxury-card:hover::before {
    opacity: 1;
    background-position: 0% 0%;
}

.luxury-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 1;
}

/* ===== 图片区域 ===== */
.luxury-card-image {
    width: 100%;
    height: 400px;
    margin: 0;
    overflow: hidden;
    position: relative;
    background: #080808;
}

.luxury-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.95);
}

.luxury-card:hover .luxury-card-image img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* 光泽效果 */
.luxury-card-shine {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 40%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.03) 60%,
        transparent 100%
    );
    transform: rotate(25deg);
    transition: all 0.8s ease;
    pointer-events: none;
}

.luxury-card:hover .luxury-card-shine {
    left: 150%;
    top: -50%;
}

/* 分类标签 */
.luxury-card-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #daa520;
    font-size: 10px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(218, 165, 32, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ===== 内容区域 ===== */
.luxury-card-content {
    padding: 28px 28px 32px;
    background: linear-gradient(180deg, rgba(10,10,10,1) 0%, rgba(5,5,5,1) 100%);
    position: relative;
}

/* 金色分割线 */
.luxury-card-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #daa520, #ffd700);
    margin-bottom: 20px;
    transition: width 0.5s ease;
}

.luxury-card:hover .luxury-card-divider {
    width: 80px;
}

/* 标题 */
.luxury-card-title {
    font-family: "Noto Serif SC", serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.5;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.4s ease;
}

.luxury-card:hover .luxury-card-title {
    color: #ffd700;
}

/* 分类 */
.luxury-card-category {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 18px 0;
}

/* 价格 */
.luxury-card-price {
    font-family: "Noto Serif SC", serif;
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #c9a227 0%, #ffd700 40%, #c9a227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.luxury-card-price del {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 400;
    margin-right: 10px;
}

.luxury-card-price ins {
    text-decoration: none;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .luxury-slider-section {
        padding: 60px 0;
    }
    .luxury-slider-track-wrapper {
        padding: 20px 60px;
    }
    .luxury-slider-track {
        gap: 25px;
    }
    .luxury-card {
        width: 320px;
        border-radius: 16px;
    }
    .luxury-card-image {
        height: 340px;
    }
    .luxury-card-content {
        padding: 22px 22px 26px;
    }
    .luxury-slider-section::before,
    .luxury-slider-section::after {
        width: 100px;
    }
}
