body a{
    text-decoration: none;
}
.box1_0{
    width: 100%;
}

.bg-1{
    background: linear-gradient(135deg, #fff6e0, #ffe0e0, #fef3c7);
}

.bg-2{
    background: linear-gradient(180deg, var(--cream) 0%, #fff3dc 100%);
}

.bg-3{
    background: radial-gradient(circle at center, #c41e3d 0%, #8e132c 100%);
}

.box1_1{
    /*max-width: 1160px;*/
    margin: 0 auto;
}

:root {
    --red:#c41e3d;
    --gold:#f5d76e;
    --warmwhite:#fff7e8;
    --green:#0a6630;
    --cream:#fffaf3;
    --text-dark:#332;
    --wire:#444;
    --dark:#332;
    --xmas-red:#c41e3d;
    --xmas-gold:#f5d76e;
    --xmas-green:#0a6630;
    --x-red:#c41e3d;
    --x-gold:#f5d76e;
    --x-green:#0a6630;
    --x-cream:#fffaf3;
    --muted:#555;
}

/* ===== Hero Base ===== */
.xmas-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    place-items: center;
    font-family: Inter, system-ui, sans-serif;
    color: var(--warmwhite);
}

/* ===== Background ===== */
.xmas-sky {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.bg-photo {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(1.18) contrast(1.05) saturate(1.12);
    z-index: 0;
}
#snowCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ===== Text Content ===== */
.xmas-inner {
    position: relative;
    z-index: 2;
    width: min(1100px, 92vw);
    text-align: center;
    padding: clamp(16px, 2vw, 24px);
}
.xmas-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 5vw, 56px);
    background: linear-gradient(90deg, #ffe9b6 0%, #fff7e8 50%, #ffd27b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 8px 24px rgba(0,0,0,.3);
    margin-bottom: .6rem;
}
.xmas-sub {
    font-size: clamp(15px, 1.8vw, 19px);
    color: rgba(255, 240, 220, .95);
    text-shadow: 0 6px 18px rgba(0,0,0,.55);
    margin-bottom: 1.4rem;
}
.xmas-cta {
    border: 0;
    cursor: pointer;
    padding: .95rem 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    background: linear-gradient(135deg, var(--gold), var(--red));
    box-shadow: 0 10px 26px rgba(245,215,110,.35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.xmas-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 34px rgba(245,215,110,.45);
}

/* ===== Gift (Responsive Size) ===== */
.gift-stage {
    position: fixed;
    right: clamp(25px, 5vw, 60px);
    bottom: clamp(30px, 6vh, 80px);
    z-index: 5;
    text-align: center;
}
.gift-emoji {
    font-size: clamp(45px, 6vw, 65px); /* ← 自动响应尺寸 */
    filter: drop-shadow(0 0 8px rgba(245, 215, 110, .45));
    animation: wobble 2.4s ease-in-out infinite;
    transition: transform 0.4s ease, font-size 0.3s ease;
}
@keyframes wobble {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}
.gift-hint {
    margin-top: .4rem;
    font-size: 12px;
    padding: .35rem .7rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    backdrop-filter: blur(5px);
}

/* ===== Cards ===== */
.gift-card {
    width: 200px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    color: #111;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .38);
    border: 1px solid rgba(10, 102, 48, .14);
    opacity: 0;
    position: fixed;
    z-index: 6;
    transition: all .6s ease;
}
.gift-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}
.card-meta {
    text-align: center;
    padding: .85rem;
}
.card-meta h4 {
    color: var(--red);
    margin: 0 0 .3rem;
    font-size: 1rem;
    font-family: "Playfair Display", serif;
}
.card-meta p {
    font-size: .86rem;
    color: #444;
    margin-bottom: .6rem;
}
.card-action {
    border: 0;
    background: linear-gradient(135deg, var(--red), var(--green));
    color: #fff;
    padding: .4rem .9rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
}

/* ===== Close Button ===== */
.focus-close {
    position: fixed;
    right: clamp(40px, 18vw, 240px);
    bottom: clamp(60px, 10vh, 160px);
    z-index: 8;
    border-radius: 50px;
    padding: .6rem 1.2rem;
    border: 2px solid #d1af52;
    background: #c41e3d;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transform: scale(.9);
    transition: opacity .18s ease, transform .18s ease;
}
.focus-close.show {
    opacity: 1;
    transform: scale(1);
}
@media (max-width:640px){
    .focus-close {
        left:50%; right:auto; bottom:8vh;
        transform:translateX(-50%) scale(.9);
    }
    .focus-close.show {
        transform:translateX(-50%) scale(1);
    }
}

/* ===== Base Section ===== */
.xmas-categories {
    background: linear-gradient(180deg, var(--cream) 0%, #fff3dc 100%);
    padding: clamp(60px, 8vw, 120px) 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ===== Header ===== */
.cat-header {
    margin-bottom: 3rem;
}
.cat-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--red);
    text-shadow: 0 4px 14px rgba(245, 215, 110, .3);
    margin-bottom: 0.6rem;
}
.cat-sub {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--text-dark);
    opacity: 0.9;
}

/* ===== Grid Layout ===== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

/* ===== Card ===== */
.cat-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(245, 215, 110, .35);
}
.cat-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    filter: brightness(0.95) saturate(1.05);
    transition: filter .3s ease, transform .3s ease;
}
.cat-card:hover .cat-img {
    filter: brightness(1.1) saturate(1.15);
    transform: scale(1.05);
}

/* ===== Card Body ===== */
.cat-body {
    padding: 1.5rem;
}
.cat-body h3 {
    font-family: "Playfair Display", serif;
    color: var(--green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.cat-body p {
    color: var(--text-dark);
    font-size: .95rem;
    margin-bottom: 1.2rem;
    opacity: .85;
}
.cat-btn {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    color: #111;
    padding: 0.6rem 1.3rem;
    font-weight: 700;
    cursor: pointer;
    font-size: .9rem;
    box-shadow: 0 4px 16px rgba(245, 215, 110, .25);
    transition: transform .25s ease, box-shadow .25s ease;
}
.cat-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 24px rgba(245, 215, 110, .35);
}

/* ===== Browse More Card ===== */
.browse-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 40% 30%, #fffdf5 0%, #ffe9b6 60%, #fce3c0 100%);
    position: relative;
    overflow: hidden;
}
.browse-inner {
    padding: 2rem 1.5rem;
    text-align: center;
}
.browse-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulseGift 1.8s ease-in-out infinite;
}
@keyframes pulseGift {
    0%,100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(245,215,110,.5)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 20px rgba(245,215,110,.9)); }
}
.browse-inner h3 {
    color: var(--red);
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    margin-bottom: .6rem;
}
.browse-inner p {
    color: var(--text-dark);
    opacity: .9;
    font-size: .95rem;
    margin-bottom: 1rem;
}

/* ===== Responsive ===== */
@media (min-width:768px) and (max-width:1080px){
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 2rem;
    }
}
@media (max-width:600px){
    .cat-body p { font-size: .9rem; }
    .cat-img { height: 180px; }
    .browse-icon { font-size: 2.4rem; }
}

/* Section Base */
.xmas-featured {
    background: linear-gradient(180deg,#fff3dc 0%,#fffdf8 100%);
    padding: clamp(60px,8vw,120px) 2rem;
    text-align:center;
    position:relative;
    overflow:hidden;
}

/* Light Garland */
.light-string {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 36px;
    margin-bottom: 2.5rem;
}
.light-string::before {
    content:"";
    position:absolute;
    top:0;
    left:50%;
    width:80%;
    height:3px;
    background: var(--wire);
    border-radius:2px;
    transform: translateX(-50%) rotate(-1deg);
    box-shadow:0 1px 2px rgba(0,0,0,.3);
}
.bulb {
    position:relative;
    width:26px;
    height:36px;
    border-radius:50% 50% 48% 48% / 58% 58% 42% 42%;
    box-shadow: inset -2px -4px 6px rgba(0,0,0,.3);
    animation: flicker 3s infinite ease-in-out alternate;
    transform-origin: top center;
}
.bulb::before {
    content:"";
    position:absolute;
    top:-8px;
    left:50%;
    width:10px;
    height:6px;
    background:var(--wire);
    border-radius:2px;
    transform:translateX(-50%);
}
.bulb.red { background: radial-gradient(circle at 30% 20%, #ff7373, #d62828 70%); animation-delay: .2s; }
.bulb.gold { background: radial-gradient(circle at 30% 20%, #fff5c2, #ffd166 70%); animation-delay: .5s; }
.bulb.green { background: radial-gradient(circle at 30% 20%, #a3e4c2, #40916c 70%); animation-delay: .8s; }
@keyframes flicker {
    0%,100% { opacity: .75; transform: rotate(2deg) translateY(2px); filter: drop-shadow(0 0 8px rgba(255,255,255,.4)); }
    50% { opacity: 1; transform: rotate(-3deg) translateY(-2px); filter: drop-shadow(0 0 18px rgba(255,255,255,.9)); }
}

/* Header */
.feat-header { margin-bottom:3rem; }
.feat-title {
    font-family:"Playfair Display",serif;
    font-size:clamp(28px,4vw,44px);
    color:var(--red);
    text-shadow:0 4px 14px rgba(245,215,110,.3);
    margin-bottom:.6rem;
}
.feat-sub {
    font-size:clamp(15px,1.6vw,18px);
    color:var(--dark);
    opacity:.9;
}

/* Grid Base */
.feat-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:2rem;
    transition:all .3s ease;
}

/* Product Card */
.feat-item {
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:transform .35s ease, box-shadow .35s ease;
}
.feat-item:hover {
    transform:translateY(-6px);
    box-shadow:0 16px 36px rgba(245,215,110,.35);
}
.feat-img {
    height:220px;
    background-size:cover;
    background-position:center;
    filter:brightness(0.96) saturate(1.08);
    transition:filter .35s ease,transform .35s ease;
}
.feat-item:hover .feat-img {
    filter:brightness(1.1) saturate(1.18);
    transform:scale(1.05);
}
.feat-body { padding:1.5rem; }
.feat-body h3 { color:var(--green); font-family:"Playfair Display",serif; }
.feat-body p { color:var(--dark); opacity:.85; margin:.6rem 0 1rem; font-size:.95rem; }
.feat-price { color:var(--red); font-weight:700; margin-bottom:1rem; }
.feat-btn {
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#f5d76e,#c41e3d);
    color:#111;
    padding:.6rem 1.3rem;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 4px 16px rgba(245,215,110,.25);
    transition:transform .25s ease, box-shadow .25s ease;
}
.feat-btn:hover {
    transform:translateY(-2px) scale(1.05);
    box-shadow:0 6px 24px rgba(245,215,110,.35);
}

/* ✅ Tablet 2×2 Grid */
@media (min-width:768px) and (max-width:1080px){
    .feat-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:auto;
        gap:2rem 2rem;
    }
    .feat-item{
        max-width:100%;
    }
}

/* ✅ Mobile */
@media (max-width:600px){
    .bulb { width:18px; height:26px; }
    .light-string { gap:20px; }
    .feat-img { height:180px; }
    .feat-item { margin: 0 auto; max-width: 340px; }
}

/* ✅ Desktop */
@media (min-width:1081px){
    .feat-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* ===== Section ===== */
.xmas-countdown {
    background: radial-gradient(circle at center, #c41e3d 0%, #8e132c 100%);
    color: var(--xmas-gold);
    text-align: center;
    padding: clamp(50px,8vw,90px) 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(196,30,61,.3) inset, 0 -6px 18px rgba(0,0,0,.2);
}
.xmas-countdown::before {
    content:"";
    position:absolute;
    inset:0;
    background: url('https://www.transparenttextures.com/patterns/snow.png');
    opacity:0.08;
}

/* ===== Inner ===== */
.countdown-inner {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

/* ===== Text ===== */
.countdown-text {
    font-family: "Playfair Display", serif;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.5;
    color: var(--xmas-gold);
    text-shadow: 0 0 12px rgba(255,255,255,.3);
}
.countdown-text strong {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,.4);
}
.countdown-text span {
    color: #fff6b5;
}

/* ===== Live Clock ===== */
.countdown-clock {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .8rem;
    font-family: "Inter", sans-serif;
}
.time-box {
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    padding: .6rem 1rem;
    color: #fff;
    min-width: 70px;
    box-shadow: inset 0 0 10px rgba(255,255,255,.15), 0 0 20px rgba(245,215,110,.2);
    animation: glowPulse 2.4s ease-in-out infinite;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.time-box span {
    display:block;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2;
}
.time-box small {
    display:block;
    font-size: .7rem;
    letter-spacing: 1px;
    opacity:.85;
    color: var(--xmas-gold);
    text-transform: uppercase;
}
.sep {
    font-size: 2rem;
    color: var(--xmas-gold);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(255,255,255,.3);
    margin-top:-10px;
}
@keyframes glowPulse {
    0%,100% { box-shadow: inset 0 0 8px rgba(255,255,255,.1), 0 0 10px rgba(245,215,110,.2); }
    50% { box-shadow: inset 0 0 10px rgba(255,255,255,.25), 0 0 20px rgba(245,215,110,.45); }
}

/* ===== Button ===== */
.countdown-btn {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg,var(--xmas-gold),#fff6b5,var(--xmas-gold));
    color: #b41b2f;
    font-weight: 700;
    font-size: 1rem;
    padding: .9rem 1.8rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,.25), 0 0 20px rgba(245,215,110,.35);
    transition: all .25s ease;
}
.countdown-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(0,0,0,.35), 0 0 26px rgba(245,215,110,.5);
}

/* ===== Responsive Adjustments ===== */
@media (max-width:768px){
    .countdown-inner{
        gap:1.2rem;
    }
    .countdown-clock{
        gap:.5rem;
    }
    .time-box{
        min-width:60px;
        padding:.5rem .7rem;
    }
    .time-box span{
        font-size:1.4rem;
    }
    .sep{font-size:1.4rem;margin-top:-5px;}
    .countdown-btn{
        margin-top:.5rem;
        padding:.8rem 1.5rem;
        font-size:.95rem;
    }
}
@media (max-width:480px){
    .countdown-text{
        font-size:clamp(16px,4vw,20px);
        line-height:1.4;
    }
    .countdown-clock{
        flex-wrap:wrap;
        row-gap:.6rem;
    }
    .time-box{
        min-width:52px;
        padding:.4rem .5rem;
    }
    .time-box span{
        font-size:1.2rem;
    }
    .countdown-btn{
        width:90%;
        max-width:320px;
        font-size:.9rem;
    }
}

.xmas-reviews-section{background:linear-gradient(180deg,#fffaf3 0%,#fff3dc 100%);position:relative;overflow:hidden;padding:80px 2rem;text-align:center;color:#222;}
#xmasSnow{position:absolute;inset:0;z-index:1;pointer-events:none;}
.xmas-reviews-container{max-width:1240px;margin:0 auto;position:relative;z-index:2;}
.xmas-reviews-title{font-family:"Playfair Display",serif;font-size:clamp(1.9rem,4vw,2.6rem);color:var(--x-red);text-shadow:0 4px 14px rgba(245,215,110,.35);margin-bottom:.7rem;}
.xmas-reviews-subtitle{font-size:clamp(1rem,2vw,1.2rem);color:var(--muted);opacity:.95;margin-bottom:3rem;}
.xmas-reviews-swiper{overflow:visible!important;padding-top:4rem;}
.xrev-slide{display:flex;justify-content:center;}
.xrev-card{background:#fff;border-radius:18px;box-shadow:0 12px 28px rgba(0,0,0,.1);padding:3.4rem 2rem 2.4rem;max-width:380px;width:100%;text-align:left;position:relative;transition:.3s;}
.xrev-card:hover{transform:translateY(-6px);box-shadow:0 18px 38px rgba(196,30,61,.25);}
.xrev-quote{position:absolute;top:-36px;left:2rem;width:58px;height:58px;border-radius:50%;display:grid;place-items:center;font-size:2rem;font-weight:800;color:#fff;background:linear-gradient(135deg,var(--x-gold),var(--x-red));box-shadow:0 8px 20px rgba(196,30,61,.35);}
.xrev-stars{display:flex;gap:.35rem;margin:1rem 0 1.2rem;}
.star{width:22px;height:22px;fill:#ffd700;filter:drop-shadow(0 0 6px rgba(255,215,110,.4));}
.xrev-text{font-size:1.05rem;line-height:1.7;color:#333;margin-bottom:1.8rem;font-style:italic;}
.xrev-user{display:flex;align-items:center;gap:1rem;}
.xrev-avatar{width:60px;height:60px;border-radius:50%;object-fit:cover;border:3px solid var(--x-red);box-shadow:0 0 10px rgba(245,215,110,.4);}
.xrev-user h4{margin:0;color:var(--x-green);font-weight:700;}
.xrev-user p{margin:.2rem 0 0;font-size:.9rem;color:#666;}
.swiper-button-prev,.swiper-button-next{width:50px;height:50px;background:#fff;border-radius:50%;color:var(--x-red);box-shadow:0 6px 16px rgba(0,0,0,.15);transition:.25s;}
.swiper-button-prev:after,.swiper-button-next:after{font-size:1.4rem;font-weight:800;}
.swiper-button-prev:hover,.swiper-button-next:hover{background:var(--x-red);color:#fff;transform:scale(1.1);}
.swiper-pagination-bullet{background:#ccc;opacity:1;width:10px;height:10px;}
.swiper-pagination-bullet-active{background:var(--x-red);transform:scale(1.3);}