main {
    background-color: #f5f5f7;
}

/* Evidence Gallery Styles */
.evidence-gallery-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.evidence-gallery {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

.evidence-gallery-item {
    display: none;
    width: 100%;
}

.evidence-gallery-item.active {
    display: block;
}

.evidence-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Modern Features Nav Styles (from modern-home-sugaring.css) */
.modern-features-nav-container {
    gap: 0.5rem;
}

.modern-features-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.modern-features-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modern-features-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modern-features-nav .material-symbols-outlined {
    font-size: 24px;
}

/* Роздільники між блоками */
.border-secondary {
    border-color: #c8c8cc !important;
}

