.merch { margin-bottom: 50px; } /* section */
.merch__list { display: grid; grid-template-columns: 25% 25% 25% 25%; gap: 15px; }
.merch__item { 
    text-align: center; 
    margin-bottom: 30px;
}

.merch__attribute select { display: block; width: 100%; padding: 10px; }
.merch__item .merch__action { padding-top: 5px; }
.merch__item .merch__action a { display: block; text-align: center; }
.merch__item .merch__action a:hover { text-decoration: none; }
/* .merch__item .merch__image img { width: 100%; } */

.merch__item .merch__action a.button {
    background: var(--color-inverse);
    line-height: 40px;
    width: 100%;
    margin: 0;
}

.merch__item h4 {
    font-size: 21px;
}

.merch__item .merch__image img.image_back { display: none; }
.merch__item .merch__image:hover img.image_front { display: none; }
.merch__item .merch__image:hover img.image_back { display: block; }
.merch__item .merch__image {     
    display: flex;
    justify-content: center;
}

.merch__price {
    margin-top: 4px;
}

.merch__sidebar {
    transition: all 0.3s ease-out;
    position: fixed;
    z-index: 9999;
    top: 0;
    height: 100%;
    width: 400px; right: -450px;
    background: white;
    color: #282828;
}

.merch__sidebar.-active {
    display: block;
    right: 0;
}

.merch__sidebar_content {
    overflow: auto;
    position: relative;
    padding: 15px;
    height: 100%;
}


.carrito__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.carrito__header h1 {
    margin-top: 0;
}

.carrito__header a.btn-times {
    display: inline-block;
    padding: 0 15px;
    text-decoration: none;
    font-size: 35px;
    margin-top: -10px;
    margin-right: -15px;
    color: #585858;
}

.card__empty { padding: 15px 0; font-style: italic; text-align: center; }

.carrito__main {
    font-size: 14px;
    border-top: 1px solid #efefef;
}
.carrito__main .item {
    display: grid;
    grid-template-columns: 25% 75%;
    border-bottom: 1px solid #efefef;
    padding-top: 10px;
}

.carrito__main .item img {
    /* width: 100%; */
}

.carrito__main .item h3 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.carrito__main .item__meta__units_price {
    display: flex;
    justify-content: space-between;
}

.carrito__main .item__meta__units_price .units {
    display: inline-block;
    padding: 0 5px;
}

.carrito__main .price__unit { font-size: 90%; }
.carrito__main .item__meta__price_total { font-weight: 600; padding-top: 8px; }



.carrito__footer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 15px;
    width: 100%;
}

.carrito__footer .btn-primary {
    display: block;
    padding: 10px 15px;
    text-align: center;
    color: white;
    background-color: var(--color-secondary,hotpink);
    /*background-color: hotpink;*/
    font-weight: bold;
    margin-top: 15px;
    text-decoration: none;
    border-color: transparent;
}

.carrito__footer .btn-primary:hover {
    opacity: 0.8;
}

.carrito__footer__shipping {
    /* position: absolute; */
    bottom: 0px;
    left: 0px;
    padding: 15px;
    width: 100%;
}

.carrito__footer__shipping .btn-primary {
    display: block;
    padding: 10px 15px;
    text-align: center;
    color: var(--color, var(--color-primary,white));
    background-color: var(--color-secondary,hotpink);
    /*background-color: hotpink;*/
    font-weight: bold;
    margin-top: 15px;
    text-decoration: none;
    border-color: transparent;
}

.carrito__footer__shipping .btn-primary:hover {
    opacity: 0.8;
}

@media only screen and (max-width: 800px) {
    .merch__list { grid-template-columns: 100%; }
    .merch__sidebar { width: 100%; }
}

.shipping__main{
    margin-top: 5px;
}


.image_front{
    width: 250px;
    height: 250px;
}

.image_back{
    width: 250px;
    height: 250px;
}

.item__photo .image_front{
    width: 100%;
    height: auto;
}

.item .item__meta{
    margin-left: 5px;
}


.merch__action .button {
    display: inline-flex;
    height: 40px;
    width: 100%;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: .8em;
    letter-spacing: 1.5px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.btn-merch-add {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-merch-add a {
    position: relative;
    left: 0;
    transition: all .35s ease-Out;
    text-decoration: none;
    color: var(--color-primary);
}

.dub-arrow {
    width: 100%;
    height: 100%;
    background: var(--color-secondary);
    left: -100%;
    position: absolute;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease-Out;
    bottom: 0;
}

.btn-merch-add i {
    width: 20px;
    height: auto;
    color: var(--color-primary);
}

.btn-merch-add:hover .dub-arrow {
    left: 0;
}

.btn-merch-add:hover a {
    left: 150px;
}


@media only screen and (max-width: 800px) {
    .merch__image .image_front,
    .merch__image .image_back 
    {
        width: 100%;
        height: auto;
    }
}