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

.dashboard-page .main-wrapper {
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.dashboard-main-content {
    padding: 30px 0 50px;
    flex-grow: 1;
    background-color: #f0f2f5;
    color: #333;
}

.dashboard-main-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dashboard-greeting {
    text-align: left;
    margin-bottom: 20px;
    padding: 20px;
    background-color: transparent;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dashboard-greeting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/background-dashboard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px); 
    -webkit-filter: blur(5px);
    z-index: -1;
    transform: scale(1.1);
}

.dashboard-greeting p {
    font-size: 1.5em;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.dashboard-greeting p:last-child {
    font-size: 1.1em;
    color: #ffffff;
}

.search-filter-section {
    background-color: transparent;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.search-filter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/background-dashboard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px); 
    -webkit-filter: blur(5px);
    z-index: -1;
    transform: scale(1.1);
}

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

.search-bar input[type="text"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 1em;
    outline: none;
}

.search-bar input[type="text"]::placeholder {
    color: #999;
}

.search-bar input[type="text"]:focus {
    border-color: #e42121;
    box-shadow: 0 0 5px rgba(228, 33, 33, 0.3);
}

.search-bar button {
    background-color: #e42121;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.search-bar button:hover {
    background-color: #d11a1a;
}

.filter-options {
    display: flex;
    align-items: center;
    gap: 15px;
}

.filter-options select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 0.95em;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.filter-options select option {
    background-color: #fff;
    color: #333;
}

.filter-options select:focus {
    border-color: #e42121;
    outline: none;
}

.filter-options select[disabled] {
    cursor: not-allowed;
    background-color: #f0f0f0;
    color: #999;
    border-color: #ccc;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23999" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
}

.facility-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.facility-filters label {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.9em;
    cursor: pointer;
}

.facility-filters input[type="checkbox"] {
    margin-right: 8px;
    accent-color: #e42121;
}

.cafe-section {
    margin-bottom: 40px;
}

.cafe-section h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 2px solid #e42121;
    padding-bottom: 10px;
}

.cafe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.cafe-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
}

.cafe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.cafe-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.cafe-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cafe-card-content {
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    padding: 15px; 
    flex-grow: 1; 
}

.cafe-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
    margin-bottom: 5px; 
}

.cafe-card-header h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.cafe-card-content p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px; 
}

.cafe-detail-rating {
    display: flex; 
    align-items: center; 
    gap: 5px; 
    margin-bottom: 15px; 
}

.cafe-detail-rating i {
    color: #FFC107; 
    font-size: 1em;
}

.bookmark-btn-dash {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.bookmark-btn-dash .fa-heart {
    font-size: 1.5rem;
    color: #e42121;
    transition: transform 0.2s ease;
}

.bookmark-btn-dash:hover .fa-heart {
    transform: scale(1.15);
}

.cafe-card .btn-detail {
    display: block;
    width: 100%;
    padding: 10px 15px;
    background-color: #e42121;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

.cafe-card .btn-detail:hover {
    background-color: #d11a1a;
}

.cafe-card .btn-detail.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 10px;
    width: 100%;
}

.page-btn {
    background-color: #e42121;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s, opacity 0.3s;
}

.page-btn:hover:not(:disabled) {
    background-color: #c91919;
}

.page-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.page-info {
    font-size: 1em;
    font-weight: 500;
    color: #555;
}

.dashboard-header {
    width: 100%;
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-header .logo a {
    font-size: 1.8em;
    font-weight: bold;
    color: #e42121;
    text-decoration: none;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e42121;
    font-size: 1.8em;
    font-weight: bold;
}
.logo-image {
    height: 40px; 
    margin-right: 10px; 
    position: relative;
    left: -5px; 
}

.profil-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.profil-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.profil-nav a:hover,
.profil-nav a.active-nav {
    color: #e42121;
}

.main-footer {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 40px 0;
    margin-top: auto;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
    align-items: flex-start;
}

.footer-left {
    flex: 2;
    min-width: 250px;
    text-align: left;
}

.footer-left h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #e42121;
    text-align: left;
}

.footer-left p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #ccc;
    text-align: left;
}

.footer-links {
    flex: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.footer-links div {
    flex: 1;
    min-width: 120px;
    text-align: left;
}

.footer-links h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: white;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #e42121;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-links ul li a:hover {
    color: #e42121;
}

.social-icon {
    margin-right: 8px;
    font-size: 1.2em;
}

.copyright {
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8em;
    color: #aaa;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .dashboard-header .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .dashboard-header .logo a {
        font-size: 1.5em;
    }

    .profil-nav ul {
        gap: 15px;
    }

    .profil-nav a {
        font-size: 0.9em;
    }

    .dashboard-greeting {
        padding: 15px;
    }

    .dashboard-greeting p {
        font-size: 1.2em;
    }

    .dashboard-greeting p:last-child {
        font-size: 0.9em;
    }

    .search-filter-section {
        flex-direction: column;
    }

    .filter-options {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-options select {
        width: 100%;
    }

    .facility-filters {
        flex-direction: column;
        gap: 10px;
    }

    .cafe-grid {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
    }

    .cafe-card {
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }

    .cafe-card-image {
        height: 130px;
    }

    .cafe-card-content {
        padding: 10px;
    }

    .cafe-card-content h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .cafe-card-content p {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .cafe-detail-rating span,
    .cafe-detail-rating small {
        display: none !important;
    }

    .cafe-card .btn-detail {
        font-size: 0.85rem;
        padding: 6px 10px;
        border-radius: 6px;
    }

    .main-footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-left,
    .footer-links {
        width: 100%;
        text-align: left;
    }

    .footer-links div {
        width: 100%;
        text-align: left;
    }

    .footer-links h4 {
        margin-left: 0;
        margin-right: auto;
        text-align: left;
    }

    .footer-links h4::after {
        left: 0;
        transform: none;
    }

    .footer-links ul li a {
        justify-content: flex-start;
    }

    .copyright {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .dashboard-header .logo a {
        font-size: 1.5em;
    }

    .profil-nav ul {
        gap: 10px;
    }

    .profil-nav a {
        font-size: 0.9em;
    }

    .cafe-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cafe-detail-rating span,
    .cafe-detail-rating small {
        display: none !important;
    }
}

.carousel-section {
  position: relative;
  margin: 30px 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.carousel-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)); 
  cursor: pointer;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

.carousel-dots {
  position: absolute;
  bottom: 15px;  
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.carousel-dots span {
  height: 10px;
  width: 10px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots span.active {
  background-color: #e42121;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  overflow: auto;
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  transition: transform 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}

.lightbox-content:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .carousel-image {
    height: 200px;
  }
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 6px;
    min-width: 220px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.toast.success {
    background: #2ecc71;
}

.toast.error {
    background: #e74c3c;
}

.toast.info {
    background: #3498db;
}

.toast.warning {
    background: #f39c12;
}

.tooltip-upgrade {
  position: absolute;
  background: #e42121;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%) translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
}
.tooltip-upgrade.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

#popup-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}
#popup-upgrade .popup-content {
  background: #fff;
  padding: 24px 28px;
  border-radius: 14px;
  text-align: center;
  max-width: 320px;
  width: 85%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  animation: scaleIn 0.25s ease;
}
#popup-upgrade .popup-content p {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}
#popup-upgrade .popup-content button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  background: #e42121;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}
#popup-upgrade .popup-content button:hover {
  background: #c21818;
}
@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.filter-toggle-btn {
  display: none;
  background-color: #e42121;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.filter-toggle-btn:hover {
  background-color: #c81d1d;
}

#filterOptions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: static;
  background: transparent;
  box-shadow: none;
}

#filterOptions .filter-actions {
  display: none;
}

@media (max-width: 768px) {
  .filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
  }

  #filterOptions {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 10000;
  }

  #filterOptions.active {
    display: flex;
  }

  @keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  #filterOptions .filter-content {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 16px; 
    box-shadow: 0 -6px 24px rgba(0,0,0,0.25);
    padding: 20px;
    display: flex;
    flex-direction: column;
    animation: scaleIn 0.3s ease-out;
  }

  #filterOptions h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #222;
  }

  #filterOptions select {
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #fafafa;
  }

  #filterOptions .facility-filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 12px 0;
  }

  #filterOptions #statusFilter {
    margin-left: 4px;  
    margin-right: 16px; 
  }

  #filterOptions .filter-button {
    margin-left: auto;
  }

  #filterOptions .filter-actions {
    display: flex !important;
    justify-content: space-between;
    margin-top: 18px;
    gap: 10px;
  }

  .btn-apply-filter,
  .btn-close-filter {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s ease-in-out;
  }

  .btn-apply-filter {
    background-color: #e42121;
    color: #fff;
  }

  .btn-apply-filter:hover {
    background-color: #c81d1d;
  }

  .btn-close-filter {
    background-color: #f1f1f1;
    color: #333;
  }

  .btn-close-filter:hover {
    background-color: #e1e1e1;
  }

  .cafe-detail-rating span,
  .cafe-detail-rating small {
    display: none !important;
  }

}

@media (min-width: 769px) {
  #filterOptions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding: 14px 6px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  }

  #filterOptions h3 {
    display: none;
  }

  #filterOptions select {
    height: 44px;
    width: 130px;
    padding: 0 36px 0 12px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.8) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'><path fill='%23666' d='M7 10l5 5 5-5z'/></svg>") no-repeat right 16px center;
    background-size: 14px;
    font-size: 0.95em;
    color: #222;
    flex-shrink: 0;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #filterOptions select:hover {
    border-color: #e42121;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(228,33,33,0.1);
  }

  #filterOptions select:focus {
    border-color: #e42121;
    box-shadow: 0 0 0 3px rgba(228,33,33,0.2);
    outline: none;
  }

  #filterOptions #cityFilter {
    margin-right: 12px;
    margin-left: 10px;
    width: 100px;
  }

  #filterOptions #nearbyFilter {
    margin-right: 4px;
    width: 90px;
  }

  .facility-filters {
    display: contents;
  }

  .facility-filters label {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    margin-right: 10px;
    font-size: 0.9em;
    color: #444;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 30px;
    background: rgba(255,255,255,0.8);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
  }

  .facility-filters label:hover {
    color: #e42121;
    border-color: #e42121;
    box-shadow: 0 3px 10px rgba(228,33,33,0.1);
    transform: translateY(-2px);
  }

  .facility-filters input[type="checkbox"] {
    display: none;
  }

  .facility-filters input[type="checkbox"]:checked + span,
  .facility-filters label:has(input:checked) {
    background: #e42121;
    color: #fff;
    border-color: #e42121;
    box-shadow: 0 4px 14px rgba(228,33,33,0.3);
    transform: scale(1.05);
  }

  #filterOptions .filter-actions {
    display: none;
  }
}

.hamburger-btn { display: none; }

@media (max-width: 768px) {
  .dashboard-header .header-container {
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    position: relative;
  }

  .logo-link { font-size: 1.4em; }

  .hamburger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #e42121;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
  }

  .hamburger-btn:active { transform: scale(0.98); }
  .hamburger-btn i { pointer-events: none; }

  .profil-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    min-width: 180px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    padding: 6px 0;
    z-index: 10002;
    overflow: hidden;
  }

  .profil-nav.active { display: block; animation: slideDown 180ms ease-out; }

  .profil-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .profil-nav ul li { margin: 0; }

  .profil-nav ul li a {
    display: block;
    padding: 10px 16px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
  }

  .profil-nav ul li a:hover {
    background: #fff5f5;
    color: #e42121;
  }

  .profil-nav ul li + li a { border-top: 1px solid rgba(0,0,0,0.06); }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

@media (min-width: 769px) {
  .profil-nav { position: static; display: block; box-shadow: none; background: transparent; padding: 0; }
  .profil-nav ul { display: flex; gap: 25px; align-items: center; }
  .hamburger-btn { display: none; }
}

.disabled-filters {
    opacity: 0.6;
    pointer-events: auto;
    user-select: none;
}

.upgrade-blocked-btn {
  opacity: 0.6;
  cursor: pointer;
  pointer-events: auto;
  filter: grayscale(30%);
}

.cafe-card.closed {
  opacity: 0.55;
  filter: grayscale(85%);
  position: relative;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.2s ease;
}

.cafe-card.closed:hover {
  transform: scale(1.01);
}

.cafe-card.closed .btn-detail {
  pointer-events: auto;
}

.cafe-card.closed::after {
  content: "TUTUP";
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(255, 0, 0, 0.85);
  color: #fff;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  animation: fadeInLabel 0.4s ease forwards;
}

.status-label {
  background: #444;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 8px;
}

#statusFilter {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
  padding: 8px 36px 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23333' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  margin-left: 8px;
  margin-right: 12px;
}

#statusFilter:hover {
  border-color: #aaa;
  background-color: #f9f9f9;
}

#statusFilter:focus {
  outline: none;
  border-color: #333;
  background-color: #fff;
}
