* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-logo .logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-logo .logo-text:hover {
    color: #666;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #888;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c2c2c;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-top: 200px;
    background: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/main.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 60px 40px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 18px;
    font-weight: 500;
    color: #888;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #444;
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: -1px;
}

.about {
    padding: 100px 0;
    background-color: #fafafa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects {
    padding: 100px 0;
}


.project-card,
.painting-card,
.item-card {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.project-card:hover,
.painting-card:hover,
.item-card:hover {
    transform: translateY(-8px);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
}

.project-card::before,
.painting-card::before,
.item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 10px;
}

.project-card:hover::before,
.painting-card:hover::before,
.item-card:hover::before {
    opacity: 1;
}

.project-image,
.painting-image,
.item-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.project-image img,
.painting-image img,
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img,
.painting-card:hover .painting-image img,
.item-card:hover .item-image img {
    transform: scale(1.05);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

.project-info,
.painting-info,
.item-info {
    padding: 30px;
    position: relative;
}

.project-title,
.painting-title,
.item-title {
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.project-card:hover .project-title,
.painting-card:hover .painting-title,
.item-card:hover .item-title {
    color: #333;
}

.project-area,
.painting-size,
.painting-medium,
.item-material,
.item-price {
    color: #888;
    font-size: 14px;
    margin-bottom: 4px;
}

.item-price {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 16px;
    margin-top: 8px;
}

.services {
    padding: 100px 0;
    background-color: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-title {
    font-size: 24px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #f8f8f8;
    border-radius: 12px;
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2c2c2c;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.social-link svg {
    flex-shrink: 0;
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-container {
    text-align: center;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 20px;
}

.qr-image {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-text {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.form-button {
    padding: 16px 32px;
    background-color: #2c2c2c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background-color: #444;
}

.footer {
    background-color: #2c2c2c;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer p {
    color: #999;
}

/* Project Page Styles */
.project-page {
    padding-top: 80px;
}

.project-hero {
    padding: 60px 0 40px;
    background-color: #fafafa;
}

.project-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.project-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-breadcrumb a:hover {
    color: #2c2c2c;
}

.project-breadcrumb span {
    color: #2c2c2c;
}

.project-hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.project-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-value {
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

.project-main-image {
    padding: 60px 0;
}

.main-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.main-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.project-content {
    padding: 60px 0;
    background-color: #fafafa;
}

.project-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.project-description h2 {
    font-size: 32px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.project-description h3 {
    font-size: 24px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 40px 0 20px 0;
}

.project-description p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.features-list li:before {
    content: "•";
    color: #2c2c2c;
    position: absolute;
    left: 0;
}

.features-list li:last-child {
    border-bottom: none;
}

.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-details,
.contact-designer {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.project-details h3,
.contact-designer h3 {
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.detail-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: #2c2c2c;
    margin-right: 8px;
}

.contact-designer p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-zoom {
    font-size: 24px;
    color: white;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    user-select: none;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 36px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 16px;
    border-radius: 50%;
    transition: background 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

.project-navigation {
    padding: 60px 0;
    background-color: #fafafa;
}

.nav-projects {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-prev,
.nav-next,
.nav-all {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-prev,
.nav-next {
    background-color: #2c2c2c;
    color: white;
}

.nav-prev:hover,
.nav-next:hover {
    background-color: #444;
    transform: translateY(-2px);
}

.nav-all {
    background-color: white;
    color: #2c2c2c;
    border: 1px solid #e0e0e0;
}

.nav-all:hover {
    background-color: #f8f8f8;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Кастомные стили для Swiper */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

.swiper-pagination {
    bottom: 0px !important;
    z-index: 9999;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e0e0e0;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #2c2c2c;
    transform: scale(1.2);
}

/* Paintings and Items Sections */
.paintings {
    padding: 100px 0;
    background-color: #fafafa;
}

.items {
    padding: 100px 0;
}

.painting-card,
.item-card {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.painting-card:hover,
.item-card:hover {
    transform: translateY(-8px);
    text-decoration: none;
    color: inherit;
}

.painting-image,
.item-image {
    height: 280px;
    overflow: hidden;
}

.painting-image img,
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.painting-info,
.item-info {
    padding: 30px;
}

.painting-title,
.item-title {
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.painting-size,
.painting-medium,
.item-material {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.item-price {
    color: #2c2c2c;
    font-size: 18px;
    font-weight: 600;
    margin-top: 12px;
}

/* Painting and Item Pages */
.painting-page,
.item-page {
    padding-top: 80px;
}

.painting-hero,
.item-hero {
    padding: 60px 0 40px;
    background-color: #fafafa;
}

.painting-breadcrumb,
.item-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.painting-breadcrumb a,
.item-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.painting-breadcrumb a:hover,
.item-breadcrumb a:hover {
    color: #2c2c2c;
}

.painting-breadcrumb span,
.item-breadcrumb span {
    color: #2c2c2c;
}

.painting-hero-title,
.item-hero-title {
    font-size: 48px;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.painting-meta,
.item-meta {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.price {
    color: #2c2c2c !important;
    font-weight: 600;
}

.availability-available {
    color: #28a745;
    font-weight: 500;
}

.availability-order {
    color: #ffc107;
    font-weight: 500;
}

.painting-main-image,
.item-main-image {
    padding: 60px 0;
}

.painting-content,
.item-content {
    padding: 60px 0;
    background-color: #fafafa;
}

.painting-grid,
.item-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.painting-description,
.item-description {
}

.painting-description h2,
.item-description h2 {
    font-size: 32px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.painting-description h3,
.item-description h3 {
    font-size: 24px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 40px 0 20px 0;
}

.painting-description p,
.item-description p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.details-list,
.care-list {
    list-style: none;
    padding: 0;
}

.details-list li,
.care-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.details-list li:before,
.care-list li:before {
    content: "•";
    color: #2c2c2c;
    position: absolute;
    left: 0;
}

.details-list li:last-child,
.care-list li:last-child {
    border-bottom: none;
}

.painting-sidebar,
.item-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.painting-specs,
.item-specs,
.purchase-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.painting-specs h3,
.item-specs h3,
.purchase-info h3 {
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.spec-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item strong {
    color: #2c2c2c;
    margin-right: 8px;
}

.price-spec {
    font-size: 18px;
    font-weight: 600;
}

.purchase-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.painting-gallery,
.item-gallery {
    padding: 80px 0;
}

.painting-navigation,
.item-navigation {
    padding: 60px 0;
    background-color: #fafafa;
}

.nav-paintings,
.nav-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 20px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        font-size: 18px;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

    .nav-toggle {
        display: block;
        transition: all 0.3s ease;
        z-index: 1001;
        position: relative;
        padding: 5px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle:hover {
        background-color: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero::before {
        width: 100%;
    }

    .hero::after {
        width: 100%;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.9) 100%);
    }

    .hero-content {
        padding: 40px 20px;
        margin: 0 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat {
        width: 100%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .qr-container {
        padding: 30px 20px;
    }

    .qr-image {
        width: 150px;
        height: 150px;
    }

    .container {
        padding: 0 16px;
    }

    /* Project Page Mobile Styles */
    .project-hero-title {
        font-size: 32px;
    }

    .project-meta {
        gap: 20px;
    }

    .main-image-wrapper img {
        height: 300px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .nav-projects {
        flex-direction: column;
        gap: 16px;
    }

    .nav-prev,
    .nav-next,
    .nav-all {
        width: 100%;
        text-align: center;
    }

    /* Lightbox Mobile Styles */
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-counter {
        bottom: 20px;
    }

    /* Slider Mobile Styles */
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }


    .painting-hero-title,
    .item-hero-title {
        font-size: 32px;
    }

    .painting-meta,
    .item-meta {
        gap: 20px;
    }

    .painting-grid,
    .item-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-paintings,
    .nav-items {
        flex-direction: column;
        gap: 16px;
    }
}