main {
    display: block;
    margin-inline: 50px;
}

.item-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.item-title {
    text-align: center;
    background-color: white;
}

.shop-info-con {
    display: grid;
    grid-template-columns: 150px auto;
    gap: 20px;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
}

.same-items {
    margin-top: 10px;
    padding-inline: 5px;
}

.shop-pic{
    height: 20px;
    width: 20px;
    margin-block: auto;
}

.write-to {
    font-size: x-large;
    margin-block: 20px;
}

.write-to-img {
    height: 70px;
    border-radius: 10px;
}

.shop-link{ 
     display: inline-flex;
     background-color: #FFD482;
     padding: 5px;
     border-radius: 5px;
}
.item-name {
    margin-bottom: 10px;
}

.shop-label {
    padding-block: 10px;
}

.shop-logo {
    height: 150px;
    width: 150px;
    border-style: solid;
    border-color: lightgray;
    border-radius: 20px;
}
.item-title {
    display: none;
}

.item-cont {
    overflow: hidden;
    height: auto;
    border-radius: 10px;
}

#item-iframe-box {
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    margin-top: -70px;
    margin-left: -8px;
    margin-bottom: -130px;
    }

.same-items-title {
    background-color: navajowhite;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 10px;
}

 /* unvisited link */
.item-desc > a:link {
    text-decoration: none;
    color: black;
}

/* visited link */
.item-desc > a:visited {
    color: black;
}

/* mouse over link */
.item-desc > a:hover {
    color: black;
}

/* selected link */
.item-desc > a:active {
  color: black;
}

/* TABLET */
@media(max-width: 920px){
    .item-cont {
        overflow: hidden;
        width: 350px;
        height: auto;
        border-radius: 10px;
        position: relative;
    }
    .write-to {
        font-size: large;
        margin-block: 20px;
    }
}


/* MOBILE */
@media(max-width: 500px) {
    main {
        margin-inline: 0;
    }
    .item-cont {
        overflow: hidden;
        width: auto;
        height: auto;
        border-radius: 10px;
        position: relative;
    }
    .item-content-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .item-title {
        display: flow;
        border-radius: 5px;
    }
    .item-price {
        font-size: large;
        text-align: center;
    }
    .item-name {
        display: none;
    }
    .shop-info-con {
        grid-template-columns: 1fr;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-block: 20px;
        gap: 0;
        margin-bottom: 0;
        background-color: white;
        border-radius: 10px;
    }
    .shop-link {
        text-align: center;
        justify-content: center;
    }
    .item-desc {
        display: flex;
        flex-flow: column-reverse;
    }
    .item-name{
        margin-bottom: 0;
    }
    .shop-label {
        padding-block: 0;
    }
    .write-to {
        font-size: large;
        margin-block: 10px;
        padding-inline: 10px;
        text-align: center;

    }
    .write-to-img {
        height: 50px;
        border-radius: 10px;
    }
    .write-to-link {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    .shop-contacts {
        background-color: #e8e8e8;
        border-radius: 5px;
    }
}
