/* Supplementary styles for venue detail and profile pages */

/* One Cik button for venue creator actions */
.btn-one-cik {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
}

.btn-one-cik:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.5);
    opacity: 0.95;
    text-decoration: none;
    color: #fff !important;
}

.btn-one-cik:active {
    transform: translateY(0);
}

/* Tüm elemanlar için max-width ve overflow kontrolü eklendi */
* {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
}

.checkin-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.checkin-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkin-item-info {
  flex: 1;
}

.checkin-user {
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.checkin-user:hover {
  color: var(--primary);
}

.checkin-comment {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.checkin-photo-small {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  margin-top: 0.5rem;
  cursor: pointer;
}

.checkin-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.checkin-likes {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.profile-avatar-wrapper {
  position: relative;
  display: inline-block;
}

.edit-avatar-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: 3px solid var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.edit-avatar-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.file-upload-wrapper {
  margin-bottom: 1.5rem;
}

.file-upload-wrapper input[type="file"] {
  display: none;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  border: 2px dashed var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--light-gray);
}

.file-upload-label:hover {
  border-color: var(--primary);
  background: rgba(255, 107, 53, 0.05);
}

.file-upload-label svg {
  color: var(--gray);
}

.file-upload-label span {
  color: var(--gray);
  font-weight: 500;
}

#previewContainer,
#photoPreviewContainer {
  margin-top: 1rem;
  text-align: center;
}

#photoPreview,
#photoFilePreview {
  max-width: 100%;
  max-height: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section-header-modern h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: var(--dark);
}

.section-header-modern svg {
  color: var(--primary);
}

.empty-state-modern {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray);
}

.empty-state-modern svg {
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state-modern p {
  font-size: 1.125rem;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: var(--white);
  padding: 1rem 0.75rem 0.75rem;
  font-size: 0.875rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.gallery-item-modern:hover .gallery-caption {
  opacity: 1;
}

.delete-photo-btn-modern {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--error);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s;
}

.gallery-item-modern:hover .delete-photo-btn-modern {
  opacity: 1;
}

.delete-photo-btn-modern:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.delete-checkin-btn-modern {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--error);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.delete-checkin-btn-modern:hover {
  background: #dc2626;
  transform: scale(1.1);
}

.checkin-venue {
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.checkin-venue:hover {
  color: var(--primary);
}

.checkin-venue svg {
  color: var(--primary);
}

.checkin-location-text {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.checkin-meta-info {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  align-items: center;
}

.checkin-date,
.checkin-likes-count {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gray);
}

.checkin-date svg,
.checkin-likes-count svg {
  color: var(--primary);
}

.profile-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.profile-actions .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-actions-modern {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn-profile-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8125rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .btn-profile-action {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

.btn-profile-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-profile-action:active {
  transform: translateY(0);
}

.btn-profile-action svg {
  flex-shrink: 0;
}

.btn-message {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
  color: var(--white);
}

.btn-message:hover {
  background: linear-gradient(135deg, #ff5722 0%, var(--primary) 100%);
}

.btn-block {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: var(--white);
}

.btn-block:hover {
  background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
}

.btn-block.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.btn-block.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-friend {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
}

.btn-friend:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-friend.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.btn-friend.btn-danger:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.btn-friend.btn-secondary {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.btn-friend.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-primary-action {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
  color: var(--white);
}

.btn-primary-action:hover {
  background: linear-gradient(135deg, #ff5722 0%, var(--primary) 100%);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.clickable-image {
  cursor: pointer;
  transition: transform 0.2s;
}

.clickable-image:hover {
  transform: scale(1.02);
}

/* Venue detail sayfası için mobil responsive düzenlemeler */
.venue-detail {
  width: 100%;
  overflow-x: hidden;
}

.venue-hero-parallax {
  width: 100%;
  max-width: 100vw;
}

.venue-body {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Updated venue content grid - now only for info and reviews columns */
.venue-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .venue-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .venue-body {
    padding: 0 2rem;
  }
}

/* New full-width section for check-ins below the two-column layout */
.venue-checkins-section-fullwidth {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .venue-checkins-section-fullwidth {
    padding: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .venue-checkins-section-fullwidth {
    padding: 3rem 2.5rem;
  }
}

/* Stats grid mobil uyumlu */
.venue-stats-modern {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.5rem 1rem;
  /* updated margin-top to -42px as requested */
  margin-top: -42px;
}

@media (min-width: 640px) {
  .venue-stats-modern {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .venue-stats-modern {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    /* removed margin-top as requested */
  }
}

/* Venue title mobil için küçültüldü */
.venue-title {
  font-size: 2rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .venue-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .venue-title {
    font-size: 3.5rem;
  }
}

/* Creator card mobil uyumlu */
.venue-creator-card {
  padding: 1rem;
}

.creator-info {
  flex-wrap: wrap;
}

.creator-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
}

.creator-actions .btn,
.creator-actions .btn-one-cik {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  padding: 0.625rem 0.5rem;
  text-align: center;
  white-space: nowrap;
  border-radius: 8px;
}

@media (min-width: 480px) {
  .creator-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .creator-actions .btn,
  .creator-actions .btn-one-cik {
    flex: 0 0 auto;
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (min-width: 640px) {
  .venue-creator-card {
    padding: 1.5rem;
  }

  .creator-actions .btn,
  .creator-actions .btn-one-cik {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}

/* Info blocks mobil uyumlu */
.info-block {
  padding: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .info-block {
    padding: 1.5rem;
  }
}

/* Photos grid mobil uyumlu */
.venue-photos-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .venue-photos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .venue-photos-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

/* Venue photo wrapper ve delete button stilleri eklendi */
.venue-photo-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light-gray);
}

.delete-photo-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--error);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s;
  z-index: 10;
}

.venue-photo-wrapper:hover .delete-photo-btn {
  opacity: 1;
}

.delete-photo-btn:hover {
  background: #dc2626;
  transform: scale(1.1);
}

/* Venue checkins header stilleri eklendi */
/* Checkins section mobil uyumlu */
.venue-checkins-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .venue-checkins-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
}

.venue-checkins-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

@media (min-width: 640px) {
  .venue-checkins-header h3 {
    font-size: 1.5rem;
  }
}

.checkins-count-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 640px) {
  .checkins-count-badge {
    font-size: 0.875rem;
  }
}

.empty-state-card {
  background: var(--light-gray);
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state-card p {
  color: var(--gray);
  margin: 0.5rem 0;
}

.empty-subtitle {
  font-size: 0.875rem;
  color: var(--gray);
  opacity: 0.8;
}

/* Checkins section mobil uyumlu */
.checkins-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .checkins-feed {
    gap: 1.5rem;
  }
}

.checkin-card-modern {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  width: 100%;
}

/* Loading indicator styles for infinite scroll */
.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-indicator p {
  color: var(--gray);
  font-size: 0.875rem;
  margin: 0;
}

.no-more-message {
  text-align: center;
  padding: 2rem;
  color: var(--gray);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.no-more-message p {
  margin: 0;
}

/* Comprehensive styles for reviews and ratings section */

/* Reviews section tam mobil uyumlu hale getirildi */
.venue-reviews-section {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 640px) {
  .venue-reviews-section {
    border-radius: 16px;
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .venue-reviews-section {
    padding: 2rem;
    margin-bottom: 0;
  }
}

/* Reviews Header */
.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

@media (min-width: 640px) {
  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
}

.reviews-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

@media (min-width: 640px) {
  .reviews-header h3 {
    font-size: 1.5rem;
  }
}

/* Reviews Summary */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  width: 100%;
}

@media (min-width: 640px) {
  .reviews-summary {
    gap: 1rem;
    padding: 1rem 1.5rem;
    width: auto;
  }
}

.avg-rating-large {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

@media (min-width: 640px) {
  .avg-rating-large {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .avg-rating-large {
    font-size: 3rem;
  }
}

.rating-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .rating-details {
    gap: 0.5rem;
  }
}

.stars-display {
  display: flex;
  gap: 0.125rem;
}

@media (min-width: 640px) {
  .stars-display {
    gap: 0.25rem;
  }
}

.stars-display .star {
  font-size: 1rem;
  opacity: 0.3;
  transition: opacity 0.2s;
}

@media (min-width: 640px) {
  .stars-display .star {
    font-size: 1.25rem;
  }
}

.stars-display .star.filled {
  opacity: 1;
}

.review-count-text {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

@media (min-width: 640px) {
  .review-count-text {
    font-size: 0.875rem;
  }
}

/* Add Review Card */
.add-review-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 640px) {
  .add-review-card {
    border-radius: 16px;
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .add-review-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .review-card-header {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
}

.review-user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .review-user-avatar {
    width: 48px;
    height: 48px;
  }
}

.review-card-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.125rem 0;
}

@media (min-width: 640px) {
  .review-card-header h4 {
    font-size: 1.125rem;
    margin: 0 0 0.25rem 0;
  }
}

.review-card-subtitle {
  font-size: 0.8125rem;
  color: var(--gray);
  margin: 0;
}

@media (min-width: 640px) {
  .review-card-subtitle {
    font-size: 0.875rem;
  }
}

/* Rating Input */
.rating-input-group {
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .rating-input-group {
    margin-bottom: 1.5rem;
  }
}

.rating-label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .rating-label {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
  }
}

.star-rating-clickable {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .star-rating-clickable {
    gap: 0.5rem;
  }
}

.star-clickable {
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.3;
  transition: all 0.2s;
  user-select: none;
}

@media (min-width: 640px) {
  .star-clickable {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .star-clickable {
    font-size: 2rem;
  }
}

.star-clickable.filled {
  opacity: 1;
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .star-clickable.filled {
    transform: scale(1.1);
  }
}

.star-clickable.hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.star-clickable:hover {
  transform: scale(1.1);
}

@media (min-width: 640px) {
  .star-clickable:hover {
    transform: scale(1.15);
  }
}

.rating-hint {
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
}

@media (min-width: 640px) {
  .rating-hint {
    font-size: 0.8125rem;
  }
}

/* Comment Form */
.review-form-modern {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .review-form-modern {
    gap: 1rem;
  }
}

.comment-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comment-label {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.875rem;
}

/* Eksik kalan @media kuralı ve comment-textarea stilleri tamamlandı */
@media (min-width: 640px) {
  .comment-label {
    font-size: 0.9375rem;
  }
}

.comment-textarea {
  width: 100%;
  min-height: 100px;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  resize: vertical;
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .comment-textarea {
    min-height: 120px;
    padding: 1rem;
    font-size: 0.9375rem;
  }
}

.comment-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Submit Button */
.btn-submit-review {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .btn-submit-review {
    width: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-submit-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-submit-review:active {
  transform: translateY(0);
}

/* Login Prompt */
.login-prompt-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .login-prompt-card {
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

.login-prompt-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.9375rem;
}

@media (min-width: 640px) {
  .login-prompt-card p {
    font-size: 1rem;
  }
}

.login-prompt-card a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.login-prompt-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .reviews-list {
    gap: 1.5rem;
  }
}

.review-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.2s;
}

@media (min-width: 640px) {
  .review-item {
    padding: 1.5rem;
  }
}

.review-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .review-header {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .review-avatar {
    width: 48px;
    height: 48px;
  }
}

.review-user-info {
  flex: 1;
}

.review-user {
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.9375rem;
}

@media (min-width: 640px) {
  .review-user {
    font-size: 1rem;
  }
}

.review-user:hover {
  color: var(--primary);
}

.review-time {
  font-size: 0.75rem;
  color: var(--gray);
  display: block;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .review-time {
    font-size: 0.8125rem;
  }
}

.review-comment {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.875rem;
  word-break: break-word;
}

@media (min-width: 640px) {
  .review-comment {
    font-size: 0.9375rem;
  }
}

/* Modern Info Cards */
.info-card-modern {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
  .info-card-modern {
    padding: 1.5rem;
  }
}

.info-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Çalışma saatleri için özel padding ayarı */
.info-card-modern #openingHoursDisplay {
  margin: 0;
  padding: 0;
}

/* Çalışma Saatleri Stilleri - opening-hours-component.css'ten kopyalandı */
.opening-hours-section {
  margin: 20px 0;
}

.opening-hours-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.opening-hours-icon {
  font-size: 24px;
}

.opening-hours-title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.opening-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opening-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f9fafb;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.opening-hour-row:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateX(2px);
}

/* Bugün vurgusu - turuncu gradient, kalın kenarlık, gölge */
.opening-hour-row.today {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
  border: 2px solid #ff6b35;
  border-left: 5px solid #ff6b35;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  transform: none;
  padding-left: 18px;
}

.opening-hour-row.today:hover {
  background: linear-gradient(135deg, #ffede3 0%, #ffd9c7 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px) translateX(2px);
}

.opening-hour-day {
  font-weight: 500;
  color: #374151;
  font-size: 15px;
  min-width: 100px;
}

.opening-hour-day.today {
  color: #ff6b35;
  font-weight: 700;
  font-size: 16px;
}

.opening-hour-time {
  color: #6b7280;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.opening-hour-time.closed {
  color: #ef4444;
  font-weight: 600;
}

.opening-hour-time.open-24h {
  color: #10b981;
  font-weight: 600;
}

.opening-hour-time.today {
  color: #ff5722;
  font-weight: 700;
  font-size: 16px;
}

.info-card-modern .opening-hours-list .opening-hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f9fafb !important;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
}

.info-card-modern .opening-hours-list .opening-hour-row.today {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%) !important;
  border: 2px solid #ff6b35;
  border-left: 5px solid #ff6b35;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.info-card-modern .opening-hours-list .opening-hour-day.today {
  color: #ff6b35 !important;
  font-weight: 700 !important;
  font-size: 16px;
}

.info-card-modern .opening-hours-list .opening-hour-time.today {
  color: #ff5722 !important;
  font-weight: 700 !important;
}

.opening-hours-editor {
  margin: 20px 0;
}

.day-editor {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}

.day-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.day-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 15px;
}

.day-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.day-checkbox-group {
  display: flex;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  cursor: pointer;
}

.time-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
}

.time-input-group {
  flex: 1;
}

.time-input-group label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.time-input-group input[type="time"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #1f2937;
}

.time-separator {
  color: #9ca3af;
  font-weight: 600;
  padding-top: 20px;
}

.day-editor.disabled {
  opacity: 0.5;
}

.day-editor.disabled .time-inputs {
  pointer-events: none;
}

.opening-hours-modal {
  background: white;
  padding: 0;
}

.opening-hours-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.opening-hours-modal-body {
  padding: 20px;
  max-height: 600px;
  overflow-y: auto;
}

.opening-hours-modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 20px;
  border-top: 1px solid #e5e7eb;
}

.btn-hours-cancel {
  flex: 1;
  padding: 12px;
  border: 1px solid #d1d5db;
  background: white;
  color: #374151;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hours-cancel:hover {
  background: #f3f4f6;
}

.btn-hours-save {
  flex: 1;
  padding: 12px;
  border: none;
  background: #ff6b35;
  color: white;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-hours-save:hover {
  background: #ff5722;
}

.edit-hours-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.edit-hours-btn:hover {
  background: #ff5722;
}

.edit-hours-btn svg {
  width: 16px;
  height: 16px;
}

.info-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .info-card-icon {
    width: 48px;
    height: 48px;
  }
}

.info-card-content {
  flex: 1;
}

.info-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.5rem 0;
}

@media (min-width: 640px) {
  .info-card-title {
    font-size: 1.125rem;
  }
}

.info-card-text {
  color: var(--gray);
  line-height: 1.6;
  font-size: 0.875rem;
  margin: 0;
}

@media (min-width: 640px) {
  .info-card-text {
    font-size: 0.9375rem;
  }
}

.info-card-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.info-card-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.info-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .info-card-grid {
    gap: 1.5rem;
  }
}

/* Map Card */
.map-card-modern {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.map-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 2px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
}

@media (min-width: 640px) {
  .map-card-header {
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
}

.map-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .map-card-icon {
    width: 48px;
    height: 48px;
  }
}

.map-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

@media (min-width: 640px) {
  .map-card-title {
    font-size: 1.125rem;
  }
}

.map-container-modern {
  width: 100%;
  height: 250px;
  background: var(--light-gray);
  position: relative;
}

@media (min-width: 640px) {
  .map-container-modern {
    height: 300px;
  }
}

#venue-map {
  width: 100%;
  height: 100%;
}

.btn-get-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .btn-get-directions {
    padding: 1rem 1.125rem;
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .btn-get-directions {
    padding: 1.125rem;
    font-size: 1rem;
  }
}

.btn-get-directions:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #d94a1f 100%);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-get-directions svg {
  flex-shrink: 0;
}

/* Modern Photos Gallery */
.photos-gallery-modern {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.photos-gallery-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.gallery-header-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 2px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.02) 100%);
}

@media (min-width: 640px) {
  .gallery-header-modern {
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
}

.gallery-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .gallery-header-icon {
    width: 48px;
    height: 48px;
  }
}

.gallery-title-modern {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  flex: 1;
}

@media (min-width: 640px) {
  .gallery-title-modern {
    font-size: 1.125rem;
  }
}

.gallery-count-badge {
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .gallery-count-badge {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
  }
}

.photos-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 1rem;
}

@media (min-width: 640px) {
  .photos-grid-modern {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .photos-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
  }
}

.photo-item-modern {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light-gray);
  cursor: pointer;
  transition: all 0.2s;
}

.photo-item-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-img-modern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0.75rem;
  gap: 0.5rem;
}

.photo-item-modern:hover .photo-overlay-modern {
  opacity: 1;
}

.photo-view-btn {
  flex: 1;
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--white);
  color: var(--dark);
}

.photo-view-btn:hover {
  background: var(--light-gray);
}

.photo-delete-btn-modern {
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--error);
  color: var(--white);
}

.photo-delete-btn-modern:hover {
  background: #dc2626;
}

/* Venue action bar - mobilde butonlar küçültüldü */
.venue-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .venue-actions {
    gap: 0.75rem;
  }
}

.venue-actions .btn {
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .venue-actions .btn {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
}

@media (min-width: 768px) {
  .venue-actions .btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
  }
}

.empty-state {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--gray);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .empty-state {
    padding: 3rem 2rem;
    font-size: 1rem;
  }
}

/* =====================================================
   MEMBERS-ONLY BLUR OVERLAY — Estetik Kilit Sistemi
   ===================================================== */

/* Ana sarmalayıcı: blur içerik + overlay üst üste */
.members-only-section {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  height: 508px;
}

/* Arkada görünen bulanık içerik */
.blurred-content {
  filter: blur(7px);
  user-select: none;
  pointer-events: none;
  opacity: 0.55;
  transform: scale(1.01); /* kenar beyazlığını gizle */
}

/* Overlay: frosted-glass efekti */
.members-only-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  /* Yarı şeffaf beyaz cam efekti */
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 247, 242, 0.88) 60%,
    rgba(255, 235, 220, 0.92) 100%
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Overlay içindeki kart */
.members-only-content {
  background: #ffffff;
  border: 1.5px solid rgba(255, 107, 53, 0.18);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 360px;
  width: 100%;
  box-shadow:
    0 4px 24px rgba(255, 107, 53, 0.10),
    0 1px 4px rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
  .members-only-content {
    padding: 2.5rem 2rem;
  }
}

/* Kilit ikonu halkası */
.members-only-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.members-only-icon-ring svg {
  color: #ffffff;
  flex-shrink: 0;
}

/* Eski emoji ikonunu da destekle */
.members-only-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

/* Başlık */
.members-only-content h4 {
  font-size: 1.125rem;
  font-weight: 800;
  color: #111827;
  margin: 0 0 0.625rem 0;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .members-only-content h4 {
    font-size: 1.25rem;
  }
}

/* Alt açıklama metni */
.members-only-content p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

@media (min-width: 640px) {
  .members-only-content p {
    font-size: 0.9375rem;
  }
}

/* Sayaç rozeti — "X yorum sizi bekliyor" */
.members-only-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.22);
  color: #ff6b35;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* Buton grubu */
.members-only-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media (min-width: 400px) {
  .members-only-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Ana CTA butonu */
.btn-register-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.375rem;
  background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-register-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
  background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
}

.btn-register-now:active {
  transform: translateY(0);
}

/* İkincil giriş yap linki */
.btn-login-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.375rem;
  background: transparent;
  color: #374151;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1.5px solid #e5e7eb;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-login-link:hover {
  border-color: #ff6b35;
  color: #ff6b35;
  background: rgba(255, 107, 53, 0.04);
}

/* Check-in bölümü için özel ayar: biraz daha yüksek */
.members-only-checkins .members-only-content {
  max-width: 400px;
}

/* Küçük ekranlarda overlay içeriği daha dar padding */
@media (max-width: 400px) {
  .members-only-content {
    padding: 1.5rem 1rem;
  }
  .members-only-buttons {
    flex-direction: column;
  }
  .btn-register-now,
  .btn-login-link {
    width: 100%;
  }
}
