/* Showcase Industries Widget - Premium Scoped Styles */
/* All styles prefixed with .siw- to prevent WordPress conflicts */

.siw-widget {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.siw-widget *,
.siw-widget *::before,
.siw-widget *::after {
  box-sizing: border-box;
}

/* ============================================
   TABS - Premium Pill Style
   ============================================ */

.siw-tabs-wrapper {
  margin-bottom: 2rem;
}

.siw-tabs-container {
  border-bottom: 1px solid #e5e7eb;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a transparent;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  position: relative;
}

.siw-tabs-container::-webkit-scrollbar {
  height: 6px;
}

.siw-tabs-container::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 3px;
}

.siw-tabs-container::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  border-radius: 3px;
}

.siw-tabs-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.siw-tabs-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  min-width: max-content;
  flex-wrap: nowrap;
}

.siw-tab-button {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  border-radius: 9999px;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  font-family: inherit;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  max-height: 56px;
  min-height: 56px;
}

.siw-tab-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.siw-icon-img {
  display: block !important;
  object-fit: contain;
  flex-shrink: 0;
}

.siw-icon-img--tab {
  width: 40px !important;
  height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
}

.siw-tab-label {
  display: inline-block;
}

.siw-tab-button:hover {
  color: #374151;
  background: #ffffff;
  border-color: #d1d5db;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.siw-tab-button.siw-active {
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  border-color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.siw-tab-button.siw-active:hover {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.35), 0 4px 6px -1px rgba(0, 0, 0, 0.25);
}

/* ============================================
   TAB NAVIGATION ARROWS
   ============================================ */

.siw-tabs-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 1rem;
}

.siw-tab-nav-arrow {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-family: inherit;
  padding: 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.siw-tab-nav-arrow:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #1a1a1a;
  transform: scale(1.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.siw-tab-nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: scale(1);
}

.siw-tab-nav-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .siw-tabs-navigation {
    display: none;
  }
}

/* ============================================
   TAB CONTENT
   ============================================ */

.siw-tabs-content {
  width: 100%;
}

.siw-tab-content {
  display: block;
  animation: siw-fadeIn 0.4s ease-out;
  width: 100%;
}

@keyframes siw-fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   INDUSTRY HEADER
   ============================================ */

.siw-industry-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.siw-industry-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.siw-industry-header-content {
  flex: 1;
  min-width: 0;
}

.siw-industry-header-title {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ============================================
   INDUSTRY DESCRIPTION
   ============================================ */

.siw-industry-description {
  font-size: 1.0625rem;
  color: #4b5563;
  margin: 0 0 1.5rem 0;
  line-height: 1.7;
  font-weight: 400;
}

/* ============================================
   FEATURES LIST
   ============================================ */

.siw-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.siw-features-list li {
  padding: 0.625rem 0;
  padding-left: 2rem;
  position: relative;
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
}

.siw-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.625rem;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.125rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  font-size: 0.875rem;
}

/* ============================================
   CAROUSELS WRAPPER
   ============================================ */

.siw-carousels-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 769px) {
  .siw-carousels-wrapper {
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
  }
}

/* ============================================
   CAROUSEL SECTIONS
   ============================================ */

.siw-carousel-section {
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px) {
  .siw-carousel-section {
    margin-bottom: 0;
  }
}

/* Empty video container - hide on mobile */
.siw-videos-section.siw-videos-empty {
  display: none;
}

@media (min-width: 769px) {
  /* On desktop, maintain space for empty video container */
  .siw-videos-section.siw-videos-empty {
    display: block;
    flex: 1;
    min-width: 0;
  }
  
  /* Hide the empty carousel content but maintain its space */
  .siw-videos-section.siw-videos-empty .siw-carousel-title,
  .siw-videos-section.siw-videos-empty .siw-empty-carousel {
    visibility: hidden;
    pointer-events: none;
  }
  
  /* Center photos when videos are empty */
  .siw-carousels-wrapper.siw-photos-only {
    justify-content: center;
  }
  
  .siw-carousels-wrapper.siw-photos-only .siw-photos-section {
    max-width: 50%;
  }
}

.siw-carousel-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

@media (min-width: 769px) {
  .siw-carousel-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

/* ============================================
   CAROUSEL CONTAINER
   ============================================ */

.siw-carousel-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.siw-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.siw-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
  background: #f9fafb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.siw-carousel-slide.siw-video-slide {
  display: block !important;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  margin: 0;
}

.siw-carousel-slide.siw-active {
  opacity: 1;
  z-index: 1;
}

.siw-carousel-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
  position: relative;
}

.siw-carousel-image:hover {
  opacity: 0.9;
}

.siw-carousel-caption {
  display: none;
}

/* ============================================
   VIDEO SLIDE STYLES
   ============================================ */

.siw-video-slide {
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.siw-video-poster {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  max-height: none !important;
}

.siw-video-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  pointer-events: none;
  backdrop-filter: blur(4px);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.siw-video-slide:hover .siw-video-play-overlay {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.siw-video-play-icon {
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  margin-left: 10px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ============================================
   CAROUSEL ARROWS
   ============================================ */

.siw-carousel-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.25rem;
  z-index: 10;
  pointer-events: none;
}

.siw-carousel-arrow {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  border: 1px solid #007bff;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  font-family: inherit;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.siw-carousel-arrow:hover {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  transform: scale(1.1);
  box-shadow: 0 8px 12px -2px rgba(0, 123, 255, 0.35), 0 4px 6px -1px rgba(0, 123, 255, 0.25);
  border-color: #000000;
}

.siw-carousel-arrow:active {
  transform: scale(0.95);
}

.siw-carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: scale(1);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.siw-carousel-arrow:disabled:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(26, 26, 26, 0.4) 100%);
  transform: scale(1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.4);
}

.siw-carousel-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
}

/* ============================================
   VIDEO MODAL
   ============================================ */

.siw-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.siw-video-modal.siw-active {
  opacity: 1;
  visibility: visible;
}

.siw-video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
}

.siw-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 1;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.siw-video-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
  font-family: inherit;
  padding: 0;
}

.siw-video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.siw-video-modal-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
}

.siw-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.siw-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   EMPTY STATE
   ============================================ */

.siw-empty {
  text-align: center;
  padding: 3rem;
  color: #6b7280;
  font-size: 1rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

/* ============================================
   ERROR STATE
   ============================================ */

.siw-error {
  text-align: center;
  padding: 2rem;
  color: #dc2626;
  background-color: #fef2f2;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid #fecaca;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .siw-tabs-wrapper {
    margin-bottom: 1.5rem;
  }

  .siw-tabs-list {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .siw-tab-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    gap: 10px;
    max-height: 52px;
    min-height: 52px;
  }

  .siw-tab-icon {
    width: 40px;
    height: 40px;
  }

  .siw-icon-img--tab {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
  }

  .siw-industry-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .siw-industry-icon {
    width: 80px;
    height: 80px;
  }

  .siw-industry-header-title {
    font-size: 1.5rem;
  }

  .siw-industry-description {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .siw-features-list {
    margin-bottom: 2rem;
  }

  .siw-carousel-section {
    margin-bottom: 2rem;
  }

  .siw-carousel-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .siw-carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .siw-carousel-arrow svg {
    width: 20px;
    height: 20px;
  }

  .siw-video-play-overlay {
    width: 72px;
    height: 72px;
  }

  .siw-video-play-icon {
    border-left-width: 24px;
    border-top-width: 16px;
    border-bottom-width: 16px;
    margin-left: 8px;
  }

  .siw-video-modal-content {
    width: 95%;
  }

  .siw-video-modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

}

/* ============================================
   WORDPRESS CONFLICT PREVENTION
   ============================================ */

.siw-widget h1,
.siw-widget h2,
.siw-widget h3,
.siw-widget h4,
.siw-widget h5,
.siw-widget h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: inherit;
}

.siw-widget p {
  margin-top: 0;
  margin-bottom: 1em;
}

.siw-widget ul,
.siw-widget ol {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 0;
}

.siw-widget a {
  color: inherit;
  text-decoration: none;
}

.siw-widget img {
  max-width: 100%;
  height: auto;
  display: block;
}

.siw-widget button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Prevent text selection on UI elements */
.siw-tab-button,
.siw-carousel-arrow {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ============================================
   LIGHTBOX - Full Screen Image Viewer
   ============================================ */

.siw-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.siw-lightbox.siw-active {
  opacity: 1;
  visibility: visible;
}

.siw-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
}

.siw-lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1400px;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.siw-lightbox-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.siw-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.siw-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
  font-family: inherit;
  padding: 0;
}

.siw-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.siw-lightbox-prev,
.siw-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
  font-family: inherit;
  padding: 0;
}

.siw-lightbox-prev {
  left: 1.5rem;
}

.siw-lightbox-next {
  right: 1.5rem;
}

.siw-lightbox-prev:hover,
.siw-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.siw-lightbox-prev:disabled,
.siw-lightbox-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.siw-lightbox-prev:disabled:hover,
.siw-lightbox-next:disabled:hover {
  transform: translateY(-50%) scale(1);
}

.siw-lightbox-prev svg,
.siw-lightbox-next svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: currentColor;
}

.siw-lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  z-index: 2;
}

@media (max-width: 768px) {
  .siw-lightbox-content {
    width: 95%;
    height: 95%;
  }

  .siw-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .siw-lightbox-prev,
  .siw-lightbox-next {
    width: 44px;
    height: 44px;
  }

  .siw-lightbox-prev {
    left: 0.5rem;
  }

  .siw-lightbox-next {
    right: 0.5rem;
  }

  .siw-lightbox-prev svg,
  .siw-lightbox-next svg {
    width: 24px;
    height: 24px;
  }

  .siw-lightbox-counter {
    bottom: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
