@import "../template.css";

/* ========================================
   HERO SECTION PC SUR-MESURE
======================================== */
.hero-custom-pc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: #f8f9fa;
    overflow: hidden;
    padding: 0;
}

body.dark-theme .hero-custom-pc {
    background: #1a1a1a;
}

.hero-custom-pc-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-custom-pc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-custom-pc-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: white;
}

body.dark-theme .hero-custom-pc-text {
    background: #1e1e1e;
}

.hero-custom-pc-text h1 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 15px;
}

body.dark-theme .hero-custom-pc-text h1 {
    color: #fff;
}

.hero-custom-pc-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

body.dark-theme .hero-custom-pc-text h2 {
    color: #fff;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

body.dark-theme .hero-description {
    color: #94a3b8;
}

.btn-primary-custom {
    background: #1e1ee2;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary-custom:hover {
    background: #0f4585;
    transform: translateY(-2px);
}

.btn-primary-custom.small {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.btn-primary-custom.large {
    padding: 18px 50px;
    font-size: 1.05rem;
    width: 100%;
}

/* ========================================
   STICKY PRICE BAR
======================================== */
.sticky-price-bar {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 100;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.dark-theme .sticky-price-bar {
    background: #1e1e1e;
    border-color: #334155;
}

.sticky-price-content {
    padding: 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
}

body.dark-theme .sticky-title {
    color: #fff;
}

.sticky-price-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sticky-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
}

body.dark-theme .sticky-price {
    color: #fff;
}

/* ========================================
   SECTION 3 ICÔNES
======================================== */
.features-icons-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.icon-circle {
    width: 80px;
    height: 80px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.dark-theme .icon-circle {
    background: #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.icon-circle i {
    font-size: 2rem;
    color: #1e1ee2;
}

body.dark-theme .icon-circle i {
    color: #60a5fa;
}

.icon-feature:hover .icon-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(30, 30, 226, 0.2);
}

body.dark-theme .icon-feature:hover .icon-circle {
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.icon-feature h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

body.dark-theme .icon-feature h3 {
    color: #fff;
}

.icon-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

body.dark-theme .icon-feature p {
    color: #94a3b8;
}

/* ========================================
   SECTION PROBLÈMES
======================================== */
.problems-section {
    padding: 100px 20px;
    background: var(--background-box);
    border-radius: 16px;
}

.problems-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.problems-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 15px;
}

.problems-left p {
    font-size: 1.1rem;
    color: var(--hero-subtitle);
    line-height: 1.7;
}

.problems-right {
    display: flex;
    justify-content: center;
}

.problems-stat {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

body.dark-theme .problems-stat {
    background: #1e1e1e;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #1e1ee2;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Chakra Petch', sans-serif;
}

body.dark-theme .stat-number {
    color: #60a5fa;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--hero-subtitle);
    font-weight: 600;
}

.problems-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

body.dark-theme .problem-item {
    background: #1e1e1e;
}

.problem-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-theme .problem-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.problem-check {
    width: 30px;
    height: 30px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-check i {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.problem-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 5px;
}

.problem-content p {
    font-size: 0.9rem;
    color: var(--hero-subtitle);
    line-height: 1.5;
}

.problems-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.problems-cta p {
    font-size: 1.05rem;
    color: var(--hero-subtitle);
    margin-bottom: 20px;
}

.problems-cta strong {
    color: var(--hero-title);
}

/* ========================================
   SECTIONS IMAGE/TEXTE ALTERNÉES
======================================== */
.image-text-section {
    background: white;
    padding: 100px 20px;
    margin: 0;
}

body.dark-theme .image-text-section {
    background: #1a1a1a;
}

.image-text-section.reverse {
    background: #f8f9fa;
}

body.dark-theme .image-text-section.reverse {
    background: #1e1e1e;
}

.image-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.image-side {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

body.dark-theme .image-side {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-side h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-side p {
    font-size: 1.05rem;
    color: var(--hero-subtitle);
    line-height: 1.7;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--hero-subtitle);
}

.check-list i {
    color: #1e1ee2;
    font-size: 1.3rem;
}

body.dark-theme .check-list i {
    color: #60a5fa;
}

/* ========================================
   SECTION PROCESSUS (FOND GRIS)
======================================== */
.process-section {
    padding: 80px 40px;
    text-align: center;
    background: #f8f9fa;
    color: #000;
    margin: 0;
}

body.dark-theme .process-section {
    background: #2a2a2a;
    color: white;
}

.process-section-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.dark-theme .process-section-icon {
    background: rgba(255,255,255,0.15);
    box-shadow: none;
}

.process-section-icon i {
    font-size: 2.2rem;
    color: #1e1ee2;
}

body.dark-theme .process-section-icon i {
    color: #60a5fa;
}

.process-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

body.dark-theme .process-section h2 {
    color: white;
}

.process-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
}

body.dark-theme .process-section-subtitle {
    color: #94a3b8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.process-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.dark-theme .process-icon {
    background: rgba(255,255,255,0.12);
    box-shadow: none;
}

.process-icon i {
    font-size: 1.5rem;
    color: #1e1ee2;
}

body.dark-theme .process-icon i {
    color: #60a5fa;
}

.process-feature h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

body.dark-theme .process-feature h3 {
    color: white;
}

.process-feature p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

body.dark-theme .process-feature p {
    color: #94a3b8;
}

/* Info banner dans la section processus */
.info-banner {
    background: white;
    color: #1e1ee2;
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

body.dark-theme .info-banner {
    background: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    border-color: rgba(255, 255, 255, 0.15);
}

.info-banner strong {
    font-weight: 700;
}

/* ========================================
   USE CASES SECTION
======================================== */
.use-cases-section {
    background: white;
    padding: 100px 20px;
    margin: 0;
}

body.dark-theme .use-cases-section {
    background: #1a1a1a;
}

/* ========================================
   SECTIONS STANDARDS
======================================== */
.section-white,
.section-gray {
    padding: 100px 20px;
}

.section-white {
    background: transparent;
    border-radius: 16px;
}

.section-gray {
    background: var(--background-box);
    margin: 0;
    padding: 100px 20px;
    border-radius: 16px;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-pretitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

body.dark-theme .section-pretitle {
    color: #60a5fa;
}

.section-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--hero-title);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.text-primary {
    color: #1e1ee2;
}

body.dark-theme .text-primary {
    color: #60a5fa;
}

/* ========================================
   GRILLES DE CARDS
======================================== */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.simple-card {
    background: white;
    border: none;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.dark-theme .simple-card {
    background: #1e1e1e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

body.dark-theme .simple-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.simple-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hero-title);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.simple-card p {
    color: var(--hero-subtitle);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   BRAND CAROUSEL
======================================== */
.brands-section {
    padding: 80px 20px;
}

.brand-carousel {
    background: white;
    border-radius: 16px;
    padding: 40px 20px;
    overflow: hidden;
    border: none;
    margin: 0 auto;
    max-width: 1200px;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.dark-theme .brand-carousel {
    background: #1e1e1e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 60px;
    width: max-content;
    align-items: center;
}

.carousel-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

body.dark-theme .carousel-track img {
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

.carousel-track img:hover {
    opacity: 1;
}

body.dark-theme .carousel-track img:hover {
    opacity: 0.8;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .cards-grid-3,
    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-text-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-text-section .image-side {
        order: 1;
    }

    .image-text-section .text-side {
        order: 2;
    }

    .image-side {
        height: 350px;
    }

    .process-grid,
    .features-icons-section {
        grid-template-columns: 1fr;
    }

    .hero-custom-pc {
        grid-template-columns: 1fr;
    }

    .hero-custom-pc-image {
        order: -1;
        min-height: 300px;
    }

    .hero-custom-pc-text {
        padding: 40px 30px;
    }

    .problems-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .sticky-price-bar {
        width: calc(100% - 20px);
        top: 70px;
        border-radius: 12px;
    }

    .sticky-price-content {
        padding: 10px 16px;
        gap: 12px;
    }

    .sticky-title {
        font-size: 0.8rem;
    }

    .sticky-price-right {
        gap: 12px;
    }

    .sticky-price {
        font-size: 0.85rem;
    }

    .btn-primary-custom.small {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .section-white,
    .section-gray,
    .use-cases-section,
    .image-text-section,
    .process-section {
        padding: 40px 16px;
    }

    .section-intro {
        margin-bottom: 35px;
    }

    .section-intro h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-custom-pc-text {
        padding: 30px 24px;
    }

    .hero-custom-pc-text h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .features-icons-section {
        padding: 50px 16px;
        gap: 30px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .icon-circle i {
        font-size: 1.6rem;
    }

    .icon-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .icon-feature p {
        font-size: 0.9rem;
    }

    .problems-section {
        padding: 50px 16px;
    }

    .problems-header {
        margin-bottom: 40px;
    }

    .problems-left h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .problems-left p {
        font-size: 1rem;
    }

    .problems-stat {
        padding: 25px;
    }

    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }

    .stat-text {
        font-size: 0.85rem;
    }

    .problems-list {
        gap: 12px;
        margin-bottom: 35px;
    }

    .problem-item {
        padding: 18px;
    }

    .problem-check {
        width: 26px;
        height: 26px;
    }

    .problem-check i {
        font-size: 0.8rem;
    }

    .problem-content h3 {
        font-size: 1rem;
    }

    .problem-content p {
        font-size: 0.85rem;
    }

    .problems-cta p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .text-side h2 {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }

    .text-side p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .check-list {
        margin-top: 20px;
    }

    .check-list li {
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .check-list i {
        font-size: 1.15rem;
    }

    .image-side {
        height: 280px;
    }

    .process-section-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }

    .process-section-icon i {
        font-size: 1.8rem;
    }

    .process-section h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .process-section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .process-icon i {
        font-size: 1.3rem;
    }

    .process-feature h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .process-feature p {
        font-size: 0.9rem;
    }

    .cards-grid-3,
    .cards-grid-4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .simple-card {
        padding: 20px 18px;
    }

    .card-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .simple-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .simple-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .hero-custom-pc-text h1 {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .hero-custom-pc-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .btn-primary-custom {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .section-white,
    .section-gray,
    .use-cases-section,
    .image-text-section,
    .process-section {
        padding: 35px 16px;
    }

    .section-intro {
        margin-bottom: 30px;
    }

    .section-intro h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .section-pretitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .features-icons-section {
        padding: 40px 16px;
        gap: 25px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .icon-circle i {
        font-size: 1.4rem;
    }

    .icon-feature h3 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .icon-feature p {
        font-size: 0.88rem;
    }

    .problems-section {
        padding: 40px 16px;
    }

    .problems-header {
        margin-bottom: 30px;
    }

    .problems-left h2 {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

    .problems-left p {
        font-size: 0.95rem;
    }

    .problems-stat {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.4rem;
        margin-bottom: 6px;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    .problems-list {
        gap: 10px;
        margin-bottom: 30px;
    }

    .problem-item {
        padding: 15px;
        gap: 12px;
    }

    .problem-check {
        width: 24px;
        height: 24px;
    }

    .problem-check i {
        font-size: 0.75rem;
    }

    .problem-content h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .problem-content p {
        font-size: 0.82rem;
    }

    .problems-cta p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .image-side {
        height: 240px;
    }

    .text-side h2 {
        font-size: 1.65rem;
        margin-bottom: 12px;
    }

    .text-side p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .check-list {
        margin-top: 18px;
    }

    .check-list li {
        margin-bottom: 10px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .check-list i {
        font-size: 1.05rem;
    }

    .process-section-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .process-section-icon i {
        font-size: 1.6rem;
    }

    .process-section h2 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .process-section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .process-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }

    .process-icon i {
        font-size: 1.2rem;
    }

    .process-feature h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .process-feature p {
        font-size: 0.85rem;
    }

    .simple-card {
        padding: 18px 16px;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .simple-card h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .simple-card p {
        font-size: 0.9rem;
    }

    .brands-section {
        padding: 50px 16px;
    }

    .brand-carousel {
        padding: 30px 16px;
    }

    .carousel-track {
        gap: 40px;
    }

    .carousel-track img {
        height: 40px;
    }
}