:root {
    --primary: #0f1f3d;
    --primary-dark: #080f1e;
    --secondary: #1a3260;
    --accent: #00c6b8;
    --accent-light: #00e5d4;
    --accent-dark: #2d7a78;
    --coral: #ff5f5f;
    --orange: #ffaa00;
    --purple: #9b5de5;
    --gold: #d4af37;
    --gold-light: #f0d060;
    --light: #f0f8ff;
    --white: #ffffff;
    --glass: rgba(255,255,255,0.12);
    --glass-border: rgba(255,255,255,0.25);
    --glass-dark: rgba(15,31,61,0.6);
    --text-dark: #0f1f3d;
    --text-muted: #5a7a9a;
    --shine: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.2) 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
    background: #e8f4f8;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5 { font-family: "Cormorant Garamond", serif; }

/* ── GLOSSY BACKGROUND ─────────────────────────────────────────── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0,198,184,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(155,93,229,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 10%, rgba(212,175,55,0.1) 0%, transparent 40%),
        linear-gradient(160deg, #dff3f8 0%, #e8eeff 40%, #f5e8ff 70%, #fff5e0 100%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 60%, rgba(0,198,184,0.08) 0%, transparent 35%),
        radial-gradient(circle at 90% 30%, rgba(255,95,95,0.07) 0%, transparent 35%);
    z-index: -1;
    pointer-events: none;
}

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
    background: transparent;
    padding: 18px 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 30px rgba(15,31,61,0.08);
    padding: 12px 0;
}

.navbar-brand img { height: 48px; }

.nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link:hover,
.nav-link.active { color: var(--accent) !important; }

.cart-nav-btn {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 15px rgba(15,31,61,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.1rem;
    margin-left: 8px;
}

.cart-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,198,184,0.3);
    background: rgba(0,198,184,0.1);
    color: var(--accent);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, var(--coral), #ff8800);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    font-family: "DM Sans", sans-serif;
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white) !important;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,198,184,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-nav:hover::before { left: 100%; }
.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,198,184,0.4);
    color: white !important;
}

/* ── HERO ────────────────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,198,184,0.25), transparent); top: -10%; right: -5%; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,0.2), transparent); bottom: -10%; left: -5%; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(155,93,229,0.15), transparent); top: 40%; left: 30%; }

.float-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.fs-1 { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(0,198,184,0.6), rgba(0,229,212,0.3)); top: 18%; left: 6%; animation-delay: 0s; }
.fs-2 { width: 50px; height: 50px; background: linear-gradient(135deg, rgba(212,175,55,0.7), rgba(255,170,0,0.4)); top: 30%; right: 8%; animation-delay: 2s; border-radius: 50%; }
.fs-3 { width: 40px; height: 40px; background: linear-gradient(135deg, rgba(155,93,229,0.6), rgba(236,72,153,0.4)); bottom: 25%; left: 12%; animation-delay: 4s; border-radius: 50%; }

@keyframes morphFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-18px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(10px) rotate(240deg) scale(0.9); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(15px);
    padding: 10px 22px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 20px rgba(0,198,184,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.hero-badge i { margin-right: 8px; color: var(--gold); }

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 60%, var(--coral) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 35px; max-width: 500px; line-height: 1.8; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 15px; margin-bottom: 45px; }

.btn-glossy {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: white;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,198,184,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-glossy::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 50px 50px 0 0;
}

.btn-glossy:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,198,184,0.5); color: white; }

.btn-glossy-outline {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: 1.5px solid rgba(15,31,61,0.2);
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(15,31,61,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

.btn-glossy-outline:hover {
    background: rgba(15,31,61,0.08);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15,31,61,0.15);
}

.hero-stats { display: flex; gap: 20px; flex-wrap: wrap; }

.hero-stat {
    padding: 18px 24px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(15,31,61,0.08), inset 0 1px 0 rgba(255,255,255,1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-stat::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
}

.hero-stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ── HERO VISUAL ─────────────────────────────────────────────────── */
.hero-visual { position: relative; z-index: 2; }

.hero-main-visual {
    background: linear-gradient(145deg, rgba(15,31,61,0.85) 0%, rgba(26,50,96,0.9) 100%);
    backdrop-filter: blur(30px);
    border-radius: 28px;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 30px 70px rgba(15,31,61,0.35), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 0 80px rgba(0,198,184,0.08);
    position: relative;
    overflow: hidden;
}

.hero-main-visual::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
    border-radius: 28px 28px 0 0;
    pointer-events: none;
}

.hero-main-visual::after {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(0,198,184,0.2), transparent);
    border-radius: 50%;
}

.amenities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; position: relative; z-index: 1; }

.amenity-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 20px 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.amenity-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 100%);
    border-radius: 16px 16px 0 0;
}

.amenity-item:hover { transform: translateY(-4px); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.35); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.amenity-item:nth-child(1) { border-top: 2px solid var(--coral); }
.amenity-item:nth-child(2) { border-top: 2px solid var(--accent); }
.amenity-item:nth-child(3) { border-top: 2px solid var(--gold); }
.amenity-item:nth-child(4) { border-top: 2px solid var(--purple); }
.amenity-item:nth-child(5) { border-top: 2px solid #3b82f6; }
.amenity-item:nth-child(6) { border-top: 2px solid #10b981; }

.amenity-item i { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.amenity-item:nth-child(1) i { color: var(--coral); }
.amenity-item:nth-child(2) i { color: var(--accent-light); }
.amenity-item:nth-child(3) i { color: var(--gold); }
.amenity-item:nth-child(4) i { color: var(--purple); }
.amenity-item:nth-child(5) i { color: #60a5fa; }
.amenity-item:nth-child(6) i { color: #34d399; }
.amenity-item span { font-size: 0.72rem; color: rgba(255,255,255,0.85); font-weight: 500; position: relative; z-index: 1; }

.hero-visual-badge {
    position: absolute;
    top: -16px; right: -16px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--primary-dark);
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(212,175,55,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
    z-index: 2;
}

.hero-visual-badge span:first-child { font-size: 1.4rem; line-height: 1; }
.hero-visual-badge span:last-child { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 20px; }

.hero-feature-card {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(15,31,61,0.06), inset 0 1px 0 rgba(255,255,255,1);
    position: relative;
    overflow: hidden;
}

.hero-feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
    border-radius: 18px 18px 0 0;
}

.hero-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(15,31,61,0.12); }
.hero-feature-card:nth-child(1) { border-left: 3px solid var(--accent); }
.hero-feature-card:nth-child(2) { border-left: 3px solid var(--coral); }
.hero-feature-card:nth-child(3) { border-left: 3px solid var(--purple); }
.hero-feature-card:nth-child(4) { border-left: 3px solid var(--gold); }

.hero-feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.hero-feature-icon::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, transparent 100%);
}

.hero-feature-card:nth-child(1) .hero-feature-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); box-shadow: 0 4px 15px rgba(0,198,184,0.4); }
.hero-feature-card:nth-child(2) .hero-feature-icon { background: linear-gradient(135deg, var(--coral), #ff8e8e); box-shadow: 0 4px 15px rgba(255,95,95,0.4); }
.hero-feature-card:nth-child(3) .hero-feature-icon { background: linear-gradient(135deg, var(--purple), #c084fc); box-shadow: 0 4px 15px rgba(155,93,229,0.4); }
.hero-feature-card:nth-child(4) .hero-feature-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: 0 4px 15px rgba(212,175,55,0.4); }
.hero-feature-icon i { color: white; font-size: 1.1rem; position: relative; z-index: 1; }

.hero-feature-text h5 { font-family: "DM Sans", sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--primary); margin-bottom: 1px; }
.hero-feature-text p { font-size: 0.75rem; color: var(--text-muted); margin: 0; }

/* ── SECTIONS COMMON ─────────────────────────────────────────────── */
.section-badge {
    display: inline-block;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 8px 22px;
    border-radius: 50px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(0,198,184,0.25);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,198,184,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
}

.section-title { font-size: 2.8rem; color: var(--primary); margin-bottom: 18px; letter-spacing: -0.02em; }
.section-title-gradient { background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-text { font-size: 1.02rem; color: var(--text-muted); line-height: 1.8; }

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-section { padding: 100px 0; position: relative; }

.about-image-wrapper { position: relative; }

.about-image-wrapper img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(15,31,61,0.15);
    border: 1px solid rgba(255,255,255,0.6);
}

.about-glass-frame {
    position: absolute;
    inset: -6px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.5);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: -18px; right: -18px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    color: white;
    padding: 22px 28px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,198,184,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.3);
}

.about-badge::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    border-radius: 22px 22px 0 0;
}

.about-badge h3 { font-size: 2.4rem; margin: 0; line-height: 1; color: white; position: relative; z-index: 1; }
.about-badge span { font-size: 0.88rem; position: relative; z-index: 1; }

.about-feature { display: flex; align-items: flex-start; margin-bottom: 28px; }

.about-feature-icon {
    width: 58px; height: 58px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.about-feature-icon::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, transparent 100%);
}

.about-feature:nth-child(1) .about-feature-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.about-feature:nth-child(2) .about-feature-icon { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.about-feature:nth-child(3) .about-feature-icon { background: linear-gradient(135deg, var(--purple), #c084fc); }
.about-feature-icon i { font-size: 1.3rem; color: white; position: relative; z-index: 1; }
.about-feature h5 { font-family: "DM Sans", sans-serif; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.about-feature p { color: var(--text-muted); margin: 0; font-size: 0.93rem; }

/* ── PRODUCTS ────────────────────────────────────────────────────── */
.products-section { padding: 100px 0; position: relative; }

.swiper-products { padding: 20px 10px 60px; }

.product-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(15,31,61,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
    height: 100%;
    position: relative;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover { transform: translateY(-10px); box-shadow: 0 25px 60px rgba(15,31,61,0.18), inset 0 1px 0 rgba(255,255,255,1); }

.product-image { position: relative; height: 195px; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }

.product-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,31,61,0.65) 100%);
    opacity: 0; transition: all 0.4s ease;
}
.product-card:hover .product-image-overlay { opacity: 1; }

.product-image::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.product-badge {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    z-index: 3;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.badge-popular { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.badge-new { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.badge-premium { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--primary-dark) !important; }
.badge-sale { background: linear-gradient(135deg, var(--purple), #c084fc); }

.product-content { padding: 22px 22px 24px; position: relative; z-index: 1; }
.product-card h4 { font-family: "DM Sans", sans-serif; font-weight: 700; color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }
.product-card p { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 18px; line-height: 1.55; }

.product-actions { display: flex; gap: 10px; }

.btn-add-cart {
    flex: 1;
    background: rgba(0,198,184,0.12);
    color: var(--accent);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(0,198,184,0.3);
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    backdrop-filter: blur(10px);
}

.btn-add-cart:hover { background: var(--accent); color: white; border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,198,184,0.35); }

.btn-buy-now {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15,31,61,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-buy-now::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
}

.btn-buy-now:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(15,31,61,0.4); color: white; }

.swiper-pagination-bullet { width: 10px; height: 10px; background: var(--primary); opacity: 0.25; }
.swiper-pagination-bullet-active { background: linear-gradient(135deg, var(--accent), var(--gold)); opacity: 1; width: 28px; border-radius: 5px; }

.swiper-button-next, .swiper-button-prev {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(15,31,61,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.8);
}

.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; font-weight: 800; }
.swiper-button-next:hover, .swiper-button-prev:hover { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: white; border-color: var(--accent); }

/* ── WHY US ──────────────────────────────────────────────────────── */
.why-section { padding: 100px 0; position: relative; overflow: hidden; }

.why-section-bg {
    position: absolute; inset: 0;
    background: linear-gradient(145deg, #0f1f3d 0%, #1a3260 50%, #0a1830 100%);
    z-index: -1;
}

.why-section-bg::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0,198,184,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.12) 0%, transparent 40%);
}

.why-section .section-badge { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: var(--accent-light); }
.why-section .section-title { color: white; }
.why-section .section-text { color: rgba(255,255,255,0.75); }

.why-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 38px 28px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 24px 24px 0 0;
}

.why-card:nth-child(1)::before { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.why-card:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), var(--orange)); }
.why-card:nth-child(3)::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.why-card:nth-child(4)::before { background: linear-gradient(90deg, var(--purple), #c084fc); }
.why-card:nth-child(5)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.why-card:nth-child(6)::before { background: linear-gradient(90deg, #3b82f6, var(--accent)); }

.why-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

.why-icon {
    width: 78px; height: 78px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.why-icon::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.why-card:nth-child(1) .why-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.why-card:nth-child(2) .why-icon { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, var(--purple), #c084fc); }
.why-card:nth-child(5) .why-icon { background: linear-gradient(135deg, #10b981, #34d399); }
.why-card:nth-child(6) .why-icon { background: linear-gradient(135deg, #3b82f6, var(--accent)); }
.why-icon i { font-size: 1.9rem; color: white; position: relative; z-index: 1; }

.why-card h4 { color: white; margin-bottom: 12px; font-size: 1.25rem; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.7; }

/* ── CTA ─────────────────────────────────────────────────────────── */
.cta-section { padding: 80px 0; }

.cta-card {
    background: linear-gradient(135deg, var(--accent) 0%, #00b4a8 50%, var(--gold) 130%);
    border-radius: 28px;
    padding: 70px 55px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 30px 70px rgba(0,198,184,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
}

.cta-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    border-radius: 28px 28px 0 0;
    pointer-events: none;
}

.cta-card h2 { color: white; font-size: 2.4rem; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-card p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 0; position: relative; z-index: 1; }

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-section { padding: 100px 0; }

.contact-info-card {
    background: linear-gradient(145deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 26px;
    padding: 48px 38px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(15,31,61,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, transparent 100%);
    border-radius: 26px 26px 0 0;
}

.contact-info-card h3 { color: white; margin-bottom: 30px; position: relative; z-index: 1; }

.contact-item { display: flex; align-items: flex-start; margin-bottom: 28px; position: relative; z-index: 1; }

.contact-item-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 18px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-item-icon::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
}

.contact-item:nth-child(1) .contact-item-icon { background: linear-gradient(135deg, var(--coral), var(--orange)); }
.contact-item:nth-child(2) .contact-item-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.contact-item:nth-child(3) .contact-item-icon { background: linear-gradient(135deg, var(--purple), #c084fc); }
.contact-item:nth-child(4) .contact-item-icon { background: linear-gradient(135deg, #3b82f6, var(--accent)); }
.contact-item-icon i { font-size: 1.1rem; color: white; position: relative; z-index: 1; }
.contact-item h5 { color: var(--accent-light); font-family: "DM Sans", sans-serif; font-weight: 600; margin-bottom: 4px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-item p { color: rgba(255,255,255,0.88); margin: 0; font-size: 0.93rem; }

.social-links { margin-top: 36px; position: relative; z-index: 1; }

.social-links a {
    width: 44px; height: 44px;
    border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%); }
.social-links a:nth-child(1) { background: linear-gradient(135deg, #1877f2, #42a5f5); box-shadow: 0 4px 15px rgba(24,119,242,0.4); }
.social-links a:nth-child(2) { background: linear-gradient(135deg, #e4405f, #f77737); box-shadow: 0 4px 15px rgba(228,64,95,0.4); }
.social-links a:nth-child(3) { background: linear-gradient(135deg, #0077b5, #00a0dc); box-shadow: 0 4px 15px rgba(0,119,181,0.4); }
.social-links a:nth-child(4) { background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
.social-links a:hover { transform: translateY(-3px); }

.contact-form {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 26px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(15,31,61,0.08), inset 0 1px 0 rgba(255,255,255,1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 35%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
    border-radius: 26px 26px 0 0;
    pointer-events: none;
}

.contact-form h3 { color: var(--primary); margin-bottom: 28px; position: relative; z-index: 1; }

.form-control {
    background: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(15,31,61,0.1);
    border-radius: 13px;
    padding: 13px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-family: "DM Sans", sans-serif;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.form-control:focus { background: white; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,198,184,0.12); }
.form-label { font-weight: 600; color: var(--primary); margin-bottom: 7px; font-size: 0.88rem; letter-spacing: 0.02em; position: relative; z-index: 1; }

.btn-submit {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 15px 40px;
    border-radius: 13px;
    font-weight: 700;
    border: none;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    width: 100%;
    font-family: "DM Sans", sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,198,184,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
    z-index: 1;
    cursor: pointer;
}

.btn-submit::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
}

.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,198,184,0.45); color: white; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
    background: linear-gradient(145deg, #0a1228 0%, #0f1f3d 100%);
    padding: 75px 0 28px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--coral), var(--purple), var(--accent));
}

.footer-brand img { height: 56px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-text { color: rgba(255,255,255,0.65); line-height: 1.8; font-size: 0.93rem; }
.footer-title { color: white; font-family: "DM Sans", sans-serif; font-weight: 700; margin-bottom: 22px; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; color: #FFF; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; transition: all 0.3s ease; font-size: 0.93rem; }
.footer-links a:hover { color: var(--accent-light); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; margin-top: 50px; }
.footer-bottom p { color: rgba(255,255,255,0.5); margin: 0; font-size: 0.88rem; }

/* ── CART SIDEBAR ────────────────────────────────────────────────── */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(15,31,61,0.4);
    backdrop-filter: blur(6px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-sidebar {
    position: fixed;
    top: 0; right: 0;
    width: 420px;
    height: 100vh;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open { transform: translateX(0); }

.cart-inner {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-left: 1px solid rgba(255,255,255,0.7);
    box-shadow: -20px 0 60px rgba(15,31,61,0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cart-inner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 30%;
    background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
    pointer-events: none;
}

.cart-header {
    padding: 28px 28px 22px;
    border-bottom: 1px solid rgba(15,31,61,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.cart-title { display: flex; align-items: center; gap: 12px; }
.cart-title h3 { font-family: "DM Sans", sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--primary); margin: 0; }

.cart-count-pill {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    width: 26px; height: 26px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 10px rgba(0,198,184,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
    font-family: "DM Sans", sans-serif;
}

.cart-close {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: rgba(15,31,61,0.06);
    border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1rem;
}

.cart-close:hover { background: rgba(255,95,95,0.12); color: var(--coral); transform: rotate(90deg); }

.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; position: relative; z-index: 1; }
.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: rgba(15,31,61,0.04); border-radius: 4px; }
.cart-items::-webkit-scrollbar-thumb { background: rgba(0,198,184,0.4); border-radius: 4px; }

.cart-empty { text-align: center; padding: 60px 20px; display: none; }
.cart-empty.show { display: block; }

.cart-empty-icon {
    width: 90px; height: 90px;
    background: rgba(0,198,184,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    border: 2px dashed rgba(0,198,184,0.3);
}

.cart-empty-icon i { font-size: 2.2rem; color: var(--accent); opacity: 0.6; }
.cart-empty h5 { font-family: "DM Sans", sans-serif; font-size: 1.05rem; color: var(--primary); margin-bottom: 8px; font-weight: 700; }
.cart-empty p { font-size: 0.88rem; color: var(--text-muted); }

.cart-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(15,31,61,0.07);
    animation: slideInCart 0.35s ease;
}

@keyframes slideInCart {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
    width: 72px; height: 72px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 12px rgba(15,31,61,0.1);
}

.cart-item-details { flex: 1; }
.cart-item-name { font-family: "DM Sans", sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.cart-item-variant { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }

.qty-btn {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(0,198,184,0.1);
    border: 1px solid rgba(0,198,184,0.25);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    font-family: "DM Sans", sans-serif;
}

.qty-btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.qty-display { font-size: 0.9rem; font-weight: 700; color: var(--primary); min-width: 20px; text-align: center; font-family: "DM Sans", sans-serif; }

.cart-item-remove {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(255,95,95,0.08);
    border: 1px solid rgba(255,95,95,0.2);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--coral);
    font-size: 0.75rem;
    margin-left: auto;
}

.cart-item-remove:hover { background: var(--coral); color: white; }

.cart-footer {
    padding: 22px 24px 28px;
    border-top: 1px solid rgba(15,31,61,0.08);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    background: rgba(255,255,255,0.5);
}

.cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cart-subtotal span { font-size: 0.88rem; color: var(--text-muted); }
.cart-subtotal strong { font-family: "DM Sans", sans-serif; font-size: 0.88rem; color: var(--primary); }

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(15,31,61,0.08);
    margin-bottom: 16px;
}

.cart-total span { font-family: "DM Sans", sans-serif; font-weight: 700; color: var(--primary); font-size: 1rem; }
.cart-total strong { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; background: linear-gradient(135deg, var(--accent), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 15px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15,31,61,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    margin-bottom: 10px;
    text-align: center;
    text-decoration: none;
}

.btn-checkout::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%); }
.btn-checkout:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(15,31,61,0.4); color: white; }

.btn-continue {
    display: block;
    width: 100%;
    padding: 13px;
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid rgba(15,31,61,0.12);
    border-radius: 15px;
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-continue:hover { background: rgba(15,31,61,0.04); color: var(--primary); border-color: rgba(15,31,61,0.2); }

/* ── TOAST ───────────────────────────────────────────────────────── */
.toast-container-custom {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.toast-notif {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,198,184,0.3);
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 10px 40px rgba(15,31,61,0.15), inset 0 1px 0 rgba(255,255,255,1);
    animation: toastIn 0.4s ease, toastOut 0.4s ease 2s forwards;
    white-space: nowrap;
}

.toast-notif i { color: var(--accent); font-size: 1rem; }

@keyframes toastIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(10px); } }

/* ── SCROLL TOP ──────────────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.85);
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(15,31,61,0.12), inset 0 1px 0 rgba(255,255,255,1);
}

.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: white; border-color: var(--accent); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-title { font-size: 2.8rem; }
    .hero-visual { margin-top: 50px; }
    .hero-stats { justify-content: center; }
    .swiper-button-next, .swiper-button-prev { display: none; }
    .float-shape { display: none; }
}

@media (max-width: 767px) {
    .hero-section { padding-top: 110px; }
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 2rem; }
    .hero-stats { gap: 12px; flex-wrap: wrap; }
    .hero-features { grid-template-columns: 1fr; max-width: 360px; margin: 20px auto 0; }
    .amenities-grid { grid-template-columns: repeat(2,1fr); }
    .cta-card { padding: 45px 28px; text-align: center; }
    .cta-card h2 { font-size: 1.8rem; }
    .cart-sidebar { width: 100%; }
    .contact-form { padding: 36px 24px; }
    .contact-info-card { padding: 36px 24px; }
}

/* ── CART QTY INPUT ──────────────────────────────────────────── */
.cart-qty-wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(0,198,184,0.25);
    border-radius: 10px;
    overflow: hidden;
    height: 32px;
}

.cart-qty-wrap .qty-btn {
    width: 28px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    font-family: "DM Sans", sans-serif;
    flex-shrink: 0;
    padding: 0;
}

.cart-qty-wrap .qty-btn:hover {
    background: rgba(0,198,184,0.12);
}

.cart-qty-input {
    width: 48px;
    height: 32px;
    border: none;
    border-left: 1px solid rgba(0,198,184,0.2);
    border-right: 1px solid rgba(0,198,184,0.2);
    background: transparent;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    font-family: "DM Sans", sans-serif;
    padding: 0;
    transition: border-color 0.2s, color 0.2s;
    -moz-appearance: textfield;
}

.cart-qty-input::-webkit-outer-spin-button,
.cart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-qty-input:focus {
    outline: none;
    background: rgba(0,198,184,0.06);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.cart-item-line-total {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    font-family: "DM Sans", sans-serif;
    white-space: nowrap;
    margin-left: 2px;
}
