/* --- extracted style block 1 from bookmark.php --- */
    /* Keep all existing CSS */
    ::-webkit-scrollbar { display: none; }
    html { scrollbar-width: none; }
    body { -ms-overflow-style: none; font-family: 'Nunito', system-ui; background:#fff; color: #333; padding-bottom: 70px; max-width: 1200px; margin: 0 auto; box-shadow: 0 0 20px rgba(0,0,0,0.05); }
    :root { --primary: #c62828; --primary-dark: #8e0000; --primary-light: #ff5f52; --secondary: #1565c0; --muted: #f1f4f6; --card-bg: #eef0f3; --dark-text: #333; --light-text: #666; --white: #fff; --shadow: 0 4px 12px rgba(0,0,0,0.08); --transition: all 0.3s ease; }
    a{ all: unset; cursor: pointer; }
    .site-header { background: var(--white); border-bottom: 1px solid #eee; padding: 12px 20px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
    .brand { font-family: 'Montserrat'; font-weight: 700; color: var(--primary); letter-spacing: 2px; font-size: 1.4rem; }
    .nav-icon { font-size: 1.2rem; color: #444; position: relative; }
    .btn-post-property { background: var(--primary); color: white; border-radius: 30px; padding: 8px 16px; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
    .btn-post-property:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(198, 40, 40, 0.3); }
    .search-container { padding: 12px 20px; background: var(--muted); border-bottom: 1px solid #e5e5e5; }
    .search-bar { background: white; border-radius: 50px; padding: 8px 20px; box-shadow: var(--shadow); border: 1px solid #e0e0e0; display: flex; align-items: center; }
    .search-input { border: none; outline: none; flex: 1; padding: 6px 0; }
    .search-input::placeholder { color: #999; }
    .location-filter { display: flex; align-items: center; background: var(--primary-light); color: white; padding: 6px 12px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-left: 10px; cursor: pointer; transition: var(--transition); }
    .location-filter:hover { background: var(--primary); }
    .bookmark-container { padding: 15px; }
    .bookmark-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .bookmark-title { font-weight: 800; color: var(--dark-text); margin: 0; }
    .bookmark-tabs { display: flex; border-bottom: 1px solid #eee; margin-bottom: 20px; }
    .bookmark-tab { padding: 10px 15px; font-weight: 600; cursor: pointer; border-bottom: 3px solid transparent; transition: var(--transition); }
    .bookmark-tab.active { border-bottom: 3px solid var(--primary); color: var(--primary); }
    .property-card { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: white; transition: var(--transition); margin-bottom: 20px; }
    .property-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(0,0,0,0.15); }
    .property-image { height: 200px; background-size: cover; background-position: center; position: relative; }
    .property-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .property-badge { position: absolute; top: 15px; left: 15px; background: var(--primary); color: white; padding: 5px 12px; border-radius: 30px; font-size: 0.75rem; font-weight: 700; }
    .property-content { padding: 15px; }
    .property-price { font-weight: 800; color: var(--primary); font-size: 1.2rem; margin-bottom: 5px; }
    .property-title { font-weight: 700; margin-bottom: 8px; font-size: 1rem; line-height: 1.3; }
    .property-address { color: var(--light-text); font-size: 0.9rem; margin-bottom: 10px; }
    .property-details { display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 12px; color: var(--light-text); font-size: 0.85rem; }
    .property-actions { display: flex; justify-content: space-between; margin-top: 15px; }
    .btn-action { background: none; border: 1px solid #ddd; border-radius: 8px; padding: 8px 15px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 5px; }
    .btn-action:hover { background: var(--muted); }
    .btn-remove { color: var(--primary); border-color: var(--primary-light); }
    .btn-remove:hover { background: #ffebee; }
    .btn-contact { background: var(--primary); color: white; border-color: var(--primary); }
    .btn-contact:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
    .empty-bookmarks { text-align: center; padding: 60px 20px; color: var(--light-text); }
    .empty-bookmarks i { font-size: 4rem; color: #ddd; margin-bottom: 20px; }
    .empty-bookmarks h5 { margin-bottom: 10px; color: var(--dark-text); }
    .btn-explore { background: var(--primary); color: white; border: none; border-radius: 30px; padding: 10px 25px; font-weight: 700; transition: var(--transition); }
    .btn-explore:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 4px 8px rgba(198, 40, 40, 0.3); }
    @media (max-width: 576px) { .brand { font-size: 1.4rem; } .btn-post-property { padding: 8px 15px; font-size: 0.8rem; } .bookmark-tabs { overflow-x: auto; white-space: nowrap; } .bookmark-tab { flex-shrink: 0; } .property-actions { flex-direction: column; gap: 10px; } .btn-action { width: 100%; justify-content: center; } }
    @media (min-width: 768px) { .property-card { display: flex; height: 200px; } .property-image { width: 300px; height: auto; flex-shrink: 0; } .property-content { flex: 1; display: flex; flex-direction: column; } .property-actions { margin-top: auto; } }
  
