.radius-0 {
  border-radius: 0px !important;
}

.single-image-wrapper {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0e0e0e;
  padding: 1.5rem 0;
}

/* 1. Bottone "TORNA ALLA GALLERIA" */

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #000000;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.2rem;
  border: 1px solid #000000;
  background-color: #ffffff;
  transition: all 0.2s ease;
  margin-bottom: 2rem;
}

.btn-back:hover {
  background-color: #000000;
  color: #ffffff;
}

/* 2. Container Immagine con Sfondo Grigio Chiaro */

.image-preview-container {
  background-color: #f7f7f7;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.image-preview-container img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

/* 3. Colonna Destra - Titolo & Descrizione */

.image-info-col {
  padding-left: 1rem;
}

.image-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #0e0e0e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.image-description {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* 4. Box Metadati EXIF */

.exif-card {
  border: 1px solid #dcdcdc;
  padding: 1.5rem;
  background-color: #ffffff;
  margin-bottom: 2rem;
}

.exif-card-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111111;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.5rem;
}

.exif-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}

.exif-item {
  display: flex;
  flex-direction: column;
}

.exif-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.exif-header svg {
  width: 15px;
  height: 15px;
  color: #000000;
}

.exif-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #666666;
  letter-spacing: 0.05em;
}

.exif-value {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

/* 5. Box Licenza & Bottone Acquisto Diritti */

.purchase-card {
  border: 1px solid #dcdcdc;
  padding: 1.5rem;
  background-color: #ffffff;
}

.license-badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
}

.license-text {
  font-size: 0.85rem;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.license-text strong {
  color: #000000;
}

.btn-buy-rights {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  padding: 0.9rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 100%;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-buy-rights:hover {
  background-color: #ffffff;
  color: #000000;
}

@media (min-width: 366px) {
  .license-image {
    max-width: 128px;
  }
}

@media (max-width: 365px) {
  .license-image {
    max-width: 100px;
  }
}

@media (min-width: 1200px) {
  .w-xl-75 {
    width: 75%;
  }
}

