/* =================================
   PROPERTI DETAIL PAGE STYLES
   ================================= */

body {
  background-color: var(--grey-light);
}
a {
  color: #444;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-detail {
  padding-top: 120px; /* Space for fixed header */
  padding-bottom: 4.5rem;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 14px;
  color: var(--grey-dark);
}
.breadcrumbs a {
  color: var(--blue-primary);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .fa-chevron-right {
  font-size: 10px;
  margin: 0 12px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 2rem;
  height: 450px;
}

.gallery-main,
.gallery-side {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-main:hover img {
  transform: scale(1.05);
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
}

.gallery-side img,
.video-grid,
.view-all-grid,
.placeholder-grid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.gallery-side img {
  transition: transform 0.3s ease;
}

.gallery-side img:hover {
  transform: scale(1.05);
}

.video-grid {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s ease;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--yellow-accent);
}

.video-overlay span {
  font-size: 0.9rem;
  font-weight: 600;
}

.view-all-grid {
  position: relative;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.3s ease;
  cursor: pointer;
}

.gallery-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
}

.gallery-overlay i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--yellow-accent);
}

.gallery-overlay span {
  font-size: 1.2rem;
  font-weight: 700;
}

.placeholder-grid {
  background: var(--grey-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--grey-dark);
  cursor: default;
}

.placeholder-grid i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.placeholder-grid span {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.detail-content {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-medium);
  box-shadow: var(--shadow-soft);
}
.detail-sidebar {
  position: sticky;
  top: 120px;
}

/* Detail Header */
.detail-header .property-type {
  background-color: var(--yellow-accent);
  color: var(--text-primary);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 12px;
}
.detail-header h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}
.detail-header a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.detail-header a:hover > p.location {
  color: var(--yellow-accent);
}
.detail-header p.location {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.detail-header .price {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-medium);
}
.detail-header .price h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-primary);
  display: inline-block;
  margin-right: 8px;
}
.share-bookmark button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
  margin-right: 16px;
}
.share-bookmark button i {
  margin-right: 8px;
}

/* Detail Section */
.detail-section {
  margin-top: 32px;
}
.detail-section h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow-accent);
  display: inline-block;
}
.property-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.property-tags span {
  background: var(--white);
  border: 1px solid var(--grey-medium);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Spec Grid */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.spec-item i {
  font-size: 24px;
  color: var(--green-primary);
  width: 30px;
  text-align: center;
}
.spec-item span {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
}
.spec-item strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.location-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 300px;
}
.location-map .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Sidebar */
.agent-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid var(--grey-medium);
}
.agent-card > p {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 14px;
}
.agent-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  margin: 16px 0;
}
.agent-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-primary);
}
.agent-profile h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}
.agent-card .btn {
  width: 100%;
  margin-top: 12px;
}
.agent-card .btn-outline {
  border-color: var(--grey-medium);
  background-color: var(--white);
  color: var(--text-primary);
}
.agent-card .btn-outline:hover {
  border-color: var(--blue-primary);
  background-color: var(--blue-primary);
  color: var(--white);
}

.disclaimer-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-medium);
  padding: 12px 20px;
  margin-top: 16px;
  font-size: 14px;
}
.disclaimer-box summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.disclaimer-box summary::-webkit-details-marker {
  display: none;
}
.disclaimer-box summary .fa-chevron-down {
  transition: var(--transition);
}
.disclaimer-box details[open] summary .fa-chevron-down {
  transform: rotate(180deg);
}
.disclaimer-box p {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--grey-medium);
  color: var(--text-secondary);
  line-height: 1.6;
}
.report-link {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: var(--grey-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.report-link:hover {
  text-decoration: underline;
  color: var(--green-primary);
}

/* Related Properties */
.related-properties {
  margin-top: 4rem;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--grey-light) 0%, #f0f4f8 100%);
}

.related-properties .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.related-properties h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--green-primary);
  font-weight: 700;
}

.related-properties p {
  color: var(--grey-dark);
  font-size: 1.1rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Limit card width when there are few items */
.related-grid .rec-card {
  max-width: 400px;
  margin: 0 auto;
}

/* Responsive for related properties */
@media (min-width: 769px) {
  .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .related-grid .rec-card {
    max-width: none;
  }
}

.related-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--grey-medium);
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(41, 84, 58, 0.15);
  text-decoration: none;
  color: inherit;
  border-color: var(--yellow-accent);
}

.related-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card:hover img {
  transform: scale(1.1);
}

.property-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--blue-primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.related-info {
  padding: 1.5rem;
}

.related-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 0;
}

.related-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-location {
  color: var(--grey-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.related-location i {
  color: var(--yellow-accent);
}

.related-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--grey-dark);
  padding-top: 1rem;
  border-top: 1px solid var(--grey-medium);
}

.related-specs span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.related-specs i {
  color: var(--green-primary);
}

/* KPR Simulation Section */
.kpr-simulation-section {
  background: linear-gradient(135deg, #f8fffe 0%, #f0f8f5 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.kpr-simulation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.kpr-simulation-header h2 {
  color: var(--blue-primary);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.kpr-simulation-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.kpr-simulation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.kpr-form-detail {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  height: fit-content;
}

.kpr-result-detail {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--blue-primary);
}

.kpr-form-detail .form-section h3 {
  color: var(--blue-primary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--grey-light);
  font-weight: 600;
}

.kpr-form-detail .form-group {
  margin-bottom: 1.5rem;
}

.kpr-form-detail .form-group label {
  display: block;
  color: var(--blue-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.kpr-form-detail .form-group input, 
.kpr-form-detail .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--grey-medium);
  border-radius: var(--radius);
  font-size: 16px;
  transition: var(--transition);
  box-sizing: border-box;
}

.kpr-form-detail .form-group input:focus, 
.kpr-form-detail .form-group select:focus {
  outline: none;
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.kpr-form-detail .form-group input[readonly] {
  background-color: var(--grey-light);
  color: var(--text-secondary);
}

.kpr-form-detail .input-group {
  position: relative;
}

.kpr-form-detail .input-prefix {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-dark);
  font-weight: 600;
}

.kpr-form-detail .input-group input {
  padding-left: 45px;
}

.kpr-form-detail .input-suffix {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-dark);
  font-weight: 600;
}

.kpr-form-detail .input-group.suffix input {
  padding-right: 45px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  font-style: italic;
}

.btn-calculate-detail {
  width: 100%;
  background: var(--blue-primary);
  color: white;
  border: none;
  padding: 15px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.btn-calculate-detail:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.kpr-result-detail .result-section h3 {
  color: var(--blue-primary);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.kpr-result-detail .result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-light);
}

.kpr-result-detail .result-item:last-child {
  border-bottom: none;
}

.kpr-result-detail .result-item.highlight-result {
  background: var(--yellow-light);
  margin: 0 -1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--yellow-accent);
}

.kpr-result-detail .result-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.kpr-result-detail .result-value {
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.kpr-result-detail .result-value.highlight {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 800;
}

.kpr-actions {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.kpr-actions .btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.kpr-result-detail .info-box {
  background: var(--blue-light);
  border: 1px solid var(--blue-primary);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1.5rem;
}

.kpr-result-detail .info-box h4 {
  color: var(--blue-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.kpr-result-detail .info-box p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive for related properties */
@media (min-width: 769px) {
  .related-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 400px));
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .related-grid .rec-card {
    max-width: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .kpr-simulation-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .kpr-actions {
    flex-direction: column;
  }
  
  .kpr-simulation-header h2 {
    font-size: 1.8rem;
  }
}

/* Agent Contact Row */
.agent-contact-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.agent-contact-row .btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: 2px solid #25D366;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  border-color: #128C7E;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
    margin-top: 32px;
  }
  .gallery-grid {
    height: auto;
    grid-template-columns: 1fr;
  }
  .gallery-main {
    height: 280px;
  }
  .gallery-side {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    height: 120px;
    margin-top: 12px;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .agent-contact-row {
    flex-direction: row;
    gap: 12px;
  }
  .agent-contact-row .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .detail-content {
    padding: 24px;
  }
  .related-properties {
    padding: 2rem 0;
  }
  .related-properties h3 {
    font-size: 1.8rem;
  }
  .gallery-main {
    height: 250px;
  }
  .gallery-side {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .gallery-main {
    height: 220px;
  }
  .gallery-side {
    height: 80px;
  }
  .gallery-side {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
/* =================================
   LIGHTBOX GALLERY STYLES
   ================================= */

/* Lightbox Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.lightbox-container {
  max-width: 95%;
  max-height: 95%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 10px;
}

.lightbox-close:hover {
  color: var(--yellow-accent);
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.lightbox-image-container {
  position: relative;
  max-width: 85vw;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-container img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.8rem;
  padding: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1002;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: var(--yellow-accent);
  color: var(--green-primary);
  border-color: var(--yellow-accent);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 20px rgba(255, 214, 0, 0.4);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.lightbox-thumbnails {
  display: flex;
  gap: 10px;
  justify-content: center;
  overflow-x: auto;
  padding: 10px 0;
  max-width: 85vw;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow-accent) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
  background: var(--yellow-accent);
  border-radius: 3px;
}

.lightbox-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.lightbox-thumb:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--yellow-accent);
  transform: scale(1.1);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-nav {
    font-size: 1.4rem;
    padding: 15px;
    width: 50px;
    height: 50px;
    border-width: 1px;
  }
  
  .lightbox-nav.prev {
    left: 15px;
  }
  
  .lightbox-nav.next {
    right: 15px;
  }
  
  .lightbox-thumbnails {
    max-width: 95vw;
    gap: 8px;
  }
  
  .lightbox-thumb {
    width: 60px;
    height: 45px;
  }
  
  .lightbox-image-container {
    max-width: 95vw;
    max-height: 70vh;
  }
  
  .lightbox-image-container img {
    max-height: 70vh;
  }
  
  .lightbox-close {
    top: -40px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .lightbox-nav {
    font-size: 1.2rem;
    padding: 12px;
    width: 45px;
    height: 45px;
  }
  
  .lightbox-nav.prev {
    left: 10px;
  }
  
  .lightbox-nav.next {
    right: 10px;
  }
}
