.section-1 {
    width: 100vw;
    height: fit-content;
    display: grid;
    justify-content: center;
    align-items: end;
    margin-top: calc(var(--regular) + var(--large) + 4rem);
}

.section-1 > div {
    width: var(--responsive-width);
    max-width: 1440px;
    height: fit-content;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-rows: auto auto;
    gap: var(--regular);
    position: relative;
}

.section-1 > div > .section-1-image {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    aspect-ratio: 1.6 / 1;
    padding: 0;
}

.section-1 > div > .section-1-image > img {
    position: relative;
}

.section-1 > div > .section-1-image > img:nth-child(1) {
    width: 55%;
    min-width: var(--xxx-large);
}

.section-1 > div > .section-1-image > img:nth-child(2) {
    width: 45%;
    position: absolute;
    transform: rotate(14.26deg);
    top: var(--medium);
    min-width: calc(var(--xxx-large) - var(--medium));
    right: var(--regular);
}

@media (min-width: 600px) {
    .section-1 > div {
        grid-template-columns: 3fr 2fr;
        gap: var(--medium);
        grid-template-rows: unset;
        gap: var(--medium);
    }

    .section-1 > div > .section-1-image {
        display: block;
    }


    .section-1 > div > .section-1-image > img:nth-child(1) {
        width: 90%;
    }

    .section-1 > div > .section-1-image > img:nth-child(2) {
        position: relative;
        width: 70%;
        left: var(--medium);
    }
}

@media (min-width: 800px) {
    .section-1 > div {
        grid-template-columns: 2fr 3fr;
        gap: var(--medium);
    }

    .section-1 > div > .section-1-image {
        padding: var(--medium) 0 var(--medium) 0;
    }

    .section-1 > div > .section-1-image > img:nth-child(1) {
        width: 60%;
    }

    .section-1 > div > .section-1-image > img:nth-child(2) {
        position: absolute;
        width: 50%;
        left: unset;
        right: 0;
    }
}

@media (min-width: 1024px) {
    .section-1 > div {
        grid-template-columns: 2fr 3fr;
        gap: var(--medium);
    }
}
/* Section 2 */
.section-2 {
    width: 100vw;
    height: fit-content;
    display: grid;
    justify-content: center;
    align-items: end;
}

.section-2 > div {
    width: var(--responsive-width);
    max-width: 1440px;
    height: fit-content;
    padding-top: calc(var(--regular) + var(--regular) + 4rem);
    padding-bottom: var(--x-large);
    display: grid;
    justify-content: center;
    align-items: end;
    gap: var(--medium);
}

.section-2 > div > h1 {
    width: 100%;
    text-align: center;
}

.section-2 > div > .product-categories {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: var(--small);
}

.product-categories > a {
    padding: var(--regular) var(--medium) var(--regular) var(--medium);
    border-radius: var(--small);
    background-color: var(--light-gray-60);
    transition: var(--cubic-bezier) 300ms;
    color: var(--black);
    cursor: pointer;
}

.product-categories > a:hover {
    background-color: var(--light-gray-100);
}

[data-theme="dark"] .product-categories > a {
    background-color: var(--light-gray-100);
}

[data-theme="dark"] .product-categories > a:hover {
    background-color: var(--light-gray-80);
}

.product-categories-active {
    background-color: var(--yellow) !important;
}

.section-2 .products-container {
    width: var(--responsive-width);
    max-width: 1440px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--regular);
}

.product {
    width: calc(100% - var(--medium) - var(--medium));
    height: calc(100% - var(--medium) - var(--medium));
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    background-color: var(--tertiary-color);
    padding: var(--medium);
    gap: var(--small);
    justify-content: space-between;
}

.product > img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: var(--xxx-large);
    justify-self: center;
    object-fit: contain;
}

.product > div {
    display: grid;
    gap: var(--regular);
}

.product > div > div {
    display: grid;
    gap: var(--x-small);
}
/* Section 2 */
/* Section 2 Responsive */
@media (min-width: 600px) {
    .section-2 .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .section-2 .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Section 2 Responsive */
