


.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: var(--white);
}

@media (min-width: 1921px) {
    .hero {
        height: 66.67vh;
    }
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    text-transform: capitalize;
    max-width: 800px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 800px;
}

.btn-hero {
    font-size: 1.4rem;
    padding: 20px 50px;
    border-radius: 4px;
    background-color: var(--primary-blue);
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: white;
}

.btn-hero:hover {
    background-color: var(--dark-blue);
}


.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
}

.slider-arrow:hover {
    color: white;
    background: rgba(0,0,0,0.5);
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}


.features-bar {
    background-color: var(--accent-blue);
    color: var(--white);
    padding: 60px 0 150px;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.feature-icon {
    width: 60px;
    height: auto;
    min-width: 60px;
}

.feature-item i {
    font-size: 3.5rem;
    opacity: 1;
    min-width: 60px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 1920px) {
    .features-bar {
        padding: 40px 0 100px;
    }
    
    .features-grid {
        gap: 40px;
    }
}


.intro-section {
    padding: 0 0 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.video-placeholder {
    width: 100%;
    max-width: 100%;
    height: 650px;
    background-color: #000;
    margin: -100px auto 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.intro-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: none;
    padding-bottom: 0;
}

.intro-header h2 {
    font-size: 3.2rem;
    color: #000;
    font-weight: 800;
    max-width: 60%;
    line-height: 1.2;
}

.intro-header .btn {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 0;
    background-color: var(--accent-blue);
    color: #ffffff !important;
    font-weight: 600;
}

.intro-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.8rem;
    line-height: 1.8;
}

.intro-content a {
    color: var(--accent-blue);
    text-decoration: underline;
    font-weight: 500;
}


.custom-parts-section {
    padding: 80px 0;
    background-color: var(--white);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-side {
    position: relative;
}

.custom-parts-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.text-side h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-side p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.text-side a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.text-side .btn {
    font-size: 1.3rem;
    padding: 18px 40px;
}

.check-list {
    margin: 25px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: #555;
}

.check-list li i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-top: 2px;
}


.check-list.norma-list-styled {
    max-width: 240px;
}

.check-list.norma-list-styled li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.check-list.norma-list-styled li i {
    margin-right: 10px;
}

.norma-text {
    margin-right: auto;
    text-align: left;
}

.norma-brand {
    text-align: right;
}


.gallery-section {
    padding: 60px 0;
}

.gallery-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-item {
    text-align: left;
}

.gallery-img-placeholder {
    width: 100%;
    padding-top: 100%; 
    height: 0;
    background-color: #f5f5f7;
    margin-bottom: 20px;
    border: none;
    display: block;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.gallery-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.gallery-item p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
}


.gallery-item .product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.gallery-item .product-info .info-row {
    display: block;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.gallery-item .product-info .info-row strong {
    color: #222;
    font-weight: 600;
    min-width: 90px;
    display: inline-block;
}


.gallery-loading,
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1rem;
}

.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.gallery-link:hover {
    transform: translateY(-5px);
}

.gallery-link:hover .gallery-img-placeholder {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.industries-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x800?text=Factory+Background');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: left;
}

.industries-section .section-title {
    text-align: left;
    max-width: 600px;
    font-size: 2.5rem;
    line-height: 1.2;
}

.industries-section .section-subtitle {
    text-align: left;
    margin-left: 0;
    max-width: 600px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: left;
}

.industry-item {
    padding: 0 10px;
}

.industry-icon {
    width: 60px;
    height: auto;
    margin-bottom: 25px;
    display: block;
}

.industry-item h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 700;
}

.industry-item p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.6;
}


.quote-trust-section {
    padding: 80px 0;
    background-color: #fff;
}

.quote-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.quote-form-container h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: #000;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    background-color: #f8f9fa;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #aaa;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: 1px solid var(--accent-blue);
    background-color: #fff;
}

.file-input-wrapper {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
    background: #fff;
}

.file-input-wrapper input[type=file] {
    background: transparent;
    padding: 5px;
    margin-bottom: 0;
}

.trust-content {
    padding-left: 40px;
}

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.trust-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.trust-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.trust-icon {
    width: 50px;
    height: auto;
    margin-top: 5px;
    display: block;
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #000;
}

.trust-item p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0;
}


.equipment-section {
    padding: 80px 0;
    background-color: #fff;
}

.equipment-slider-container {
    position: relative;
    overflow: hidden;
}

.equipment-track {
    display: flex;
    width: 100%;
}

.equipment-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.equipment-layout {
    display: flex;
    gap: 0;
    position: relative;
}

.equipment-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 60px 50px 60px 40px;
    position: relative;
}

.equipment-left::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: -100vw;
    background-color: #f5f5f7;
    z-index: -1;
}

.equipment-header {
    margin-bottom: 30px;
}

.equipment-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #000;
}

.equipment-header p {
    color: #777;
    font-size: 1rem;
}

.equipment-list-box {
    position: relative;
    padding: 0;
    background-color: transparent;
    margin-bottom: 60px;
}

.equipment-list-box::before {
    display: none;
}

.equipment-lists {
    display: flex;
    gap: 50px;
    margin-bottom: 0;
}

.equipment-lists ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.equipment-lists ul li i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

.equipment-lists ul li a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.check-list-blue li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.check-list-blue li i {
    color: var(--accent-blue);
    font-size: 0.8rem;
}

.slider-controls-fixed {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    transition: all 0.3s;
}

.slider-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.equipment-right {
    flex: 0 0 45%;
    position: relative;
}

.equipment-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.btn-instant-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--accent-blue);
    color: white;
    padding: 20px 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}


.materials-section {
    padding: 100px 0;
    background-color: #fff;
}

.materials-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.materials-text {
    padding-left: 20px;
}

.materials-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #000;
}

.materials-text p {
    color: #777;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.materials-text p a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.materials-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
}

.materials-list-grid ul {
    list-style: none;
    padding: 0;
}

.materials-list-grid li {
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.materials-list-grid li::before {
    content: '•';
    color: var(--accent-blue);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    line-height: 1;
    top: -2px;
}


.applications-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.applications-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.applications-section .section-subtitle {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 50px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.app-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: white;
    border: 1px solid #e6ecf5;
    border-radius: 2px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s;
    font-weight: 500;
}

.app-box:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}


.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://via.placeholder.com/1920x600?text=Metal+Boxes+Background');
    background-size: cover;
    background-position: center;
    color: white;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.testimonials-header .section-title {
    color: white;
    text-align: left;
    margin-bottom: 0;
}

.testimonials-slider-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    width: 100%;
    cursor: grab;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    margin: 0 15px;
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: left;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    user-select: none;
}

.testimonial-card p {
    font-style: normal;
    color: #777;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    background-color: #eee;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    display: block;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
}


.resources-section {
    padding: 80px 0;
    background-color: #fff;
}

.resources-section .section-title {
    text-align: left;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #000;
}

.resources-slider-wrapper {
    position: relative;
}

.resources-slider-container {
    overflow: hidden;
    width: 100%;
}

.resources-track {
    display: flex;
    width: 100%;
    cursor: grab;
}

.resources-track:active {
    cursor: grabbing;
}

.resource-card {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    margin: 0 15px;
    background: #000;
    border-radius: 0;
    overflow: hidden;
    height: 450px;
    position: relative;
    user-select: none;
}

.resource-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.resource-card:hover .resource-bg {
    transform: scale(1.1);
}

.resource-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 35, 50, 0.3);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: background 0.3s;
}

.resource-text {
    width: 100%;
}

.resource-overlay h3 {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    margin-bottom: 20px;
}

.resource-desc {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.resource-card:hover .resource-desc {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

.btn-readmore {
    background-color: var(--accent-blue);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
    align-self: flex-start;
    display: inline-block;
    margin-top: auto;
}

.btn-readmore:hover {
    background-color: var(--dark-blue);
}

.resource-nav-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.resource-nav-controls button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #555;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.resource-nav-controls button:hover {
    color: var(--accent-blue);
}

.resource-nav-controls .nav-divider {
    color: #ccc;
    font-weight: 300;
}

@media (max-width: 992px) {
    .resource-card {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
    
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .gallery-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .resource-card {
        flex: 0 0 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    
    .features-grid,
    .gallery-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}


.clients-section {
    padding: 60px 0;
    border-top: none;
    background-color: #fff;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: sans-serif;
    letter-spacing: -1px;
    color: #aaa;
}

.client-logo img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.client-logo:hover img {
    opacity: 1;
}

.client-logo span {
    display: inline-block;
}



.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 80px 120px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: calc(100% - 120px);
    overflow: hidden;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    max-width: 80%;
    overflow-x: auto;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.lightbox-thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 0.9;
}

.lightbox-thumb.active {
    border-color: var(--primary-blue);
    opacity: 1;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-counter {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
}


