/* ==============================================
   GENERAL STYLES FOR REUSABLE COMPONENTS
   Version: 1.0
   Description: Common styles for hero sections, galleries, containers, etc.
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;600;700&display=swap');

/* ==============================================
   RESET & BASE STYLES
   ============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ==============================================
   1. HERO SECTIONS
   ============================================== */

.hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 60vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  padding-top: 180px;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  z-index: 2;
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
}

.hero-left {
  flex: 1;
  text-align: left;
}

.hero-right {
  flex: 0 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-category {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
  line-height: 1.1;
}

.hero-duration {
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: center;
}

.hero-price {
  font-size: 2.2rem;
  font-weight: 400;
  color: #89b126;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  text-align: center;
}

/* ==============================================
   2. BREADCRUMB
   ============================================== */

.breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #373f3f;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #89b126;
}

.breadcrumb .separator {
  margin: 0 10px;
  color: #6c757d;
}

.breadcrumb .current {
  color: #6c757d;
  font-weight: 500;
}

/* ==============================================
   3. MAIN CONTAINERS
   ============================================== */

.main-container {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
}

.content-left {
  min-width: 0;
}

.content-right {
  min-width: 0;
}

.single-column-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================================
   4. IMAGE GALLERY COMPONENT
   ============================================== */

.image-gallery {
  margin-bottom: 40px;
}

.gallery-container {
  position: relative;
}

.gallery-main {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 1200px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

.gallery-main-image.active {
  opacity: 1;
}

.gallery-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.gallery-prev,
.gallery-next {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #373f3f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-prev:hover,
.gallery-next:hover {
  background: white;
  transform: scale(1.1);
}

.gallery-thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border-color: #89b126;
  transform: scale(1.05);
}

/* ==============================================
   5. TABS COMPONENT
   ============================================== */

.tabs-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.tabs-section h2 {
  margin-bottom: 25px;
  color: #373f3f;
}

.tabs-navigation {
  display: flex;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 5px;
}

.tab-button {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: #666;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-button:hover {
  color: #373f3f;
  background: rgba(55, 63, 63, 0.05);
}

.tab-button.active {
  color: #373f3f;
  border-bottom-color: #373f3f;
  background: rgba(55, 63, 63, 0.1);
}

.tabs-content {
  position: relative;
  min-height: 250px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  color: #373f3f;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e5e5;
}

.tab-content p {
  margin-bottom: 15px;
  text-align: left;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.tab-content p strong {
  color: #373f3f;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.tab-content ul {
  list-style: none;
  padding: 0;
}

.tab-content li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: #555;
  border-bottom: 1px solid #f5f5f5;
}

.tab-content li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #373f3f;
  font-weight: bold;
}

.tab-content li:last-child {
  border-bottom: none;
}

/* ==============================================
   6. LIGHTBOX MODAL
   ============================================== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #373f3f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* ==============================================
   7. UTILITY CLASSES
   ============================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.margin-bottom-20 {
  margin-bottom: 20px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.margin-bottom-40 {
  margin-bottom: 40px;
}

.padding-20 {
  padding: 20px;
}

.padding-30 {
  padding: 30px;
}

.padding-40 {
  padding: 40px;
}

/* ==============================================
   8. ANIMATIONS
   ============================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==============================================
   9. RESPONSIVE DESIGN
   ============================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero-section {
    padding-top: 140px;
  }
  
  .content-wrapper {
    max-width: 1024px;
    padding: 0 30px;
  }
  
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .gallery-main {
    height: 400px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
    min-height: 400px;
    background-attachment: scroll;
    padding-top: 150px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 0 20px;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero-right {
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  
  .hero-category {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .hero-duration {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .hero-price {
    font-size: 1.6rem;
  }
  
  .main-container {
    padding: 40px 0;
  }
  
  .content-wrapper {
    padding: 0 15px;
  }
  
  .tabs-navigation {
    flex-direction: column;
    gap: 5px;
  }
  
  .tab-button {
    min-width: auto;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 5px;
  }
  
  .tab-button.active {
    border-bottom-color: #373f3f;
  }
  
  .gallery-main {
    height: 300px;
  }
  
  .gallery-prev,
  .gallery-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .thumbnail {
    width: 60px;
    height: 45px;
  }
  
  .lightbox-content {
    padding: 10px;
  }
  
  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    left: 20px;
  }
  
  .lightbox-next {
    right: 20px;
  }
  
  .breadcrumb {
    padding: 0 15px;
    font-size: 0.8rem;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .hero-section {
    height: 40vh;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .hero-duration {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .hero-price {
    font-size: 1.4rem;
  }
  
  .main-container {
    padding: 30px 0;
  }
  
  .content-wrapper {
    padding: 0 10px;
  }
  
  .gallery-main {
    height: 250px;
  }
  
  .gallery-thumbnails {
    gap: 10px;
  }
  
  .thumbnail {
    width: 50px;
    height: 38px;
  }
  
  .breadcrumb {
    padding: 15px 10px;
  }
}

/* ==============================================
   7. ABOUT US INTRODUCTION SECTION
   ============================================== */

.about-intro-section {
  margin-bottom: 60px;
  padding: 40px 0;
}

.intro-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.intro-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.logo-container {
  flex-shrink: 0;
}

.intro-logo {
  width: 150px;
  height: auto;
}

.intro-text {
  flex: 1;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin: 0;
}

.intro-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-bottom-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-bottom-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-bottom-right {
  padding-left: 20px;
}

.intro-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.intro-features li {
  padding: 15px 0;
  padding-left: 30px;
  position: relative;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.intro-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #89b126;
  font-weight: bold;
  font-size: 1.2rem;
}

.intro-features li:last-child {
  border-bottom: none;
}

/* Responsive styles for about intro section */
@media (max-width: 768px) {
  .intro-top,
  .intro-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-left {
    text-align: center;
    align-items: center;
  }
  
  .intro-text p {
    text-align: left;
  }
  
  .intro-image,
  .intro-bottom-image {
    height: 300px;
  }
  
  .intro-bottom-right {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .about-intro-section {
    margin-bottom: 40px;
    padding: 20px 0;
  }
  
  .intro-top {
    margin-bottom: 40px;
  }
  
  .intro-logo {
    width: 120px;
  }
  
  .intro-image,
  .intro-bottom-image {
    height: 250px;
  }
  
  .intro-features li {
    font-size: 0.9rem;
    padding-left: 25px;
  }
}

/* ==============================================
   8. CONTACT US PAGE STYLES
   ============================================== */

.contact-info-section {
  margin-bottom: 60px;
  padding: 40px 0;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-section,
.follow-section,
.company-section {
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
}

.contact-section h3,
.follow-section h3,
.company-section h3 {
  color: #666;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  color: #555;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}

.contact-item span {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #89b126;
}

.contact-icon svg {
  stroke: currentColor;
}

.social-icons {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  width: 100%;
}

.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #373f3f !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}


.social-icon:hover {
  background: #89b126 !important;
  transform: scale(1.1);
}

.company-info p {
  color: #555;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
  color: #666;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  color: #555;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #89b126;
  background: white;
  box-shadow: 0 0 5px rgba(137, 177, 38, 0.3);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit-btn {
  background: #666;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #89b126;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(137, 177, 38, 0.3);
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
  .contact-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-left {
    gap: 30px;
  }
  
  .contact-right {
    gap: 30px;
  }
  
  .contact-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .contact-info-section {
    margin-bottom: 40px;
    padding: 20px 0;
  }
  
  .contact-top {
    gap: 30px;
  }
  
  .contact-left {
    gap: 25px;
  }
  
  .contact-right {
    gap: 25px;
  }
  
  .contact-image {
    height: 200px;
  }
  
  .contact-item {
    font-size: 16px;
  }
  
  .company-info p {
    font-size: 16px;
  }
  
  .social-icons {
    gap: 10px;
    justify-content: flex-start;
  }
  
  .social-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
}

/* ==============================================
   LIGHTBOX MODAL
   ============================================== */

.lightbox {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image,
#lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.lightbox-image.loaded,
#lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-navigation {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
}

.lightbox-prev {
  margin-left: 40px;
}

.lightbox-next {
  margin-right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: white;
  transform: scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .lightbox-prev {
    margin-left: 15px;
  }
  
  .lightbox-next {
    margin-right: 15px;
  }
  
  .lightbox-counter {
    bottom: 15px;
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .lightbox-content {
    padding: 10px;
  }
  
  .lightbox-image,
  #lightbox-image {
    max-height: 70vh;
  }
}