        h2{
            font-size: 2rem;
        }

        /* Dark Mode Background */
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 50%, #1a1a2e 100%) !important;
            background-attachment: fixed;
            background-repeat: no-repeat;
            min-height: 100vh;
            position: relative;
            color: #e5e7eb;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }

        .app-container {
            position: relative;
            z-index: 1;
        }
        /* Modern Luxury Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes floatingAnimation {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
            }
            50% {
                box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
            }
        }

        @keyframes smoothSlideRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: scale(1);
            }
        }

        .badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: #fff;
            font-size: 10px;
            padding: 2px 2px;
            border-radius: 10px;
            min-width: 18px;
            text-align: center;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
        }

        /* Promo Modal Styles */
        .promo-modal-overlay {
            position: fixed;
            /* top: 0;
            left: 0;
            right: 0;
            bottom: 0; */
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: fadeInScale 0.4s ease-out;
        }

        .promo-modal-overlay.active {
            display: flex;
        }

        .promo-modal-content {
            background: linear-gradient(135deg, #1f2937 0%, #1a2644 100%);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 28px;
            padding: 0;
            box-sizing: border-box;
            max-width: 360px;
            width: min(92vw, 360px);
            max-height: calc(100vh - 100px);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 10px 30px rgba(99, 102, 241, 0.2);
            animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .promo-modal-close-btn {
            position: absolute;
            top: 18px;
            right: 18px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
            transition: all 0.25s ease;
        }

        .promo-modal-close-btn:hover {
            transform: scale(1.05);
            background: rgba(99, 102, 241, 0.3);
        }

        .promo-modal-header {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            padding: 26px 18px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .promo-modal-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: floatingAnimation 6s ease-in-out infinite;
        }

        .promo-modal-header::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -50%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: floatingAnimation 8s ease-in-out infinite reverse;
        }

        .promo-icon-large {
            font-size: 64px;
            color: white;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
            animation: floatingAnimation 3s ease-in-out infinite;
        }

        .promo-modal-header h2 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin: 0 0 8px 0;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
        }

        .promo-modal-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            margin: 0;
            position: relative;
            z-index: 1;
            font-weight: 500;
        }

        .promo-modal-body {
            padding: 20px 18px 20px;
        }

        .promo-description {
            text-align: center;
            margin-bottom: 16px;
        }

        .promo-description h3 {
            font-size: 15px;
            color: #f1f5f9;
            margin: 0 0 6px 0;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .promo-description p {
            font-size: 12px;
            color: #cbd5e1;
            margin: 0;
            line-height: 1.5;
        }

        .promo-discount-box {
            background: linear-gradient(135deg, #fef3c7 0%, #fef08a 100%);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 18px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
        }

        .promo-discount-value {
            font-size: 34px;
            font-weight: 800;
            color: #f59e0b;
            margin: 0;
            line-height: 1;
            letter-spacing: -0.8px;
        }

        .promo-discount-text {
            font-size: 12px;
            color: #92400e;
            margin: 6px 0 0 0;
            font-weight: 600;
        }

        .promo-terms {
            display: none;
        }

        .promo-code-box {
            background: rgba(99, 102, 241, 0.1);
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 12px;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .promo-code-input {
            flex: 1;
            border: none;
            background: transparent;
            font-size: 13px;
            font-weight: 700;
            color: #a5b4fc;
            font-family: 'Courier New', monospace;
            letter-spacing: 2px;
            outline: none;
        }

        .promo-copy-btn {
            background: #6366f1;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

        .promo-copy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
        }

        .promo-modal-footer {
            padding: 0 18px 18px;
            display: flex;
            gap: 12px;
        }

        .promo-skip-btn {
            background: rgba(99, 102, 241, 0.1);
            color: #818cf8;
            border: 1px solid rgba(99, 102, 241, 0.3);
            padding: 14px 20px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
        }

        .promo-skip-btn:hover {
            background: rgba(99, 102, 241, 0.15);
            transform: translateY(-2px);
        }

        .promo-claim-btn {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
            flex: 1;
        }

        .promo-claim-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45);
        }

        .promo-claim-btn:active {
            transform: translateY(-1px);
        }

        .promo-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 16px;
        }

        .promo-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .promo-dot.active {
            background: #6366f1;
            width: 24px;
            border-radius: 4px;
        }

        /* Cart Button Styles */
        .cart-button {
            position: fixed;
            bottom: 90px;
            right: 20px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
            z-index: 50;
            animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            transition: all 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cart-button:hover {
            transform: scale(1.12);
            box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5);
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ef4444;
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 10px;
            min-width: 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }

        /* Return to Top Button */
        .return-to-top {
            position: fixed;
            bottom: 90px;
            left: 20px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border: none;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
            z-index: 50;
            animation: slideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            transition: all 0.3s ease;
            font-size: 20px;
        }

        .return-to-top:hover {
            transform: scale(1.12);
            box-shadow: 0 16px 40px rgba(16, 185, 129, 0.5);
        }

        .return-to-top.show {
            display: flex;
        }

/* ================= PREMIUM FUTURISTIC CART ================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700&display=swap');

:root{
  --bg:#020617;
  --glass:rgba(255,255,255,0.06);
  --glass-strong:rgba(255,255,255,0.12);
  --stroke:rgba(255,255,255,0.12);
  --text:#f8fafc;
  --muted:#94a3b8;
  --primary:#7c3aed;
  --accent:#22d3ee;
}

/* OVERLAY */
.cart-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  backdrop-filter:blur(18px);
  display:none;
  justify-content:flex-end;
  z-index:99999;
}

.cart-modal-overlay.active{
  display:flex;
}

/* PANEL */
.cart-modal-content{
  width:100%;
  max-width:420px;
  height:100vh;
  background:linear-gradient(145deg,#020617,#020617ee);
  backdrop-filter:blur(30px);
  border-left:1px solid var(--stroke);

  border-top-left-radius:26px;
  border-bottom-left-radius:26px;

  display:flex;
  flex-direction:column;
  overflow:hidden;

  box-shadow:-30px 0 80px rgba(0,0,0,0.7);
  animation:slideIn .5s cubic-bezier(.22,1,.36,1);
}

@media(max-width:768px){
  .cart-modal-content{
    border-radius:26px;
    margin:10px;
    height:calc(100vh - 20px);
    border:none;
  }
}

/* HEADER */
.cart-modal-header{
  padding:18px;
  height:45px;
  border-bottom:1px solid var(--stroke);
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.cart-modal-header h2{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:16px;
  letter-spacing:0.6px;
  font-weight:700;
  background:linear-gradient(90deg,#fff,#cbd5f5);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.cart-modal-header strong{
  font-family:'Plus Jakarta Sans', sans-serif;
  font-size:10px;
  letter-spacing:0.6px;
  font-weight:500;
  background:linear-gradient(90deg,#fff,#cbd5f5);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* 🔥 PREMIUM CLOSE BUTTON */
.cart-close-btn{
  width:36px;
  height:36px;
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  border:1px solid var(--stroke);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
  transition:all .3s cubic-bezier(.22,1,.36,1);
  backdrop-filter:blur(10px);
}

/* X lines */
.cart-close-btn::before,
.cart-close-btn::after{
  content:"";
  position:absolute;
  width:14px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:.3s;
}

.cart-close-btn::before{
  transform:rotate(45deg);
}

.cart-close-btn::after{
  transform:rotate(-45deg);
}

/* hover animation */
.cart-close-btn:hover{
  transform:rotate(90deg) scale(1.1);
  background:rgba(255,255,255,0.12);
  box-shadow:0 0 20px rgba(124,58,237,0.4);
}

/* press feedback */
.cart-close-btn:active{
  transform:scale(0.9);
}

/* DRAG HANDLE */
.cart-drag{
  height:4px;
  width:60px;
  background:var(--glass-strong);
  border-radius:10px;
  margin:10px auto;
}

/* ITEMS */
.cart-items-container{
  flex:1;
  overflow-y:auto;
  padding:16px;
}

.cart-items-container::-webkit-scrollbar{
  width:4px;
}
.cart-items-container::-webkit-scrollbar-thumb{
  background:linear-gradient(var(--primary),var(--accent));
  border-radius:10px;
}

/* ITEM */
.cart-item{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:14px;
  background:var(--glass);
  border:1px solid var(--stroke);
  backdrop-filter:blur(12px);
  margin-bottom:12px;
  transition:.3s;
}
.cart-item:hover{
  transform:translateY(-3px);
  background:var(--glass-strong);
}

/* IMAGE */
.cart-item-image{
  width:64px;height:64px;
  border-radius:10px;
  overflow:hidden;
}
.cart-item-image img{
  width:100%;height:100%;object-fit:cover;
}

/* TEXT */
.cart-item-name{
  font-size:13px;
  font-weight:600;
  color:var(--text);
}
.cart-item-meta{
  font-size:10px;
  color:var(--muted);
}
.cart-item-price{
  font-size:13px;
  font-weight:700;
  background:linear-gradient(90deg,var(--primary),var(--accent));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* BUTTONS */
button{
  font-family:Poppins;
}

.cart-btn{
    width: 25px;
    height: 25px;
    background:linear-gradient(135deg,var(--primary),var(--accent));
    color:white;
    font-weight:600;
    letter-spacing:0.4px;
    cursor:pointer;
    box-shadow:
        0 10px 25px rgba(124,58,237,0.4),
        inset 0 1px 1px rgba(255,255,255,0.2);
    transition:.3s;
}

.cart-btn:hover{
  transform:translateY(-3px) scale(1.02);
}

.cart-btn:active{
  transform:scale(0.97);
}

.cart-btn-delete{
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #ff0000, #ff00aa);
    color:white;
    font-weight:600;
    letter-spacing:0.4px;
    cursor:pointer;
    box-shadow:
        0 10px 25px rgba(255, 51, 0, 0.4),
        inset 0 1px 1px rgba(255, 0, 191, 0.2);
    transition:.3s;
}

.cart-btn-delete:hover{
  transform:translateY(-3px) scale(1.02);
}

.cart-btn-delete:active{
  transform:scale(0.97);
}


.cart-continue-btn{
  flex:1;
  padding:10px;
  border-radius:10px;
  background:rgba(255,255,255,0.05);
  border:1px solid var(--stroke);
  color:white;
  cursor:pointer;
  transition:.3s;
}
.cart-continue-btn:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.1);
}

.cart-checkout-btn{
  flex:1;
  padding:10px;
  border-radius:10px;
  border:none;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:white;
  font-weight:600;
  letter-spacing:0.4px;
  cursor:pointer;

  box-shadow:
    0 10px 25px rgba(124,58,237,0.4),
    inset 0 1px 1px rgba(255,255,255,0.2);

  transition:.3s;
}

.cart-checkout-btn:hover{
  transform:translateY(-3px) scale(1.02);
}

.cart-checkout-btn:active{
  transform:scale(0.97);
}

/* SUMMARY */
.cart-summary{
  padding:16px;
  border-top:1px solid var(--stroke);
}

.cart-summary-row{
  display:flex;
  justify-content:space-between;
  font-size:12px;
}

.cart-summary-row.total{
  font-size:15px;
  font-weight:700;
}

/* ACTIONS */
.cart-actions{
  display:flex;
  gap:10px;
  padding:14px;
}

/* 🔥 PREMIUM EMPTY STATE */
.cart-empty{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:14px;
  padding:40px;
  animation:fadeUp .6s ease;
}

.cart-empty-icon{
  width:80px;
  height:80px;
  border-radius:20px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color:white;
  box-shadow:0 20px 40px rgba(124,58,237,0.4);
  animation:float 3s ease-in-out infinite;
}

.cart-empty h3{
  font-family:'Plus Jakarta Sans';
  font-size:16px;
  font-weight:700;
  letter-spacing:0.5px;
}

.cart-empty p{
  font-size:12px;
  color:var(--muted);
  max-width:220px;
}

/* animations */
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* PANEL ANIMATION */
@keyframes slideIn{
  from{
    transform:translateX(60px);
    opacity:0;
  }
  to{
    transform:translateX(0);
    opacity:1;
  }
}

    /* =========================
    PREMIUM HORIZONTAL SCROLL
    CART-MODAL STYLE SYSTEM
    ========================= */

    .trending-destinations-carousel,
    .featured-hotels-carousel,
    .horizontal-carousel,
    .vertical-carousel{

        display:flex;
        gap:14px;

        overflow-x:auto;
        overflow-y:hidden;

        scroll-behavior:smooth;

        /* iOS MOMENTUM SCROLL */
        -webkit-overflow-scrolling:touch;

        /* SNAP SYSTEM (IMPORTANT UPGRADE) */
        scroll-snap-type:x mandatory;

        padding:10px 6px;

        /* REMOVE SCROLLBAR (CLEAN LUXURY UI) */
        -ms-overflow-style:none;
        scrollbar-width:none;

        /* subtle depth */
        will-change:scroll-position;
    }

    /* HIDE SCROLLBAR COMPLETELY */
    .trending-destinations-carousel::-webkit-scrollbar,
    .featured-hotels-carousel::-webkit-scrollbar,
    .horizontal-carousel::-webkit-scrollbar,
    .vertical-carousel::-webkit-scrollbar{
        display:none;
    }

    /* =========================
    CAROUSEL ITEMS (IMPORTANT)
    MAKE SCROLL FEEL "LOCKED"
    ========================= */
    .trending-destinations-carousel > *,
    .featured-hotels-carousel > *,
    .horizontal-carousel > *,
    .vertical-carousel > *{

        scroll-snap-align:start;

        flex:0 0 auto;

        transition:transform .35s ease, opacity .35s ease;
    }

    /* =========================
    PREMIUM HOVER (DESKTOP)
    ========================= */
    @media (min-width: 768px){
        .trending-destinations-carousel > *,
        .featured-hotels-carousel > *,
        .horizontal-carousel > *{

            cursor:grab;
        }

        .trending-destinations-carousel > *:hover,
        .featured-hotels-carousel > *:hover,
        .horizontal-carousel > *:hover{
            transform:translateY(-6px) scale(1.02);
        }
    }

    /* =========================
    CAROUSEL WRAPPER (DEPTH UI)
    ========================= */
    .carousel-with-controls{
        position:relative;
        display:flex;
        align-items:center;
        gap:10px;

        margin-top:12px;
        margin-bottom:22px;

        animation:fadeUp .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    /* subtle fade edges (APPLE STYLE DEPTH) */
    .carousel-with-controls::before,
    .carousel-with-controls::after{
        content:"";
        position:absolute;
        top:0;
        bottom:0;
        width:40px;
        pointer-events:none;
        z-index:5;
    }

    .carousel-with-controls::before{
        left:0;
        background:linear-gradient(to right, rgba(5,8,22,1), transparent);
    }

    .carousel-with-controls::after{
        right:0;
        background:linear-gradient(to left, rgba(5,8,22,1), transparent);
    }

    /* =========================
    SCROLL BUTTONS (UPGRADED)
    ========================= */
    .carousel-scroll-btn{
        background:linear-gradient(135deg,#6366f1,#8b5cf6);
        color:white;

        border:none;
        width:42px;
        height:42px;

        border-radius:14px; /* more premium than circle */

        display:flex;
        align-items:center;
        justify-content:center;

        cursor:pointer;

        box-shadow:
            0 8px 25px rgba(99,102,241,0.35),
            inset 0 1px 1px rgba(255,255,255,0.2);

        transition:all .25s ease;

        z-index:10;
    }

    /* hover = Apple-style lift */
    .carousel-scroll-btn:hover{
        transform:translateY(-3px) scale(1.08);
        box-shadow:0 12px 35px rgba(99,102,241,0.5);
    }

    /* active press */
    .carousel-scroll-btn:active{
        transform:scale(0.95);
    }

    /* disabled state */
    .carousel-scroll-btn:disabled{
        opacity:0.4;
        cursor:not-allowed;
        transform:none;
        box-shadow:none;
    }

    /* =========================
    MOBILE = FULL TOUCH EXPERIENCE
    ========================= */
    @media (max-width:768px){

        .carousel-scroll-btn{
            display:none; /* iOS native swipe only */
        }

        .carousel-with-controls::before,
        .carousel-with-controls::after{
            width:20px;
        }

        .trending-destinations-carousel,
        .featured-hotels-carousel,
        .horizontal-carousel{
            padding:10px 12px;
            gap:12px;
        }
    }

    /* =========================
    ANIMATION (SOFT PREMIUM FEEL)
    ========================= */
    @keyframes fadeUp{
        from{
            opacity:0;
            transform:translateY(10px);
        }
        to{
            opacity:1;
            transform:translateY(0);
        }
    }

        .info-btn {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.92);
            color: #374151;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
            z-index: 3;
        }

        .info-btn:hover {
            transform: scale(1.05);
            background: #ffffff;
        }

        .info-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.65);
            backdrop-filter: blur(10px);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1100;
            padding: 20px;
        }

        .info-modal-overlay.active {
            display: flex;
        }

        .info-modal-content {
            width: min(420px, 100%);
            background: linear-gradient(135deg, #1f2937 0%, #1a2644 100%);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        .info-modal-close-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(99, 102, 241, 0.2);
            color: #818cf8;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .info-modal-close-btn:hover {
            transform: scale(1.05);
            background: rgba(99, 102, 241, 0.3);
        }

        .info-modal-body {
            padding: 24px;
        }

        .info-modal-body h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #f1f5f9;
        }

        .info-modal-body p {
            font-size: 14px;
            line-height: 1.7;
            color: #cbd5e1;
            margin-bottom: 12px;
        }

        .info-modal-meta {
            font-size: 13px;
            color: #9ca3af;
            font-weight: 600;
        }

        .carousel-wrapper {
            flex: 1;
            overflow-x: auto;
            overflow-y: hidden;
            margin-left:10px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            -webkit-overflow-scrolling: touch;
        }

        @media (max-width: 768px) {
            .carousel-scroll-btn {
                display: none;
            }
        }

        .carousel-wrapper-inner {
            display: flex;
            gap: 16px;
            padding: 16px;
            transition: transform 0.3s ease;
            scroll-snap-type: x mandatory;
        }

        .carousel-wrapper-inner > * {
            scroll-snap-align: start;
        }

        /* Section header animation */
        .carousel-section {
            animation: slideInUp 0.6s ease-out;
        }

        /* Section Header Bar */
        .section-header-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding: 0 4px;
        }

        .section-header-bar h2 {
            font-size: 18px;
            font-weight: 700;
            color: #e5e7eb;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: -0.3px;
        }

        .section-header-bar h2 i {
            color: #818cf8;
            font-size: 16px;
        }

        .see-more-link {
            font-size: 13px;
            font-weight: 600;
            color: #818cf8;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .see-more-link:hover {
            color: #a5b4fc;
            transform: translateX(2px);
        }

        /* Mobile responsive for section headers */
        @media (max-width: 480px) {
            .section-header-bar {
                margin-bottom: 12px;
                padding: 0 2px;
            }

            .section-header-bar h2 {
                font-size: 16px;
            }

            .section-header-bar h2 i {
                font-size: 14px;
            }

            .see-more-link {
                font-size: 12px;
            }
        }

        /* Destination Card Styles - Luxury Design */
        .destination-card {
            min-width: 200px;
            max-width: 200px;
            background: linear-gradient(135deg, #1f2937 0%, #1a2644 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(99, 102, 241, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(99, 102, 241, 0.15);
        }

        .destination-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(99, 102, 241, 0.2);
        }

        @media (max-width: 768px) {
            .destination-card {
                min-width: calc((100% - 16px) / 2);
            }
        }

        .destination-card .destination-image {
            position: relative;
            overflow: hidden;
        }

        .destination-card .destination-image img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .destination-card:hover .destination-image img {
            transform: scale(1.1);
        }

        .destination-card .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.7) 100%);
            padding: 20px;
            color: white;
        }

        .destination-card .destination-info-overlay h3 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10;
            letter-spacing: -0.3px;
        }

        .destination-card .destination-info-overlay p {
            font-size: 13px;
            margin-bottom: 10;
            opacity: 0.9;
        }

        .destination-card .destination-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
            z-index: 2;
        }

        .destination-card .destination-stats {
            position: absolute;
            /* top: 52px; */
            bottom: 12px;
            right: 12px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .destination-card .stat-item {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            backdrop-filter: blur(10px);
            padding: 6px 10px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            color: #374151;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .destination-card .destination-bottom {
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .destination-card .destination-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #374151;
        }

        .destination-card .destination-rating span {
            color: #6b7280;
            font-weight: 500;
        }

        .destination-card .destination-price {
            font-size: 14px;
            font-weight: 700;
            color: #6366f1;
        }

        /* Featured Hotel Card Styles - Premium Luxury */
        .featured-hotel-card {
            min-width: 280px;
            max-width: 290px;
            background: linear-gradient(135deg, #1f2937 0%, #1a2644 100%);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3), 0 6px 22px rgba(99, 102, 241, 0.15);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(99, 102, 241, 0.15);s
        }

        .featured-hotel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
            z-index: 1;
        }

        .featured-hotel-card:hover::before {
            height: 6px;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        }

        .featured-hotel-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(99, 102, 241, 0.2);
        }

        .featured-hotel-card .featured-hotel-details {
            padding: 20px;
        }

        .featured-hotel-card .featured-hotel-details h3 {
            color: #e5e7eb;
        }

        .featured-hotel-card .featured-destination {
            color: #9ca3af;
        }

        .featured-hotel-card .featured-description {
            color: #d1d5db;
        }

        .featured-hotel-card .amenity-tag {
            background: rgba(30, 58, 138, 0.3);
            color: #93c5fd;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .featured-hotel-card .featured-hotel-image {
            position: relative;
            overflow: hidden;
        }

        .featured-hotel-card .featured-hotel-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .featured-hotel-card:hover .featured-hotel-image img {
            transform: scale(1.1);
        }

        .featured-hotel-card .featured-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
            z-index: 1;
        }

        .featured-hotel-card .featured-info-overlay {
            position: absolute;
            top: 16px;
            left: 16px;
            right: 16px;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .featured-hotel-card .featured-badge-top {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: white;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 11px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
        }

        .featured-hotel-card .featured-price-tag {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 6px 10px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
        }

        .featured-rating .featured-price-tag-new {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: white;
            padding: 6px 10px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
        }

        .hotel-rating .featured-price-tag-new {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: white;
            padding: 6px 10px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
        }

        .featured-hotel-card .featured-rating-badge {
            position: absolute;
            bottom: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 8px 12px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
            font-weight: 700;
            color: #374151;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .featured-hotel-card .featured-hotel-details {
            padding: 20px;
        }

        .featured-hotel-card .featured-hotel-details h3 {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 6px 0;
            letter-spacing: -0.3px;
        }

        .featured-hotel-card .featured-destination {
            font-size: 13px;
            color: #d1d5db;
            margin: 0 0 12px 0;
            font-weight: 500;
        }

        .featured-hotel-card .featured-description {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0 0 16px 0;
            line-height: 1.5;
        }

        .featured-hotel-card .featured-amenities {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }

        .featured-hotel-card .amenity-tag {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            color: #0369a1;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 600;
            border: 1px solid rgba(3, 105, 161, 0.2);
        }

        .featured-hotel-card .featured-rating {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .featured-hotel-card .review-count {
            font-size: 12px;
            color: #6b7280;
            font-weight: 500;
        }

        .featured-hotel-card .view-btn {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

        .featured-hotel-card .view-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
        }

        /* Hotel Card */
        .hotel-card {
            min-width: 230px;
            max-width: 230px;
            background: linear-gradient(135deg, #1f2937 0%, #1a2644 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 5px 16px rgba(99, 102, 241, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            border: 1px solid rgba(99, 102, 241, 0.15);
        }

        .hotel-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(99, 102, 241, 0.2);
        }

        .hotel-card .hotel-info {
            padding: 16px;
        }

        .hotel-card .hotel-info h3 {
            color: #ffffff;
        }

        .hotel-card .hotel-destination {
            color: #d1d5db;
        }

        .hotel-card .rating-value {
            color: #d1d5db;
        }

        .hotel-card .hotel-image {
            position: relative;
            overflow: hidden;
        }

        .hotel-card .hotel-image img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hotel-card:hover .hotel-image img {
            transform: scale(1.1);
        }

        .hotel-card .hotel-price-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
            z-index: 2;
        }

        .hotel-card .favorite-btn {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .hotel-card .favorite-btn:hover {
            background: rgba(239, 68, 68, 0.1);
            transform: scale(1.1);
        }

        .hotel-card .favorite-btn i {
            color: #ef4444;
            font-size: 14px;
        }

        .hotel-card .hotel-info {
            padding: 16px;
        }

        .hotel-card .hotel-info h3 {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 6px 0;
            letter-spacing: -0.3px;
        }

        .hotel-card .hotel-destination {
            font-size: 13px;
            color: #d1d5db;
            margin: 0 0 12px 0;
            font-weight: 500;
        }

        .hotel-card .hotel-rating {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hotel-card .stars {
            color: #fbbf24;
            font-size: 12px;
        }

        .hotel-card .rating-value {
            font-size: 13px;
            font-weight: 600;
            color: #374151;
        }

        /* Room Tab Styles */
        .room-tab {
            background: #f3f4f6;
            color: #000000;
            border: none;
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .room-tab:hover {
            background: rgba(99, 102, 241, 0.1);
            color: #6366f1;
            transform: translateY(-2px);
        }

        .room-tab.active {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }

        .room-tab:hover:not(.active) {
            background: rgba(99, 102, 241, 0.1);
            color: #6366f1;
        }

/* Product Modal STarts Here! */
/* ===========================
   ULTRA PREMIUM PRODUCT MODAL
   Apple Vision × Airbnb Luxe
=========================== */

:root{
    --bg:#050816;
    --glass:rgba(255,255,255,0.06);
    --glass2:rgba(255,255,255,0.12);
    --stroke:rgba(255,255,255,0.12);

    /* FORCE PREMIUM WHITE SYSTEM */
    --text:#ffffff;
    --muted:rgba(255,255,255,0.75);

    --primary:#7c3aed;
    --accent:#22d3ee;
}

/* ================= GLOBAL TEXT ENFORCE ================= */
*{
    color:var(--text);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* ================= OVERLAY ================= */
.modal-detail{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.78);
    backdrop-filter:blur(28px) saturate(180%);
    display:flex;
    align-items:flex-end;
    justify-content:center;
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transition:all .35s ease;
}

.modal-detail.open{
    opacity:1;
    visibility:visible;
}

/* ================= PANEL ================= */
.modal-detail-content{
    position:relative; /* IMPORTANT */
    
    width:100%;
    max-width:480px;

    max-height:92vh;

    background:linear-gradient(180deg,#070b18,#050816 60%);
    border:1px solid var(--stroke);

    backdrop-filter:blur(35px) saturate(160%);
    border-radius:28px 28px 0 0;

    display:flex;
    flex-direction:column;

    overflow:hidden; /* IMPORTANT */

    box-shadow:
        0 -40px 100px rgba(0,0,0,0.75),
        0 10px 60px rgba(124,58,237,0.18);

    transform:translateY(90px);
    opacity:0;

    transition:all .5s cubic-bezier(.22,1,.36,1);
}

.modal-detail.open .modal-detail-content{
    transform:translateY(0);
    opacity:1;
}

/* ================= CLOSE BUTTON ================= */
.modal-close-btn{
    position:absolute; /* CHANGED */
    top:18px;
    right:18px;

    width:46px;
    height:46px;

    border-radius:16px;
    border:1px solid rgba(255,255,255,0.18);

    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(20px);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:999; /* IMPORTANT */

    box-shadow:
        0 10px 25px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08);

    transition:all .25s ease;
}

.modal-close-btn i{
    color:#fff;
    font-size:15px;
    transition:all .25s ease;
}

.modal-close-btn:hover{
    transform:scale(1.08) rotate(90deg);
    background:rgba(255,255,255,0.12);
}

.modal-close-btn:hover i{
    color:#ff5a5f;
}

/* ================= HERO IMAGE ================= */
.modal-360-section{
    position:relative;
    overflow:hidden;
    height:200px;
}

.modal-360-section .mod-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius: 20px;
    transition:transform .7s ease;
}

.modal-360-section::after{
    content:"";
    position:absolute;
    border-radius: 40px;
    inset:0;
    /* background:linear-gradient(
        to bottom,
        rgba(0,0,0,0.15),
        rgba(0,0,0,0.65)
    ); */
    z-index:1;
}

.modal-detail-content:hover .modal-360-section .mod-img{
    transform:scale(1.08);
}

/* ================= BODY ================= */
.modal-detail-body{
    flex:1;
    overflow-y:auto;
    padding:5px;
    color:#fff;
}
.modal-detail-body2{
    padding:15px;
}

/* scrollbar */
.modal-detail-body::-webkit-scrollbar{
    width:7px;
}

.modal-detail-body::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--primary),var(--accent));
    border-radius:20px;
}

/* ================= TITLE ================= */
.hotel-header{
    display:flex;
    position:relative;
}

.hotel-header h2{
    font-size:20px;
    font-weight:700;
    letter-spacing:-0.6px;

    background:linear-gradient(135deg,#fff,#dbeafe);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:fadeUp .6s ease;
}
        .hotel-header .favorite-btn {
            position: relative;
            /* top: 12px;
            left: 12px; */
            margin-left: 10px;
            background: rgba(239, 68, 68, 0.1);
            backdrop-filter: blur(10px);
            border: none;
            width: 40px;
            height: 40px;
            font-size: 17px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .hotel-header .favorite-btn:hover {
            background: rgba(239, 68, 68, 0.1);
            transform: scale(1.1);
        }

        .hotel-header .favorite-btn i {
            color: #ef4444;
            font-size: 17px;
        }

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(10px)
    }
    to{
        opacity:1;
        transform:translateY(0)
    }
}

/* ================= BADGE ================= */
.hotel-header::before{
    content:"PREMIUM STAY";
    font-size:10px;
    font-weight:800;

    padding:5px 10px;
    border-radius:8px;

    background:linear-gradient(135deg,#f59e0b,#fbbf24);
    color:#111;

    position:absolute;
    top:-20px;
    left: -10px;
}

/* ================= META ================= */
.rating-section{
    display:flex;
    gap:10px;
    align-items:center;
    margin:10px 0;
}

.rating-stars{
    color:#fbbf24;
    animation:pulse 2.5s infinite;
}

@keyframes pulse{
    0%,100%{
        transform:scale(1)
    }
    50%{
        transform:scale(1.12)
    }
}

/* ================= LOCATION ================= */
.hotel-location-detailed{
    font-size:13px;
    color:rgba(255,255,255,0.75);

    display:flex;
    gap:6px;
    align-items:center;
}

/* ================= AMENITIES ================= */
.amenity-item{
    background:rgba(255,255,255,0.05);
    border:1px solid var(--stroke);
    border-radius:14px;

    padding:12px;
    margin-bottom:10px;
    display:flex;
    gap:8px;
    align-items:center;

    transition:.25s ease;
}

.amenity-item:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,0.1);
}

/* ================= DESCRIPTION ================= */
.hotel-description p{
    color:rgba(255,255,255,0.78);
    font-size:14px;
    line-height:1.7;
}

/* ================= REVIEWS ================= */
.review-item{
    background:rgba(255,255,255,0.04);
    border:1px solid var(--stroke);

    border-radius:14px;
    padding:14px;

    transition:.3s ease;
}

.review-item:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,0.08);
}

/* ================= FOOTER ================= */
.modal-footer{
    padding:18px;
    border-top:1px solid var(--stroke);

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:linear-gradient(180deg,transparent,#050816);
}

/* PRICE */
.modal-price .price{
    font-size:22px;
    font-weight:800;
    color:var(--accent);
}

.modal-price .period{
    font-size:12px;
    color:rgba(255,255,255,0.7);
    padding-right:10px;
}

/* BUTTON */
.modal-footer .btn{
    padding:12px 16px;
    border-radius:14px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    color:#fff;

    font-weight:700;
    border:none;

    transition:.25s ease;

    box-shadow:0 10px 30px rgba(124,58,237,0.35);
}

.modal-footer .btn:hover{
    transform:translateY(-3px);
}

.modal-footer .btn:active{
    transform:scale(0.96);
}

/* ================= EMPTY STATE ================= */
.cart-empty{
    text-align:center;
    padding:70px 20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.cart-empty i{
    font-size:44px;
    margin-bottom:12px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--accent)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:float 2.5s infinite ease-in-out;
}

@keyframes float{
    0%,100%{
        transform:translateY(0)
    }
    50%{
        transform:translateY(-8px)
    }
}

.cart-empty h3{
    font-size:18px;
    font-weight:700;
    color:#fff;
}

.cart-empty p{
    font-size:13px;
    color:rgba(255,255,255,0.7);

    max-width:260px;
    margin-top:6px;
}

/* ================= MOBILE ================= */
@media(max-width:520px){

    .modal-detail-content{
        border-radius:26px 26px 0 0;
        max-width:100%;
    }

    .hotel-header h2{
        font-size:22px;
    }

    .modal-close-btn{
        top:14px;
        right:14px;

        width:42px;
        height:42px;
    }
}

/* ================= VIDEO ================= */
.video-panel{
    height:0;
    overflow:hidden;

    transition:.5s ease;

    border-radius:16px;
    margin-top:10px;
}

.video-panel.active{
    height:180px;
}

.video-panel iframe{
    width:100%;
    height:100%;
    border-radius:16px;
    border:none;
}


        /* Modern Footer Styles */
        .modern-footer {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: white;
            margin-top: 40px;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .modern-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #f59e0b);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-brand {
            margin-bottom: 24px;
        }

        .footer-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-bottom: 12px;
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }

        .footer-brand h3 {
            font-size: 24px;
            font-weight: 800;
            margin: 0 0 8px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-brand p {
            font-size: 14px;
            color: #9ca3af;
            margin: 0;
            line-height: 1.5;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin: 0 0 20px 0;
            position: relative;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            border-radius: 1px;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-section a:hover {
            color: #6366f1;
            transform: translateX(4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
        }

        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            font-size: 13px;
            color: #9ca3af;
            margin: 0;
        }

        .footer-apps {
            display: flex;
            gap: 16px;
        }

        .app-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .app-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .app-link i {
            font-size: 16px;
        }

        /* Footer Mobile Responsive */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }

            .footer-brand {
                align-items: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-section h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .footer-apps {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .modern-footer {
                padding: 40px 0 20px;
            }

            .footer-content {
                padding: 0 20px;
                gap: 24px;
            }

            .footer-brand h3 {
                font-size: 20px;
            }

            .social-links {
                gap: 8px;
            }

            .social-link {
                width: 36px;
                height: 36px;
            }

            .social-link i{
                width: 36px;
                height: 36px;
            }

            .footer-apps {
                flex-direction: column;
                width: 100%;
            }

            .app-link {
                justify-content: center;
                padding: 10px 16px;
            }
        }
