/*________________________ Version Web _______________________*/
#square {
    background-color: white;
}

/* Homepage Squar Categories Animation */
#square, 
#product-card,
#google, 
#facebook {
    align-self: flex-end;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    transform-origin: bottom;
}

#row1 {
    margin-bottom: 2rem;
}

#square:hover, 
#product-card:hover,
#google:hover, 
#facebook:hover {
    animation-name: bounce;
    animation-timing-function: ease;
}
@keyframes bounce {
0%   { transform: translateY(0); }
50%  { transform: translateY(-10px); }
100% { transform: translateY(0); }
}
#square-img {
    width: 80px;
}

#plus-div {
    display: flex;
    justify-content: end;
}

#plus-button {
    background-color: var(--bahri);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    color: #fff;
    width: 12%;
}


/*________________________ Version Mobile _______________________*/

@media only screen and (max-width: 600px) {

    /******** Categories Icons *********/
    #row1 {
        margin: 0 10px;
        margin-bottom: 2rem;
    }

    #square p {
        font-size: 11px;
    }

    #square-img {
        width: 60px;
    }

    #plus-button {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #div-hidden {
        display: none;
    }
}