<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(135deg, #2c3e50, #4a6491);
            color: white;
            padding: 1rem 1.5rem; /* Kurangi padding atas-bawah */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: nowrap; /* Ubah dari wrap ke nowrap */
            position: sticky;
            top: 0;
            z-index: 100;
            gap: 1rem;
        }

        header .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0; /* Tambahkan ini */
        }
        .logo-img {
            width: 40px;
            height: auto;
            border-radius: 7px;
        }
        
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            white-space: nowrap; /* Tambahkan ini */
        }

        .logo i {
            font-size: 2.2rem;
            color: var(--accent);
        }

        header nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }

        header nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        header nav a:hover {
            color: #d1d5db;
        }
        
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1173&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 40px 20px;
            margin-bottom: 40px;
            border-radius: 12px;
            height: 40vh; 
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
        }
        
        .property-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            min-height: 380px; /* Tambahkan minimum height */
            display: flex;
            flex-direction: column;
        }
        
        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .property-image {
            height: 180px;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f0f0f0; /* Background fallback */
        }
        
        .property-image img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important;
            transition: transform 0.5s ease;
            flex-shrink: 0;
        }

        .no-image {
            height: 180px;
            background: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-size: 1.2rem;
            width: 100%;
        }
        
        .property-card:hover .property-image img {
            transform: scale(1.05);
        }
        
        .property-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #4a6491;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .property-number {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .property-details {
            padding: 1rem;
            flex-grow: 1; /* Biarkan detail mengisi sisa space */
            display: flex;
            flex-direction: column;
        }
        
        .property-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .property-price-promo {
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-bottom: 0.5rem;
        }
        
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
            font-weight: normal;
        }
        
        .promo-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #e74c3c;
        }
        
        .normal-price {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
        }
        
        .property-address {
            color: #666;
            margin-bottom: 1rem;
            font-size: 0.8rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .property-features {
            display: flex;
            flex-wrap: wrap;         /* biar rapi di dua baris kalau sempit */
            align-items: center;
            justify-content: flex-start;
            gap: 6px 14px;
            margin-bottom: 1rem;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: #5a738e;
            font-size: 0.8rem;
        }
        
        .feature i {
            font-size: 1rem;         /* kecilkan ikon sedikit */
            margin-right: 5px;
            color: #4a6491;
        }

        .feature span {
            display: inline-block;
            min-width: 50px;         /* biar urut sejajar antar item */
            text-align: left;
        }

        /* Khusus item LT & LB */
        .property-features .feature.luas {
            font-size: 0.8rem;          /* kecilkan teks LT LB */
            line-height: 1;
        }
        
        .property-features .feature.luas i {
            font-size: 0.85rem;         /* kecilkan ikon LT LB */
            margin-right: 4px;
            color: #4a6491;
        }
        
        .property-action {
            margin-top: auto; /* Dorong tombol ke bawah */
            text-align: center;
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .view-details-btn, .whatsapp-btn {
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .view-details-btn {
            background: #4a6491;
            color: white;
        }
        
        .view-details-btn:hover {
            background: #3a547e;
        }
        
        .whatsapp-btn {
            background: #25D366;
            color: white;
        }
        
        .whatsapp-btn:hover {
            background: #128C7E;
        }

        .property-card.sold {
            pointer-events: none; /* ga bisa di-klik */
        }
        
        .property-card.sold .property-image img {
            filter: grayscale(100%) brightness(0.6); /* jadi abu-abu */
        }
        
        .property-card.sold .sold-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0,0,0,0.6);
            color: white;
            font-size: 2rem;
            font-weight: bold;
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
        }

        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            overflow-y: auto;
            padding: 2rem 1rem;
        }
        
        .modal-content {
            background: white;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: modalFade 0.3s;
        }
        
        .modal-property-number {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 5;
        }
        
        @keyframes modalFade {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-modal {
            position: fixed;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            z-index: 1001;
            background: rgba(0, 0, 0, 0.5);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .close-modal:hover {
            background: rgba(0, 0, 0, 0.7);
        }
        
        .modal-slider {
            position: relative;
            height: 0;
            padding-bottom: 125%; /* 5:4 ratio (4:5 inverted) */
            overflow: hidden;
            background-color: #f0f0f0; /* Warna background untuk area kosong */
        }
        
        .modal-slider-container {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }

        .modal-slider-container .slide {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-slider-container .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-drag: none;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        .modal-slider-container img {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-drag: none;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        .modal-slider-nav {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .modal-slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .modal-slider-dot.active {
            background: white;
        }
        
        .modal-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.7);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #2c3e50;
            font-size: 1.5rem;
            transition: background 0.2s;
            z-index: 10;
        }
        
        .modal-slider-arrow:hover {
            background: rgba(255, 255, 255, 0.9);
        }
        
        .modal-slider-arrow.prev {
            left: 20px;
        }
        
        .modal-slider-arrow.next {
            right: 20px;
        }
        
        .modal-details {
            padding: 2rem;
        }
        
        .modal-price {
            font-size: 2rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        /* Untuk modal juga */
        .modal-price-promo {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-bottom: 0.5rem;
        }
        
        .modal-original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 1.2rem;
            font-weight: normal;
        }
        
        .modal-promo-price {
            font-size: 2rem;
            font-weight: bold;
            color: #e74c3c;
        }
        
        .modal-normal-price {
            font-size: 2rem;
            font-weight: bold;
            color: #2c3e50;
        }
        
        .modal-type {
            background: #4a6491;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .modal-address {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.5;
        }

        .desc-separator {
            border: none;
            border-top: 1px solid #ddd;
            margin: 10px 0;
        }
        
        .modal-description {
            margin-bottom: 0.5rem;
            line-height: 1.4;
            color: #444;
            white-space: pre-line;
            max-height: 300px; /* Batasi tinggi maksimum */
            overflow-y: auto; /* Tambahkan scroll jika perlu */
            padding-right: 5px; /* Ruang untuk scrollbar */
            word-wrap: break-word;
            overflow-wrap: break-word;
            hyphens: auto;
            font-size: 16px;
            -webkit-line-break: strict;
            line-break: strict;
            word-wrap: break-word;
        }

        .modal-description br {
          line-height: 1.4;
          margin: 0;
          padding: 0;
          content: ""; /* Pastikan tidak ada konten tambahan */
          display: block; /* atau inline */
        }

        .modal-description strong {
            color: #2c3e50;
            font-weight: 600;
        }

        /* Style scrollbar untuk deskripsi */
        .modal-description::-webkit-scrollbar {
            width: 5px;
        }
        
        .modal-description::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .modal-description::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }
        
        .modal-description::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
        
        .modal-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            margin-top: 10px;
        }
        
        .modal-feature {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #5a738e;
            font-size: 1rem;
        }
        
        .modal-feature i {
            font-size: 1.3rem;
        }

        .feature.sertifikat,
        .modal-feature.sertifikat {
          font-size: 0.85rem;
          color: #444;
        }
        
        .feature.sertifikat i,
        .modal-feature.sertifikat i {
          font-size: 0.9rem;
          color: #4a6491; /* warna khas Maulana Property */
          margin-right: 4px;
        }

        .modal-feature.sertifikat {
          font-size: 0.85rem;
          color: #444;
        }
        
        .modal-feature.sertifikat i {
          font-size: 0.9rem;
          color: #4a6491;
          margin-right: 4px;
        }

        
        .modal-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .modal-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #4a6491;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.2s;
            padding: 0.8rem 1.5rem;
            border: 2px solid #4a6491;
            border-radius: 6px;
        }
        
        .modal-link:hover {
            background: #4a6491;
            color: white;
        }
        
        .modal-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #25D366;
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.2s;
            padding: 0.8rem 1.5rem;
            border: 2px solid #25D366;
            border-radius: 6px;
        }
        
        .modal-whatsapp:hover {
            background: #128C7E;
            border-color: #128C7E;
            color: white;
        }
        
        .no-image {
            height: 220px;
            background: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-size: 1.2rem;
        }
        
        /* Controls */
        .controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .search-sort {
            display: flex;
            gap: 10px;
        }

        .controls button {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        .controls button:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
        }

        .controls button:active {
            transform: translateY(1px);
        }
        
        footer {
            background: #2c3e50;
            color: white;
            padding: 2rem 1rem;
            margin-top: 3rem;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }

        .footer-grid h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .footer-grid p, .footer-grid a {
            font-size: 0.9rem;
            color: #d1d5db;
            text-decoration: none;
        }

        .footer-grid a:hover {
            text-decoration: underline;
        }

        .social-media {
            margin-top: 1rem;
            display: flex;
            gap: 1rem;
        }

        .social-media a {
            font-size: 1.5rem;
            color: white;
            transition: color 0.3s ease;
        }

        .social-media a:hover {
            color: #d1d5db;
        }

        .footer-copyright {
            text-align: center;
            border-top: 1px solid #4a6491;
            padding-top: 1rem;
            margin-top: 2rem;
            font-size: 0.8rem;
        }
        
        .loading {
            text-align: center;
            padding: 2rem;
            font-size: 1.2rem;
            color: #5a738e;
        }
        
        .error {
            text-align: center;
            padding: 2rem;
            font-size: 1.2rem;
            color: #e74c3c;
        }
        @media (min-width: 769px) {
            .modal-slider {
                height: 500px;
                padding-bottom: 0;
            }
            
            /* Pastikan gambar terlihat dengan baik di desktop */
            .modal-slider-container .slide img {
                max-height: 500px;
                object-fit: contain;
            }

            .modal-description {
                font-size: 16px !important;
                line-height: 1.4 !important;
                max-height: 300px !important;
                padding: 0 !important;
                white-space: pre-line !important;
            }
        }

        @media (max-width: 768px) {
            main {
                padding: 0 25px; /* Mengurangi padding di HP dari 20px menjadi 15px */
            }
            
            header {
                flex-direction: column; /* Tetap vertical */
                padding: 1rem;
                gap: 0.5rem;
            }

            header .logo-container {
                width: 100%;
                justify-content: center;
            }

            header nav {
                width: 100%;
            }

            header nav ul {
                gap: 1rem;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 8px;
                flex-wrap: nowrap;
                justify-content: center; /* Pusatkan menu */
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding: 0.5rem 0;
            }

            header nav a {
                font-size: 1rem;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 6px;
                transition: background 0.3s ease;
                white-space: nowrap;
                padding: 0.5rem 0.8rem;
            }

            header nav a:hover {
                background: rgba(255, 255, 255, 0.3);
            }

            .logo {
                font-size: 1.8rem; /* Ukuran yang pas untuk mobile */
                white-space: nowrap;
            }

            .logo-img {
                width: 35px; /* Perkecil logo image */
            }

            .hero {
                height: 30vh; /* ⬅️ Coba ini untuk mengurangi tingginya ⬅️ */
                padding: 40px 20px; /* Opsional: Kurangi padding juga */
                margin-bottom: 30px;
            }

            .hero h1 {
                font-size: 1.9rem;
                margin-bottom: 20px;
                line-height: 1.1;
            }
            
            .hero p {
                font-size: 0.8rem;
            }

            /* --- Perbaikan tampilan filter di HP --- */
            .search-sort {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                width: 100%;
                padding: 0 0.5rem;
                box-sizing: border-box;
            }
            
            .search-sort input {
                flex: 1;                /* biar input melebar otomatis */
                min-width: 60%;         /* batasi agar tidak sempit */
                font-size: 0.9rem;
                padding: 0.4rem 0.6rem;
            }
            
            .search-sort select {
                width: 35%;             /* sebelumnya terlalu lebar, jadi diperkecil */
                font-size: 0.9rem;
                padding: 0.4rem 0.6rem;
                border-radius: 6px;
                margin-right: 4px;
            }


            .footer-grid {
                text-align: center;
            }

            .social-media {
                justify-content: center;
            }

            .property-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .property-image {
                height: 160px !important; /* Force height di mobile */
                min-height: 160px;
            }

            .no-image {
                height: 160px !important;
                min-height: 160px;
            }
            
            .property-card {
                max-width: 100%;
                margin: 0 auto;
                height: auto; /* Biarkan tinggi mengikuti konten */
                width: 100%;
                overflow: hidden; /* Penting: menyembunyikan bagian gambar yang berlebihan */
                border-radius: 8px 8px 0 0;
            }
            
            .modal-slider {
                padding-bottom: 125%; /* 5:4 ratio */
            }

            .modal-slider-arrow {
                transform: translateY(-50%) scale(0.8);
            }
            
            .modal-slider-nav {
                bottom: 10px;
            }
            
            .modal-features {
                flex-direction: column;
                gap: 6px 12px;
            }

            .modal-feature {
                font-size: 0.85rem;     /* kecilkan teks */
            }

            .modal-title {
                font-size: 1.1rem;
            }
            
            .modal-actions {
                flex-direction: column;
                gap: 10px;
            }

            .modal-description {
                font-size: 14px;
                line-height: 1.4;
                max-height: 200px;
                padding: 5px;
                white-space: pre-line !important;
                line-height: 1.4 !important;
            }

            .modal-details {
                padding: 1rem;
            }
            
            .modal-price {
                font-size: 1.5rem;
            }

            .modal-promo-price, .modal-normal-price {
                font-size: 1.5rem; 
            }

            .modal-link, .modal-whatsapp {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .property-action {
                flex-direction: column;
            }

        }
        
        @media (max-width: 480px) {
            main {
                padding: 0 25px; /* Jarak tepi di HP (15px) */
            }
            
            header {
                padding: 0.8rem;
            }
            .logo {
                font-size: 1.5rem;
                max-width: none; /* Batasi lebar maksimum */
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            header nav ul {
                gap: 0.5rem;
                justify-content: space-around;
            }
            
            header nav a {
                font-size: 0.9rem;
                padding: 0.4rem 0.6rem;
            }

            .hero {
                height: 23vh; /* ⬅️ Kurangi lagi untuk HP yang sangat kecil ⬅️ */
                line-height: 1.0;
                padding: 20px 15px; /* Kurangi padding untuk tampilan lebih ringkas */
                margin-bottom: 20px;
            }

            .property-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .property-card {
                max-width: 100%;
                margin: 0 ;
                min-height: 350px;
            }
            
            .property-image {
                height: 140px !important;
                min-height: 140px;
            }
            
            .no-image {
                height: 140px !important;
                min-height: 140px;
            }
            
            .property-details {
                padding: 0.8rem;
            }
            
            .property-price {
                font-size: 1.1rem;
            }
            
            .property-features {
                gap: 0.8rem;
                margin-bottom: 0.8rem;
            }
            
            .feature {
                font-size: 0.75rem;
            }
            
            .property-action {
                flex-direction: column;
                gap: 8px;
            }
            
            .view-details-btn, .whatsapp-btn {
                width: 100%;
                justify-content: center;
                padding: 0.6rem;
            }

            .modal-description {
                font-size: 13px;
                max-height: 150px;
            }
            
            .modal-details {
                padding: 0.8rem;
            }
            
            .modal-price {
                font-size: 1.3rem;
            }

            .modal-promo-price, .modal-normal-price {
                font-size: 1.3rem; 
            }
            
            .modal-type {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }

            .modal-features {
                flex-direction: column;
                gap: 6px 12px;
            }

            .modal-feature {
                font-size: 0.85rem;     /* kecilkan teks */
            }

            .modal-title {
                font-size: 1.1rem;
            }
        }
    </style>
