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

body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background-color: #000000;
    color: #ffffff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

.header-container {
    /* max-width: 1400px; */
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link svg {
    flex-shrink: 0;
}

.header-buttons {
    display: flex;
    gap: 12px;
    /* margin-left: auto; */
}

.btn-book {
    padding: 10px 24px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #f0f0f0;
}

.btn-whatsapp {
    padding: 10px 24px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #ffffff;
    color: #000000;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle .close {
    display: none;
}

.mobile-menu-toggle.active .hamburger {
    display: none;
}

.mobile-menu-toggle.active .close {
    display: block;
}

.mobile-menu {
    display: none;
    background-color: #000000;
    padding: 20px 40px 40px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-book-mobile {
    display: block;
    padding: 14px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

.btn-whatsapp-mobile {
    display: block;
    padding: 14px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 40px 40px;
    /* margin-top: 120px; */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
}

/* Responsive Header & Footer */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
    }

    .logo img {
        height: 35px;
    }

    .footer {
        padding: 60px 20px 30px;
        /* margin-top: 80px; */
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-logo {
        justify-content: flex-start;
        order: -1;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-copyright {
        font-size: 13px;
        order: 2;
    }

    .footer-social {
        order: 1;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        padding: 20px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social a svg {
        width: 18px;
        height: 18px;
    }
}

.showcase-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 0px 10px;
}

.showcase-section {
    /* margin-bottom: 120px; */
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid #000000;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    background-color: #ffffff;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    /* margin-bottom: 16px; */
    text-align: center;
}

.section-title .highlight {
    font-weight: 700;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: #666666;
    text-align: center;
    margin-bottom: 16px;
}

/* Filter Styles */
.filter-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    padding: 0 10px;
}

.filter-status {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown-btn {
    padding: 10px 24px;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #000000;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-dropdown-btn:hover {
    background-color: #333333;
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #ffffff;
    border: 1.5px solid #000000;
    border-radius: 8px;
    min-width: 200px;
    padding: 8px 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.filter-dropdown-menu.active {
    display: flex;
}

.filter-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.filter-dropdown-item:hover {
    background-color: #f5f5f5;
}

.filter-dropdown-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.filter-dropdown-item input[type="checkbox"]:checked {
    background-color: #000000;
    border-color: #000000;
}

.filter-dropdown-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-dropdown-item span {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
}

/* Carousel Styles */
.carousel-wrapper {
    position: relative;
    padding: 0;
}

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(20% - 15px);
    /* gap: 20px; */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    -ms-overflow-style: auto;
    padding: 10px 5px;
    /* margin-bottom: 10px; */
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-track {
    background: transparent;
}

.carousel::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.carousel::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.card {
    background: #ffffff;
    border-radius: 4px;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 5px;
    gap: 12px;
}

@media (max-width: 768px) {
    .card {
        padding: 5px 2.5px;
    }
}

.card:hover {
    /* transform: translateY(-4px); */
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
    background-color: rgba(0, 0, 0, 0.05);
}

.card-image {
    width: 100%;
    aspect-ratio: 625/1111;
    object-fit: cover;
    object-position: top center;
    display: block;
    background-color: #ffffff;
    border: 1px solid #000000;
    border-radius: 4px;
}

.card-content {
    padding: 0;
    margin-top: auto;
}

.card-button {
    display: block;
    width: 100%;
    padding: 10px 18px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-button:hover {
    background-color: #333333;
}

/* Main Carousel Navigation */
.carousel-wrapper {
    position: relative;
}

.main-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.main-carousel-nav:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.main-carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.main-carousel-nav.main-prev {
    left: 10px;
}

.main-carousel-nav.main-next {
    right: 10px;
}

.main-carousel-nav svg {
    color: #000000;
}

@media (max-width: 768px) {
    .main-carousel-nav {
        width: 20px;
        height: 20px;
    }

    .main-carousel-nav svg {
        width: 16px;
        height: 16px;
    }

    .main-carousel-nav.main-prev {
        left: 5px;
    }

    .main-carousel-nav.main-next {
        right: 5px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1.5px solid #000000;
    max-width: 1000px;
    /* width: 88%; */
    width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    /* padding: 20px; */
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #333333;
}

.modal-body {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 30px;
    height: calc(90vh - 40px);
    background-color: #f7f4f0;
    border: 1.5px solid #000000;
    border-radius: 12px;
}

.modal-left {
    background-color: transparent;
    padding: 20px 0px 20px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
}

.modal-right {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: transparent;
    padding: 40px 40px 40px 0px;
}

/* Modal Carousel */
.modal-carousel {
    position: relative;
    width: 100%;
    height: calc(100% - 40px);
    display: flex;
    align-items: center;
}

.modal-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
    -ms-overflow-style: auto;
    width: 100%;
    align-items: stretch;
    padding: 0;
    height: 100%;
}

.modal-carousel-track::-webkit-scrollbar {
    height: 8px;
}

.modal-carousel-track::-webkit-scrollbar-track {
    background: transparent;
}

.modal-carousel-track::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.modal-carousel-track::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-image-card {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding-bottom: 5px;
    gap: 12px;
    height: 100%;
    flex-shrink: 0;
    background-color: transparent;
}

.modal-image-wrapper {
    height: calc(100% - 57px);
    width: auto;
    aspect-ratio: 625/1111;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #000000;
    background-color: #ffffff;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.modal-image-label {
    display: block;
    padding: 10px 18px;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    height: 40px;
}

.modal-image-label:hover {
    background-color: #333333;
}

.modal-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-carousel-nav:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.modal-carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-carousel-nav.prev {
    left: 10px;
}

.modal-carousel-nav.next {
    right: 10px;
}

.modal-carousel-nav svg {
    color: #000000;
}

/* Modal Right Content */
.modal-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000;
}


.modal-title-green {
    color: #2d7a5e;
    font-weight: 800;
}

.deliverables {
    margin-bottom: 40px;
}

.deliverables.hidden {
    display: none;
}

.deliverables-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000000;
}

.deliverables-list {
    list-style: none;
    padding: 0;
}

.deliverables-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

.deliverables-list li::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background-color: #e8f4f0;
    color: #2d7a5e;
    font-weight: 700;
    font-size: 13px;
    margin-right: 12px;
    flex-shrink: 0;
    border: solid;
}

.deliverables-list li:nth-child(1)::before { content: '1'; }
.deliverables-list li:nth-child(2)::before { content: '2'; }
.deliverables-list li:nth-child(3)::before { content: '3'; }
.deliverables-list li:nth-child(4)::before { content: '4'; }
.deliverables-list li:nth-child(5)::before { content: '5'; }
.deliverables-list li:nth-child(6)::before { content: '6'; }
.deliverables-list li:nth-child(7)::before { content: '7'; }
.deliverables-list li:nth-child(8)::before { content: '8'; }

.modal-visit-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid #000000;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    letter-spacing: 0.3px;
    align-self: flex-start;
}

.modal-visit-btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

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

.lightbox-back {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s ease;
}

@media(max-width: 768px) {
    .lightbox-back, .modal-close {
        top: 10px;
        left: 10px;
        width: 25px;
        height: 25px;
    }

    .lightbox-back > svg ,.modal-close > svg{
        width: 15px;
        height: 15px;
    }
}

.lightbox-back:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-view-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.view-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-toggle-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
}

.view-toggle-btn.active {
    background-color: #ffffff;
    border-color: #ffffff;
}

.view-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.view-toggle-btn.active .view-icon {
    fill: #000000;
}

.lightbox-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding: 0;
}

.lightbox-image-container[data-current-view="mobile"] img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    cursor: default;
}

.lightbox-image-container[data-current-view="desktop"] img {
    width: 100%;
    height: auto;
    display: block;
    cursor: default;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .carousel {
        grid-auto-columns: calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .lightbox-view-toggle {
        display: flex;
        top: 10px;
        right: 10px;
    }

    .view-toggle-btn {
        width: 25px;
        height: 25px;
    }

    .view-icon {
        width: 15px;
        height: 15px;
    }

    .carousel {
        grid-auto-columns: calc(50% - 10px);
        margin-bottom: 10px;
        padding-left: 2.5px;
        padding-right: 2.5px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .modal-content {
        width: 95%;
        max-width: none;
        max-height: 95vh;
        height: auto;
        overflow-y: auto;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 0px;
        height: auto;
        max-height: none;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }

    /* Change order on mobile: title, deliverables, carousel, visit button */
    .modal-right {
        order: 1;
        padding: 0 30px;
        display: flex;
        flex-direction: column;
    }

    .modal-left {
        order: 2;
        padding: 0 20px;
        overflow: visible;
        height: auto;
    }

    .modal-visit-btn {
        order: 3;
        margin: 0 30px 20px;
        width: calc(100% - 60px);
        align-self: center;
    }

    .modal-carousel {
        height: auto;
    }

    .modal-carousel-track {
        display: flex;
        gap: 20px;
        height: auto;
    }

    .modal-image-card {
        height: auto;
        width: 100%;
        flex-shrink: 0;
    }

    .modal-image-wrapper {
        width: 100%;
        height: auto;
    }

    .modal-image-label {
        width: 100%;
        padding: 10px;
        font-size: 11px;
    }

    .modal-title {
        font-size: 24px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .showcase-section {
        /* margin-bottom: 30px; */
    }

    .section-subtitle {
        margin-bottom: 5px;
    }

    .deliverables {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .showcase-container {
        padding: 20px 0px 0px;
    }

    .carousel-nav {
        width: 32px;
        height: 32px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
        overflow-y: auto;
        /* padding: 15px; */
    }

    .modal-right {
        order: 1;
        padding: 30px 20px 0;
    }

    .modal-left {
        order: 2;
        padding: 10px 20px 20px;
    }

    .modal-carousel-nav {
        width: 20px;
        height: 20px;
    }

    .modal-carousel-nav.prev {
        left: -10px;
    }

    .modal-carousel-nav.next {
        right: -10px;
    }

    .modal-carousel-nav svg {
        width: 16px;
        height: 16px;
    }
}
