.breadcrumbs-list {
    justify-content: left;
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    padding-top: 0;
}

.single-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 20px;
}

.single-images {
    position: sticky;
    top: 20px;
}

.single-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: opacity 0.3s ease;
    margin-bottom: 15px;

    cursor: pointer;
}

.single-img:hover {
    opacity: 0.95;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.gallery-thumb {
    width: 100%;
    /*aspect-ratio: 1 / 1;*/
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumb:hover {
    opacity: 1;
    border-color: var(--sage-green);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--forest-green);
}

/* Лайтбокс */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: var(--warm-white);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--sage-green);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--warm-white);
    background: none;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--sage-green);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--warm-white);
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
}

.single-info {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: left;
}

.single-head {
    display: flex;
    gap: 10px;
}

.single-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--charcoal);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-desc {
    margin-bottom: 20px;

    color: var(--charcoal);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.single-price {
    font-size: 20px;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 1px;
}

.single-button {
    width: fit-content;
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    padding: 10px 24px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.single-button:hover {
    background: var(--forest-green);
    color: var(--warm-white);
    border-color: var(--forest-green);
}

.single-instagram {
    color: var(--sage-green);
    font-size: 24px;
    transition-duration: .5s;
}

.single-instagram:hover {
    color: var(--soft-gray);
}

.single-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(107, 128, 104, 0.15);
}

@media (max-width: 1024px) {
    .single-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .single-images {
        position: relative;
        top: 0;
    }

    .lightbox-prev {
        left: 10px;
        padding: 10px 15px;
    }

    .lightbox-next {
        right: 10px;
        padding: 10px 15px;
    }
}