/* MAIN */

.main-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-title {
    background-color: navajowhite;
    border-radius: 10px;
    text-align: center;
}

.main-content-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.shop-box:visited {
    color: black;
}

.cat-box:visited {
    color: black;
}

.item-box {
    overflow: hidden;
    height: 600px;
    border-radius: 10px;
    position: relative;
}

.iframe-box {
    transform: scale(1.2);
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    }

.item-slug {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    background-color: white;
    padding: 10px;
    bottom: 0;
    color: #282d3a;
    word-wrap: normal;
    word-break: break-word;
    }

.workshop-icon {
    height: 20px;
    margin-block: auto;
}
.shop-link {
    display: flex;
    text-decoration: none;
    color: black;
    gap: 10px;
 }

.holiday-desc {
    height: 600px;
    border-radius: 10px;
    padding-inline: 20px;
    align-content: center;
    text-align: center;
    background-image: url("march_8.jpg");
    background-size: cover;
}

/* CATEGORIES */
.cat-box {
    background-color: white;
    border-radius: 10px;
    align-content: center;
    text-decoration: none;
    color: black;
}
.cat-img {
    margin-inline: auto;
    width: 200px;
    height: 200px;
}
.cat-desc, .shop-desc {
    text-align: center;
    font-size: larger;
    margin-top: 10px;
}

/* SHOPS */
.shops-sections {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.shop-box {
    border-style: solid;
    border-color: #ffe2b2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    padding: 5px;
    background-color: #f7f7fa;
    text-decoration: none;
    color: black;
}
.shop-name {
    font-size: x-large;
    color: #2d3748;
    text-align: center;
}
.shop-logo {
    border-radius: 100%;
    height: 200px;
    width: 200px;
    margin-inline: auto;
}

/* PRODUCT */
/*.products-con {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(5,340px);*/
/*    margin-block: 20px;*/
/*    gap: 50px;*/
/*}*/

/*.prod-item {*/
/*    border-radius: 15px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    position: relative;*/
/*    overflow: clip;*/
/*}*/
/*.prod-frame {*/
/*    display: flex;*/
/*    margin-left: -8px;*/
/*    margin-top: -1px;*/
/*    margin-right: -1px;*/
/*    position: relative;*/
/*    }*/

/*.top-box {*/
/*    display: flex;*/
/*    height: 40px;*/
/*    background-color: white;*/
/*    width: 50px;*/
/*    right: 1px;*/
/*    top: 1px;*/
/*    position: absolute;*/
/*    border-radius: 20px;*/
/*}*/

/*.bottom-box {*/
/*    display: flex;*/
/*    height: 70px;*/
/*    background-color: white;*/
/*    width: 100%;*/
/*    left: 1px;*/
/*    bottom: 0;*/
/*    position: absolute;*/
/*    border-radius: 20px;*/
/*    justify-content: left;*/
/*    align-items: center;*/
/*    text-align: center;*/
/*    padding: 25px;*/
/*    font-size: large;*/
/*}*/

