/*-------------------
This theme uses Bootstrap v5.1.

It is highly recommended to check out Bootstrap's guiding principles,
strategies, and techniques at https://getbootstrap.com/docs/5.1/extend/approach/
before adding custom styling.

To learn more about Bootstrap v5.1, please check
out https://getbootstrap.com/docs/5.1/getting-started/introduction/.
/*-------------------*/

/*-------------------*/
/* GENERAL */
/*-------------------*/
.omg-category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1200px;
    margin: 50px auto;
    gap: 30px; 
}
.omg-category-box {
    display: flex;
    justify-content: center;
    align-items: center; 
    align-self: center; 
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    background-color: #ffffff; 
    color: #000000;
    transition: background-color 0.3s;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #ddd;
    font-size: 1.1em;
    padding: 5px;
}
.omg-category-box:hover {
    border: 3px solid #ccc;
}
.omg-center-item {
    text-align: center;
    padding: 5px;
}
.omg-center-item img {
    max-width: 400px;
    height: 400px;
    display: block;
}
/*-------------------*/
/* TOP NAV */
/*-------------------*/

/*-------------------*/
/* HEADER */
/*-------------------*/

/*-------------------*/
/* CATEGORY NAV */
/*-------------------*/

/*-------------------*/
/* CONTENT */
/*-------------------*/

/*-------------------*/
/* PRODUCT THUMBS */
/*-------------------*/

/*-------------------*/
/* PRODUCT */
/*-------------------*/

/*-------------------*/
/* CART/CHECKOUT */
/*-------------------*/

/*-------------------*/
/* FOOTER */
/*-------------------*/


/*-------------------*/
/* MEDIA QUERIES */
/*-------------------*/
@media screen and (min-width: 661px){

}

@media screen and (max-width: 1200px) {
    .omg-category-grid {
        max-width: 90%; /* Let the grid take most of the screen */
        gap: 20px;
    }

    .omg-category-box {
        /* Slightly smaller circles for medium screens */
        width: 100px;
        height: 100px;
    }
    
    .omg-center-item img {
        /* Scale image down */
        max-width: 400px;
        height: 400px;
    }
}

@media screen and (max-width: 660px) {
    .omg-category-grid {
        /* Switch to 2-column layout to fit on phones */
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .omg-category-box {
        /* Smaller circles for smaller screen */
        width: 90px;
        height: 90px;
        font-size: 0.9em;
    }
    
    .omg-center-item {
        /* Force the image to span both columns */
        grid-column: span 2; 
        padding: 10px 0;
    }
    
    .omg-center-item img {
        /* Fluid height and smaller max-width for vertical stack */
        height: auto; 
        max-width: 80%;
    }
}

@media screen and (max-width: 340px) {
    .omg-category-box {
        /* Smallest circles for tiny screens */
        width: 70px;
        height: 70px;
        font-size: 0.7em;
    }
    
    .omg-center-item img {
        /* Tiny image */
        max-width: 70%;
    }
}