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

body.simple-page {
  background-color: #f0f2f5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.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;
}

.profil-main {
  padding-top: 30px;
}

.profile-card.title-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 9px 10px 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.profile-card.title-section > div {
  max-width: 50%;
}

.profile-card.title-section h2#profileNameDisplay {
  font-size: 2rem;
  font-weight: 800;
  color: #e42121;
  margin-bottom: 5px;
}

.membership-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.membership-status,
.quota-status {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-left: 4px solid #e42121;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-weight: 600;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.membership-status i,
.quota-status i {
  color: #e42121;
  font-size: 1.1rem;
}

.membership-status:hover,
.quota-status:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(228, 33, 33, 0.15);
}

.membership-status.plus-active {
  background: #f4fff6;
  border-left-color: #1b5e20;
  color: #1b5e20;
}

.quota-status.plus-active {
  border-left-color: #1b5e20;
}

@media (max-width: 768px) {
  .membership-box {
    flex-direction: column;
    gap: 10px;
  }

  .membership-status,
  .quota-status {
    flex: 1 1 100%;
    font-size: 0.95rem;
    padding: 8px 12px;
  }
}

.profile-card.title-section .title-logo {
  height: 180px;
  object-fit: contain;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .profile-card.title-section {
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    padding: 15px 20px 20px 20px;
  }

  .profile-card.title-section > div {
    flex: 1 1 auto;
  }

  .profile-card.title-section .title-logo {
    height: auto;
    max-height: 120px;
    width: auto;
    flex-shrink: 0;
    margin-left: auto;
  }

  .profile-card.title-section #membershipStatus {
    font-size: 0.95rem;
  }

  .profile-card.title-section h2#profileNameDisplay {
    font-size: 2rem;
  }
}

.profile-details {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.section-title span {
  font-size: 1.8rem;
  color: #e42121;
  font-weight: bold;
}

.edit-profile-btn {
  background: none;
  border: none;
  color: #444;  
  font-size: 1.1rem;
  cursor: pointer;
}

.edit-profile-btn:hover {
  color: #000; 
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-label {
  font-size: 1rem;       
  font-weight: 600;
  color: #444;
  margin-right: 8px;
}

.info-value {
  font-size: 1.1rem;     
  color: #222;
}

.info-icon {
  color: #e42121;
  font-size: 1.2rem;
  width: 30px;
}

.info-item input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1.2rem;
  color: #0c0c0c;
  background-color: #f9f9f9;
}

.info-item input:read-only {
  background-color: transparent;
  border-color: transparent;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.button-group.hidden {
  display: none;
}

.save-profile-btn, .cancel-edit-btn {
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

#saveProfileBtn {
  background: #e42121;
  color: #fff;
  border: none;
}

#saveProfileBtn:hover {
  background: #c81c1c;
}

.cancel-edit-btn {
  background-color: #f0f0f0;
  color: #555;
  border: 1px solid #ccc;
}

.cancel-edit-btn:hover {
  background-color: #e0e0e0;
}

.hapus-akun-btn {
  width: 100%;
  background-color: #e42121;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 30px;
  margin-bottom: 30px;
}

.hapus-akun-btn:hover {
  background-color: #e02c22;
}

.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) {
  .main-footer .container,
  .footer-links {
    flex-direction: column;
    text-align: center;
  }
}

.profile-section {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-top: 30px;
}

.profile-section h2 {
  font-size: 1.8rem;
  color: #e42121;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.cafe-list-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

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

#bookmarkedCafesContainer .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;
}

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

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

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

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

#bookmarkedCafesContainer .cafe-card-header h3 {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

#bookmarkedCafesContainer .cafe-detail-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
}

#bookmarkedCafesContainer .cafe-detail-rating i {
  color: #FFC107;
}

.cafe-card {
  background: #fdfdfd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.cafe-card:hover {
  transform: translateY(-5px);
}

.cafe-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cafe-card-content {
  padding: 15px;
  flex-grow: 1;
}

.cafe-card-content h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 8px;
}

.cafe-card-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 4px;
}

.cafe-card-rating i {
  color: #FFC107;
  font-size: 1em;
  margin-right: 2px;
}
.rating-number {
  margin-left: 5px;
  color: #555;
  font-size: 0.9em;
}

#myReviewsContainer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.review-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-card-actions button {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 6px;
  font-size: 14px;
  color: #555;
}
.review-card-actions .btn-edit-review { color: #444; }
.review-card-actions .btn-edit-review:hover { color: #000; }
.review-card-actions .btn-delete-review { color: #e42121; }
.review-card-actions button:hover { opacity: 0.8; }

.review-card-rating {
  margin: 6px 0;
  color: #f4c542;
}

#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
}
.toast {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-size: 14px;
  animation: fadeInOut 4s ease forwards;
}
.toast.success { border-left: 6px solid #28a745; }
.toast.error { border-left: 6px solid #dc3545; }
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-20px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px); }
}

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal.hidden { display: none; }
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.modal-close {
  float: right;
  cursor: pointer;
  font-size: 20px;
}
.btn-save-review {
  background: #dc3545;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}
.btn-save-review:hover { opacity: 0.9; }
@media (max-width: 576px) {
  .reviews-grid {
    grid-template-columns: 1fr; 
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (min-width: 993px) and (max-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr); 
  }
}

@media (min-width: 1201px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr); 
  }
}

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000; 
  animation: fadeInBg 0.3s ease;
}

.modal.hidden { display: none; }

.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  position: relative;
  animation: slideDown 0.3s ease;
}

.modal-content h3 {
  margin-bottom: 15px;
  color: #e42121;
  font-size: 1.4rem;
  border-bottom: 2px solid #f5f5f5;
  padding-bottom: 8px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  cursor: pointer;
  font-size: 22px;
  color: #666;
  transition: color 0.2s ease;
}

.modal-close:hover { color: #000; }

#editReviewForm label {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #444;
}

#editReviewForm input,
#editReviewForm textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-save-review {
  background: #e42121;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-save-review:hover {
  background: #c91919;
}

@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.review-card {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.review-cafe-name {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.review-text {
    color: #555;
    font-size: 14px;
    margin-bottom: 8px;
}

.review-date {
    font-size: 12px;
    color: #888;
}

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
}

.modal-content {
  background: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-align: center;
  animation: fadeIn 0.25s ease;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 20px;
  color: #777;
  cursor: pointer;
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #333;
}

.modal-message {
  font-size: 15px;
  color: #000;
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  flex-direction: column;  
  align-items: center;
  gap: 12px;
}

.modal-actions button {
  width: 100%;
  max-width: 300px;        
  padding: 12px 0;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}

.btn-cancel {
  border: 1px solid #ccc;
  background: #f5f5f5;
  color: #333;
}
.btn-cancel:hover {
  background: #e5e5e5;
}

.btn-delete {
  border: none;
  background: #e74c3c;
  color: #fff;
}
.btn-delete:hover {
  background: #c0392b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.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.5em; }

  .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; }
}

.membership-section {
  margin-top: 25px;
  margin-bottom: 30px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.membership-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  justify-content: center;
}

.membership-status,
.quota-status {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fdfdfd;
  border: 1px solid #ededed;
  border-left: 6px solid #e42121;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.membership-status i,
.quota-status i {
  color: #e42121;
  font-size: 1.4rem;
  background: rgba(228, 33, 33, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.membership-status.plus-active,
.quota-status.plus-active {
  border-left-color: #1b5e20;
  background: #e6ffe8;
  color: #1b5e20;
  border-color: #d8ead9;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.1);
}

.membership-status.plus-active i,
.quota-status.plus-active i {
  color: #1b5e20;
  background: rgba(27, 94, 32, 0.1);
}

.membership-status:hover,
.quota-status:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
  cursor: default;
}

@media (max-width: 768px) {
  .membership-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .profile-card.title-section {
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .profile-card.title-section > div {
    flex: 1 1 auto;
    max-width: none;
  }

  .profile-card.title-section .title-logo {
    height: 120px;
    max-height: 120px;
    width: auto;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .profile-card.title-section h2#profileNameDisplay {
    font-size: 1.8rem;
  }

  .membership-status,
  .quota-status {
    padding: 14px 16px;
    font-size: 0.95rem;
    gap: 12px;
  }

  .membership-status i,
  .quota-status i {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
  }
}

.empty-state {
  text-align: center;
  margin: 40px auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.empty-state:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}

.empty-state-icon {
  width: 100px;
  height: auto;
  opacity: 0.85;
}

.empty-state-text {
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
}

.empty-state-btn {
  background-color: #e42121;
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.empty-state-btn:hover {
  background-color: #c51c1c;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .empty-state {
    padding: 30px 15px;
  }

  .empty-state-icon {
    width: 70px;
    height: 70px;
  }

  .empty-state-text {
    font-size: 0.95rem;
  }

  .empty-state-btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  #bookmarkedCafesContainer,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  #bookmarkedCafesContainer .cafe-card,
  .reviews-grid .review-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  #bookmarkedCafesContainer .cafe-card img,
  .reviews-grid .review-card img {
    height: 140px;
    object-fit: cover;
  }

  #bookmarkedCafesContainer .cafe-card-content h3,
  .reviews-grid .review-card strong {
    font-size: 0.9rem;
    font-weight: 600;
  }

  #bookmarkedCafesContainer .cafe-card-content p,
  .reviews-grid .review-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  #bookmarkedCafesContainer,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #bookmarkedCafesContainer .cafe-card img,
  .reviews-grid .review-card img {
    height: 120px;
  }

  #bookmarkedCafesContainer .cafe-card-content h3,
  .reviews-grid .review-card strong {
    font-size: 0.85rem;
  }
}

.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.verify-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff4e5;
  border: 1px solid #f5c17a;
  color: #8a5a00;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.verify-banner i {
  font-size: 1.2rem;
  color: #e67e22;
  flex-shrink: 0;
}

.verify-banner a {
  margin-left: auto;
  color: #e42121;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.verify-banner a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .verify-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    padding: 14px;
  }

  .verify-banner a {
    margin-left: 0;
    align-self: flex-start;
  }
}
