/* CSS Variables - Industrial Theme */
:root {
    --color-primary: #1a2332; /* Dark Blue Industrial */
    --color-secondary: #1a9edc; /* Azul refrigeración (acento principal) */
    --color-secondary-dark: #0d7eb5; /* Hover / estados activos */
    --color-dark: #0f151f; /* Darker blue/black */
    --color-light: #f4f5f7; /* Very light gray */
    --color-white: #ffffff;
    --color-metallic: #8b939c; /* Metallic Gray */
    --color-accent: #5dcef5; /* Azul hielo — acentos en fondos oscuros y focos */
    
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #333;
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--color-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white) !important;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-metallic);
    margin-bottom: 40px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 158, 220, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-block {
    display: block;
    width: 100%;
}

.mt-4 {
    margin-top: 2rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header.scrolled {
    padding: 10px 0;
    background-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight: 600;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    line-height: 1;
}

.logo-text {
    line-height: 1;
}

.logo-img {
    height: 2.6rem;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    align-self: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: linear-gradient(135deg, #0d1219 0%, var(--color-primary) 42%, #152030 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-vortex {
    position: absolute;
    inset: -45%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(120, 195, 255, 0.06) 0deg,
        transparent 55deg,
        rgba(90, 200, 255, 0.07) 110deg,
        transparent 165deg,
        rgba(100, 175, 230, 0.07) 220deg,
        transparent 290deg,
        rgba(120, 195, 255, 0.06) 360deg
    );
    animation: hero-vortex 75s linear infinite;
}

.hero-bg-flow {
    position: absolute;
    inset: 0;
    opacity: 0.85;
    background-image: repeating-linear-gradient(
        -14deg,
        transparent 0,
        transparent 72px,
        rgba(255, 255, 255, 0.018) 72px,
        rgba(255, 255, 255, 0.018) 74px
    );
    background-size: 180% 180%;
    animation: hero-flow 32s linear infinite;
}

.hero-bg-blades {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    animation: hero-blades-spin 15s linear infinite;
    z-index: 1;
}

.hero-hub {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, rgba(200, 245, 255, 0.4), rgba(70, 160, 235, 0.15));
    border-radius: 50%;
    top: -40px;
    left: -40px;
    box-shadow: 
        0 0 30px rgba(100, 195, 255, 0.2),
        inset 0 0 15px rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.hero-hub::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(26, 35, 50, 0.6);
    border-radius: 50%;
    top: 25px;
    left: 25px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.hero-blade {
    position: absolute;
    width: min(18vw, 140px);
    height: min(48vh, 400px);
    left: calc(min(18vw, 140px) / -2);
    top: calc(-1 * min(48vh, 400px) - 20px);
    transform-origin: 50% calc(100% + 20px);
    border-radius: 100% 0% 100% 10%;
    background: linear-gradient(
        105deg,
        rgba(200, 245, 255, 0.35) 0%,
        rgba(120, 200, 255, 0.20) 35%,
        rgba(70, 160, 235, 0.12) 65%,
        transparent 100%
    );
    box-shadow:
        inset -5px -5px 20px rgba(255, 255, 255, 0.1),
        0 0 25px rgba(100, 195, 255, 0.15);
    z-index: 2;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.3));
}

.hero-blade:nth-child(2) { transform: rotate(0deg); }
.hero-blade:nth-child(3) { transform: rotate(120deg); }
.hero-blade:nth-child(4) { transform: rotate(240deg); }

.hero-bg-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 75% 55% at 18% 55%, rgba(70, 185, 245, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse 55% 45% at 88% 28%, rgba(130, 200, 255, 0.09) 0%, transparent 48%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(26, 35, 50, 0.35) 0%, transparent 55%);
    animation: hero-glow 14s ease-in-out infinite alternate;
}

@keyframes hero-vortex {
    to { transform: rotate(360deg); }
}

@keyframes hero-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes hero-blades-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hero-glow {
    from { opacity: 0.75; }
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg-vortex,
    .hero-bg-flow,
    .hero-bg-blades,
    .hero-bg-glow {
        animation: none !important;
    }

    .hero-bg-vortex {
        transform: rotate(18deg);
    }

    .hero-bg-blades {
        transform: translate(-50%, -50%) rotate(22deg);
    }

    .hero-bg-glow {
        opacity: 0.9;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle, rgba(26,35,50,0.35) 0%, rgba(10,14,20,0.82) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--color-white);
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    border-left: 4px solid var(--color-secondary);
    padding-left: 15px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.sectors {
    margin-top: 30px;
    background: var(--color-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.sectors h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
    font-size: 1.8rem;
}

.sectors ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sectors li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.sectors i {
    color: var(--color-secondary);
}

/* Image Placeholders */
.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: #555;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-gradient {
    background: linear-gradient(135deg, #3a4b66 0%, #1a2332 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    font-weight: bold;
}

.card-img-photo {
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-img-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Carrusel en tarjeta de producto (p. ej. Arañas) */
.card-img-photo.card-carousel {
    display: block;
    position: relative;
}

.card-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.card-carousel-slide {
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

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

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--color-secondary);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.card-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #555;
}

.card-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 1.2rem;
    top: -2px;
}

/* Technical Section */
.technical {
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    background-image: radial-gradient(circle at right center, rgba(70, 185, 245, 0.12) 0%, transparent 50%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-box {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.tech-box:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.tech-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.tech-box ul li {
    margin-bottom: 8px;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.tech-box ul li::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-accent);
}

.tech-box p {
    color: #cbd5e1;
}

/* Custom Made */
.custom-made {
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23e0e0e0"/></svg>');
}

.custom-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

.custom-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.feature {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 350px;
}

.feature i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.feature h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

/* Gallery Masonry */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    gap: 15px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item .img-placeholder {
    min-height: 100%;
    transition: transform 0.5s ease;
}

.gallery-item:hover .img-placeholder {
    transform: scale(1.05);
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-item.wide, .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--color-metallic);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-list i {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-top: 5px;
    width: 20px;
    text-align: center;
}

.phones {
    display: flex;
    flex-direction: column;
}

.phones a {
    font-weight: 600;
}

.phones a:hover {
    color: var(--color-secondary);
}

/* Form */
.contact-form-container {
    background: var(--color-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--color-primary);
}

.quote-form h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(93, 206, 245, 0.18);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.footer-content p {
    color: var(--color-metallic);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--color-metallic);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: #fff;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: var(--color-primary);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        transition: 0.4s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn { display: block; }
    
    .hero h1 { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; }
    .section-title { font-size: 2.5rem; }
    
    .custom-features { flex-direction: column; align-items: center; }
}

.about-media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.media-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-height: 300px;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-item iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
}

@media (max-width: 768px) {
    .about-media {
        grid-template-columns: 1fr;
    }
}

/* Tarjeta con galería ampliada (lightbox) */
body.gallery-lightbox-open {
    overflow: hidden;
}

.product-card--gallery {
    cursor: pointer;
}

.product-card--gallery:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.5rem 3.5rem 3rem;
    background: rgba(10, 14, 22, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox__figure {
    margin: 0;
    max-width: min(92vw, 1200px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.gallery-lightbox__img {
    max-width: 100%;
    max-height: calc(85vh - 3rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox__counter {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    z-index: 2;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    transition: background 0.2s ease, transform 0.15s ease;
    border-radius: 8px;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    background: var(--color-secondary);
    outline: none;
}

.gallery-lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
}

.gallery-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    transform: translateY(-50%) scale(1.05);
}

.gallery-lightbox__prev {
    left: 1rem;
}

.gallery-lightbox__next {
    right: 1rem;
}

.gallery-lightbox--single .gallery-lightbox__prev,
.gallery-lightbox--single .gallery-lightbox__next {
    display: none;
}

@media (max-width: 768px) {
    .gallery-lightbox {
        padding: 4rem 0.75rem 2rem;
    }

    .gallery-lightbox__close {
        top: 0.65rem;
        right: 0.65rem;
        width: 44px;
        height: 44px;
    }

    .gallery-lightbox__nav {
        width: 44px;
        height: 44px;
    }

    .gallery-lightbox__prev {
        left: 0.5rem;
    }

    .gallery-lightbox__next {
        right: 0.5rem;
    }
}
