#main {
    background: white;
}

#topGradient {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 232, 212, 1) 100%);
    width: 100%;
    height: 360px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

#hero{
    z-index: 2;
    position: relative;
}

#hero h1 {
    text-align: center;
    margin: 0;
}

#hero h1 span {
    color: var(--main-color);
    font-family: "Funnel Display", sans-serifl !important;
    white-space: nowrap;
}

#hero p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.chimi {
    max-width: 100px;
}

#heroButtonContainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#bentoBox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    height: 500px;
    width: 100%;
    gap: 20px;
    margin: 0 auto;
    margin-top: 30px;
}

#bentoBox div{
    border: 1px solid rgba(255, 159, 67, 0.5);
}

#bentoBox img, #bentoBox video, #bentoBox div{
    border-radius: var(--border-radius);
}

.bento1 {
    grid-area: 1 / 1 / 3 / 2;
}

.bento1 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento2 {
    grid-area: 1 / 2 / 2 / 3;
    background-image: url("../../assets/homepage/mask.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bento3 {
    grid-area: 2 / 2 / 3 / 3;
    background-image: url("../../assets/homepage/mask2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#shopByCategory{
    margin-top: 60px;
}

#shopByCategory h2 {
    margin-bottom: 0;
}

.swiper-button-next, .swiper-button-prev{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-color);
    color: white;
    padding: 10px;
}

.categorySwiper{
    margin: 20px 0;
}

.swiper-wrapper{
    height: auto !important;
}

.category-item{
    text-align: center;
    border: 1px solid rgba(255, 159, 67, 0.5);
    border-radius: var(--border-radius);
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.category-item:hover{
    opacity: 0.8;
}

.category-item img{
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    margin: 0 auto;
    background-color: rgba(255, 159, 67, 0.5);
}

.categorySwiper .swiper-slide{
    width: 300px;
}

#newProductos{
    margin-top: 60px;
}

#newProductos h2 {
    margin-bottom: 0;
}

.newProductsSwiper{
    margin: 20px 0;
}

.newProductsSwiper .swiper-slide{
    width: 250px;
}

.product-item{
    text-align: center;
    border: 1px solid rgba(255, 159, 67, 0.5);
    border-radius: var(--border-radius);
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item a{
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item img{
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.product-item p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.product-item h3{
    font-size: 1rem;
    margin: 0 0 10px 0;
    flex-grow: 1;
}

.product-price{
    font-weight: bold;
    color: var(--main-color);
    margin-top: auto;
}

.category-item p{
    margin-top: 15px;
}

.brands-list{
    list-style-type: none;
    margin-left: 0;
}

.brands-list a{
    color: var(--main-color-font);
    font-family: "Funnel Display", sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-list li{
    border-bottom: 1px dashed rgba(255, 159, 67, 0.5);
    padding: 20px 0;
    font-size: 40px;
}

.brands-list img{
    max-width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
    border: 1px solid rgba(255, 159, 67, 0.5);
    margin-right: 10px;
    padding: 3px;
}

.brands-list li svg{
    width: 50px;
    height: 50px;
    object-fit: contain;
    fill: var(--main-color);
    margin-left: auto;
}

#envios{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.envio-card{
    border: 1px solid rgba(255, 159, 67, 0.5);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
}

.envio-top{
    display: flex;
    justify-content: center;
    align-items: center;
}

.envio-card h3{
    font-size: 24px;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 30px;
}

.envio-bottom p{
    margin-bottom: 0;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #envios{
        grid-template-columns: repeat(1, 1fr);
    }
}