/* Fold */

.fold {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(2 * var(--space-xxxl));

    padding: calc(2 * var(--space-xxxl)) var(--space-xxxl);

    position: relative;
}

.fold__img-wrapper {
    width: 100%;
    height: 100%;

    display: flex;

    position: absolute;

    top: 0;
    left: 0;
}

.fold__img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.fold__body {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-m);

    position: relative;

    z-index: 2;
}

.fold-heading__wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

.fold__heading-line {
    text-align: center;
}

/* Info */

.info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);

    padding: calc(2 * var(--space-xxxl)) var(--space-xxxl) 0 var(--space-xxxl);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.info__header {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category__name-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-m);
}

.category__icon-wrapper {
    height: 40px;
}

.category__icon {
    height: 100%;
}

/* Products */

.products {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);

    padding: calc(2 * var(--space-xxxl)) var(--space-xxxl);
}

@media (max-width: 1280px) {
    
}

@media (max-width: 1024px) {
    
}

@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
    
}