.bread-crumbs {
    font-weight: bold;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 1.5em;
}

.store-link {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-thickness: 0.15em;
    color: var(--mainFontColor);    
}

h1 {
    font-size: 1.75rem;
    letter-spacing: 3px;
}

.product-title {
    text-align: center;
}

.pop-up-info {
    font-size: 1.25rem;
    margin-top: 1em;
    text-align: center;
}

.row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4em 0;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-content: center; */
    flex-wrap: wrap; 
    width: 100%;
    /* max-width: 700px; */
    gap: 2rem;
    margin-top: 2rem;
}

.product {
    width: 60%;
    line-height: 0;
}

.product img {
    width: 100%;
    line-height: 0;
}

.buttons-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.buttons-group a {
    text-decoration: none;
}

.button-style {
    background-color: var(--greenColorMain);
    border-radius: 4px;
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: 1.5px;
    line-height: 120%;
    padding: 1em;
    width: 100%;
}

.synopsis {
    text-align: left;
    margin-top: 2rem;
}

.synopsis h2 {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-thickness: 0.15em;
}

.synopsis p {
    font-size: 1.25rem;
    letter-spacing: 1px;
    margin-top: .5em;
}

/* .main-text {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: .5em;
} */

/*-----HANDLE LANDSCAPE SCREEN SIZE-------------------------------------*/
@media screen and (orientation: landscape) {
    .product {
        width: 30%;
    }
}

/*-----HANDLE LARGER SCREEN SIZE-------------------------------------*/
@media screen and (min-width: 875px) {
    .container {
        text-align: left;
    }

    .row {
        align-items: flex-start;
    }

    .col {
        flex-direction: row;
        /* align-items: flex-start; */
        justify-content: space-between;        
    }
    
    .product {
        width: 40%;
        line-height: 0;
    }

    .buttons-group {
        width: 50%;
    }
}