/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #b8935a;
  --primary-dark: #9a7a47;
  --primary-light: #f2ede1;
  --accent: #c5a059;
  --text: #333;
  --text-muted: #555;
  --bg: #f9f7f2;
  --bg-dark: #1a2a3a;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --transition: 0.25s ease;
  --font: 'Heebo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

/* ===== LABELS ===== */
.label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.label--light {
  color: var(--white);
  background: rgba(255,255,255,0.2);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover { background: rgba(255,255,255,0.15); }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(26, 42, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
}
.nav__logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  margin-left: auto;
}
.nav__logo span { font-weight: 400; opacity: 0.8; font-size: 0.9rem; display: block; line-height: 1; }
.nav__links {
  display: flex;
  gap: 36px;
  margin-right: 60px;
  margin-left: 80px;
}
.nav__links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-dark);
  padding: 16px 24px;
}
.nav__mobile a {
  color: var(--white);
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav__mobile.open { display: flex; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('hero-bg.jpeg') center/cover no-repeat;
  padding: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,42,58,0.82) 0%, rgba(26,42,58,0.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.hero__tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 16px;
}
.hero__content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0.6;
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 3;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about { 
  background: var(--white); 
  margin-top: -120px;
  position: relative;
  z-index: 2;
  border-radius: 24px 24px 0 0;
  padding-top: 160px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text);
}
.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.about__features {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__features li {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.about__images {
  position: relative;
  height: 480px;
}
.about__img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about__img--main {
  width: 80%;
  height: 360px;
  position: absolute;
  top: 0;
  right: 0;
}
.about__img--secondary {
  width: 60%;
  height: 240px;
  position: absolute;
  bottom: 0;
  left: 0;
  border: 4px solid var(--white);
}

/* ===== RECEIPTS NOTE ===== */
.receipts-note {
  margin-top: 24px;
  padding: 16px;
  background: var(--primary-light);
  border-radius: 8px;
}
.receipts-note p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== AMENITIES ===== */
.amenities { padding: 80px 0; background: var(--primary-light); text-align: center; }
.amenities h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text);
}
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.amenity-item i { font-size: 1.8rem; color: var(--primary); }
.amenity-item span { font-weight: 600; font-size: 0.95rem; }

/* ===== OFFERS ===== */
.offers {
  background: var(--bg-dark);
  color: var(--white);
  text-align: center;
}
.offers h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 48px;
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: #34495e;
  border: 1px solid #34495e;
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
  color: var(--white);
}
.offer-card:hover { 
  transform: translateY(-8px) scale(1.05); 
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(197,160,89,0.3);
}
.offer-card--featured {
  background: #34495e;
  border-color: #34495e;
}
.offer-card--featured:hover { 
  background: var(--primary);
  border-color: var(--primary);
}
.offer-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}
.offer-card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.offer-card__icon i { color: inherit; }
.offer-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.offer-card p { opacity: 0.85; font-size: 0.95rem; margin-bottom: 24px; line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery { background: var(--bg); text-align: center; }
.gallery h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 40px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.gallery__grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery__grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.faq__container { max-width: 800px; margin: 40px auto 0; }
.faq__item { border-bottom: 1px solid #e8e8e8; }
.faq__question {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  gap: 16px;
}
.faq__question i { color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq__item.active .faq__question i { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq__answer p { color: var(--text-muted); line-height: 1.8; padding-bottom: 20px; }
.faq__item.active .faq__answer { max-height: 200px; }

/* ===== REVIEWS ===== */
.reviews {
  background: var(--primary-light);
  text-align: center;
}
.reviews h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--text);
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: right;
}
.review-card__stars { color: #f6ad55; font-size: 1.3rem; margin-bottom: 16px; }
.review-card p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.review-card__author { font-weight: 700; color: var(--primary); font-size: 0.9rem; }

/* ===== REVIEW FORM ===== */
.review-form {
  max-width: 600px;
  margin: 48px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: right;
}
.review-form h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  margin-bottom: 16px;
  direction: rtl;
  transition: border-color var(--transition);
}
.review-form input:focus,
.review-form textarea:focus { outline: none; border-color: var(--primary); }
.review-form__stars { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-weight: 600; }
.star-picker span { font-size: 1.8rem; color: #ddd; cursor: pointer; transition: color var(--transition); }
.star-picker span.active { color: #f6ad55; }
.review-form__note { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ===== ADMIN LOGIN ===== */
.admin-login {
  position: fixed;
  bottom: 10px;
  left: 100px;
  color: #888;
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.3;
  transition: opacity var(--transition);
  z-index: 200;
}
.admin-login:hover { 
  opacity: 0.7; 
  color: #666;
}
.admin-panel {
  max-width: 700px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary);
  text-align: right;
}
.admin-panel h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 24px; }
.pending-card {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}
.pending-card p { margin-bottom: 8px; color: var(--text-muted); }
.pending-card strong { color: var(--text); }
.pending-card__actions { display: flex; gap: 10px; margin-top: 12px; }
.btn--approve { background: var(--primary); color: var(--white); padding: 8px 18px; border-radius: 100px; font-weight: 700; border: none; cursor: pointer; font-family: var(--font); }
.btn--reject { background: #e53e3e; color: var(--white); padding: 8px 18px; border-radius: 100px; font-weight: 700; border: none; cursor: pointer; font-family: var(--font); }

/* ===== SUCCESS MESSAGE ===== */
.success-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: #27ae60;
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
  animation: slideInRight 0.5s ease;
  max-width: 400px;
}
.success-content {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.success-content i {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.success-content span {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}
.success-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}
.success-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .success-message {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid var(--primary);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  margin-bottom: 16px;
  direction: rtl;
  transition: border-color var(--transition);
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus { 
  outline: none; 
  border-color: var(--primary); 
}
.contact-form button {
  width: 100%;
}

/* ===== REVIEW FORM UPDATES ===== */
.review-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  margin-bottom: 16px;
  direction: rtl;
  transition: border-color var(--transition);
  background: white;
  box-sizing: border-box;
}
.review-form select:focus { 
  outline: none; 
  border-color: var(--primary); 
}

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.contact__info > p { color: var(--text-muted); margin-bottom: 32px; }
.contact__actions { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1.5px solid #e8e8e8;
  transition: all var(--transition);
}
.contact__link:hover { border-color: var(--primary); background: var(--primary-light); }
.contact__link-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact__link strong { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.contact__link span { font-size: 1rem; font-weight: 700; color: var(--text); }
.contact__nav-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.nav-btn:hover { background: var(--primary); transform: translateY(-2px); }
.nav-btn img { width: 20px; height: 20px; object-fit: contain; }
.contact__map {
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 48px 24px;
}
.footer__logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.footer p { margin-bottom: 8px; font-size: 0.9rem; }
.footer a { color: rgba(255,255,255,0.8); }
.footer a:hover { color: var(--white); }
.footer__copy { margin-top: 24px; font-size: 0.8rem; opacity: 0.5; }

/* ===== FLOATING WHATSAPP ===== */
.fab-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(197,160,89,0.5);
  z-index: 200;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(197,160,89,0.7); }
.fab-wa i { font-size: 1.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__inner { justify-content: space-between; }

  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__images { height: 300px; }
  .about__img--main { width: 90%; height: 260px; }
  .about__img--secondary { width: 55%; height: 180px; }

  .offers__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__grid img:first-child { grid-column: span 2; grid-row: span 1; height: 220px; }

  .contact__map { height: 300px; }
}

@media (max-width: 560px) {
  section { padding: 64px 0; }
  .hero__cta { flex-direction: column; align-items: center; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__grid img:first-child { grid-column: span 1; }
}
/* ===== SUITES ===== */
.suites { background: var(--bg); text-align: center; }
.suites h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 48px;
  color: var(--text);
}
.suites__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.suite-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  text-align: right;
}
.suite-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.suite-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 1;
}
.suite-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.suite-card__no-img {
  height: 200px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.suite-card__body {
  padding: 24px;
}
.suite-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.suite-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.suite-card ul {
  list-style: none;
  margin-bottom: 20px;
  text-align: right;
}
.suite-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text);
}
.suite-card li i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .suites__grid { grid-template-columns: 1fr; }
}
/* ===== ERROR MESSAGE ===== */
.error-message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: #e74c3c;
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
  animation: slideInRight 0.5s ease;
  max-width: 400px;
}

@media (max-width: 560px) {
  .error-message {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  cursor: default;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  font-weight: bold;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
}

/* הוספת cursor pointer לתמונות בגלריה */
.gallery__grid img {
  cursor: pointer;
}