.arken-reticles {
  margin: 2em 0 1em;
}
.arken-reticles__title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 1em;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.4em;
  text-align: center;
}
.arken-reticles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2em;
}
@media (max-width: 600px) {
  .arken-reticles__grid { grid-template-columns: 1fr; }
}
.arken-reticles__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.arken-reticles__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arken-reticles__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.arken-reticles__btn {
  margin-top: 0.7em;
  padding: 14px 32px;
  background: #d1c18d;
  color: #202223;
  border: none;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
.arken-reticles__btn:hover { background: #b8a876; color: #202223; }

/* Modal */
.arken-reticles-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.arken-reticles-modal.is-open { display: flex; }
.arken-reticles-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  cursor: pointer;
}
.arken-reticles-modal__box {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arken-reticles-modal__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.arken-reticles-modal__close {
  position: absolute;
  top: -2.2em;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.arken-reticles-modal__close svg { display: block; }
