/* ================================
   1. BASE STYLES & RESET
   ================================ */

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


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

       

        .container_nkz {
            max-width: 1200px;
            margin: 0 auto;
        }

        .title_nkz {
            font-size: 32px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        .slider-wrapper_nkz {
            position: relative;
            overflow: hidden;
        }

        .slider_nkz {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .hotel-card_nkz {
            min-width: 100%;
            padding: 0 10px;
        }

        @media (min-width: 768px) {
            .hotel-card_nkz {
                min-width: 50%;
            }
        }

        @media (min-width: 1024px) {
            .hotel-card_nkz {
                min-width: 25%;
            }
        }

        .card-inner_nkz {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .card-inner_nkz:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .image-container_nkz {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .hotel-image_nkz {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .favorite-btn_nkz {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: transform 0.2s;
        }

        .favorite-btn_nkz:hover {
            transform: scale(1.1);
        }

        .card-content_nkz {
            padding: 20px;
        }

        .hotel-name_nkz {
            font-size: 18px;
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .location_nkz {
            color: #666;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .rating-container_nkz {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .rating-badge_nkz {
            background: #00a651;
            color: white;
            padding: 4px 8px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 14px;
        }

        .rating-text_nkz {
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 500;
        }

        .reviews_nkz {
            color: #666;
            font-size: 13px;
            margin-bottom: 15px;
        }

        .price-container_nkz {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .price-label_nkz {
            color: #666;
            font-size: 14px;
        }

        .price_nkz {
            color: #1a1a1a;
            font-size: 20px;
            font-weight: bold;
        }

        .nav-btn_nkz {
            position: absolute;
            top: 30%;
            transform: translateY(-50%);
            background: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 12px rgba(0,0,0,0.2);
            z-index: 10;
            transition: all 0.3s;
        }

        .nav-btn_nkz:hover {
            background: #ac3b3bff;
            color: white;
        }

        .prev-btn_nkz {
            left: 10px;
        }

        .next-btn_nkz {
            right: 10px;
        }

        .indicators_nkz {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
        }

        .indicator_nkz {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator_nkz.active_nkz {
            background: #2f640cff;
            width: 30px;
            border-radius: 5px;
        }


         .link-container_nkz {
            margin-top: 15px;
        }

        .hotel-link_nkz {
            display: inline-block;
            width: 100%;
            padding: 12px 20px;
            background: #1a1a1a;
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            transition: background 0.3s, transform 0.2s;
        }

        .hotel-link_nkz:hover {
            background: #027712ff;
            transform: translateY(-2px);
              color: white;
        }
