/* font-family: 'DM Sans', sans-serif; */
/* font-family: 'Inter', sans-serif; */
:root {
    --sweet-red: #FCCED8;
    --sweet-darkred: #D5819B;
    --sweet-blue: #8fcdc2;
    --sweet-darkblue: #74B5AC;
    --sweet-yellow: #f9efd7;
    --sweet-darkorange: #F6D8CB;
    --warm-black: #393536;
    --black: #201e1c;
    --grey: #bababa;
    --just-white: #fff;
    --mini: 1rem;
    --sm: 1.4rem;
    --smplus: 1.8rem;
    --md: 2.6rem;
    --lg: 3.4rem;
    --lgplus: 5.4rem;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
    font-family: "DM Sans", sans-serif;   
}


table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  td,
  th {
    padding: 0;
  }

  th,
td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #E1E1E1; }


  /* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
    cursor: pointer; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }



/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
    list-style: circle inside; }
  ol {
    list-style: decimal inside; }
  ol, ul {
    padding-left: 0;
    margin-top: 0; }
  ul ul,
  ul ol,
  ol ol,
  ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%; }
  li {
    margin-bottom: 1rem; }

    ul
    {
        list-style: none;
    }


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    display: inline-block;
    margin: 20px auto 10px;
    padding: 14px 5px 5px 5px;
    
    height: 50px;
    background-color: var(--sweet-darkred);
    border-radius: 4px;
    box-shadow: rgba(89, 73, 30, 0.16) 0px 4px 8px;
    font-size: var(--smplus);
    font-weight: bold;
    text-decoration: none;
    color: var(--just-white);
    text-align: center;
    text-shadow: black 1px 1px 5px;
    user-select: none; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
    background-color: var(--sweet-darkblue);
    box-shadow: 0px 4px 8px rgba(14, 14, 14, 0.729);
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB; }


    .header
    {
        background-color: var(--sweet-darkred);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 99999;
        width: 100%;
        min-width: 320px;
        height: 60px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
    }
    
    .header-logo {
        margin-left: 200px;
        margin-top: 5px;
        height: 49px;
        opacity: 80%;
        display: none;   
    }
    .header-logo2 {
        margin-left: 30px;
        margin-top: 5px;
        height: 49px;
        opacity: 80%;
    
    }
    .nav
    {   display: block;
        margin-top: 60px;
        width: 100%;
        height: auto;
        position: fixed;
        background-color: var(--sweet-darkred);
        overflow: hidden;
        max-height: 0;
        transition: max-height .5s ease-out;
    }
    #ultimo-menu{
        border-top: 1px solid var(--just-white);
    }
    
 

.hamb{
    cursor: pointer;
    float: right;
    padding: 30px;
}


.hamb-line{
    background: var(--just-white);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-line::before,
.hamb-line::after
{
    background: var(--just-white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before
{
    top: 5px;
}

.hamb-line::after
{
    top: -5px;
}

.side-menu 
{
    display: none;
}

.side-menu:checked ~ nav
{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line 
{
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before 
{
    transform: rotate(-45deg);
    top:0;
}

.side-menu:checked ~ .hamb .hamb-line::after 
{
    transform: rotate(45deg);
    top:0;
}
    
    

.submenu #carrito{
    display: none;
}
.submenu:hover #carrito{
    display: block;
    position: absolute;
    right: 320px;

    top:100%;
    z-index: 1;
    background-color: var(--just-white);
    padding: 20px;
    min-height: auto;
    min-width: 500px;
    border-radius: 0 0 15px 15px;
    font-size: var(--sm);
    color: var(--sweet-darkred);
    text-align: center;
}

#img-carrito{
    margin-left: 5px;
    margin-top: 5px;
    height: 100%;
    margin-right: 180px;
    opacity: 80%;
    filter: brightness(100);
}
#cantidad-carrito{
    position: absolute;
    top: 19px;
    right: 365px;
    width: 20px;
    text-align: center;
    padding-top: 3px;
    font-weight: bolder;
    color: var(--sweet-darkred);
}


@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
  }
  
  .vibrar {
    animation: shake 0.5s;
  }

#comprar-carrito{
    width: 68%;
}
#vaciar-carrito{
    width: 30%;
    padding: 16px 0 0 0;
    font-size: var(--sm);
}
.agregar-carrito {
    margin:10px 0;
}

main {
    background-color: var(--sweet-yellow);
    width: 100%;
    height: auto;
    min-width: 320px;
}
.carrusel-img-container {
   margin-top: 6px;
    position: relative;
    width: 100%;
    min-width: 320px;
    height: 50vh;
    min-height: 500px;
    background-image: url('./assets/img/carrusel-background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}
.carrusel-title {
    width: 70%;
    height: 70%;
    min-width: 320px;
    margin: 0 auto;
}
.carrusel-img-container h1{
    padding-top: 150px;
    font-size: 4.4rem;
    font-weight: bold;
    line-height: 4.8rem;
    color: var(--just-white);
    text-align: center;
    text-shadow: 2px 2px 5px black;
}
.carrusel-img-container .carrusel-button 
{
    display: block;
    margin: 50px auto;
    padding: 14px 5px 5px 5px;
    width: 42%;
    min-width: 300px;
    height: 50px;
    background-color: var(--sweet-darkred);
    border-radius: 4px;
    box-shadow: rgba(89, 73, 30, 0.16) 0px 4px 8px;
    font-size: var(--smplus);
    font-weight: bold;
    text-decoration: none;
    color: var(--just-white);
    text-align: center;
    text-shadow: black 1px 1px 5px;
    user-select: none;
}
.carrusel-button:hover 
{   background-color: var(--sweet-darkblue);
    box-shadow: 0px 4px 8px rgba(14, 14, 14, 0.729);
}

    
button{
    display: inline-block;
    background-color: var(--sweet-darkred);
    color: var(--just-white);
    font-size: var(--smplus);
    border-radius: 3px;
    border: none;
    padding: 10px;
    width: 100%;
    margin: 5px auto 0;
   
    box-shadow: 1px 1px 4px var(--grey);
    text-transform: uppercase;

    

} 

#boton-x{
    display: inline-block;
    background-color: var(--sweet-darkblue);
    color: var(--just-white);
    font-size: var(--mini);
    border: none;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50%;
    padding: 10px 10px 10px 10px;
    height: 30px;
    width: 30px;
    margin-top: 0px;
    opacity: 90%;
    filter: none;
    box-shadow: none;
    text-transform: uppercase;
}

#boton-x:hover{
        background-color: rgb(228, 57, 57);
        box-shadow: none;
        filter: none;

}

th{
    color: var(--sweet-darkred);
    font-size: var(--smplus);
    text-transform: uppercase;
}
th:first-child{
    border-radius: 8px 0 0 0;
}
th:last-child{
    border-radius: 0 8px 0 0;
}
tr{
    color: var(--warm-black);
    font-weight: bold;
    opacity: 90%;
}


.agregar-carrito:hover{
    background-color: var(--sweet-blue);
    filter: drop-shadow(0px 0px 6px rgba(105, 250, 243, 0.849));
}




button:hover{
    background-color: #25d366;
    filter: drop-shadow(0px 0px 6px rgba(105, 250, 124, 0.849));
}

.main-product-container { 
    position: relative;
    background-color: var(--sweet-darkorange);
    width: 100%;
    min-width: 320px;
    height: auto;
    padding: 20px 10px 50px 10px;
    border-top: 3px solid var(--sweet-blue);
}
.products--title {
    width: 80%;
    min-width: 288px;
    margin: 0 auto;
}
.products--title h2{
    padding-top: 30px;
    font-size: var(--lg);
    font-weight: bold;
    line-height: 3.6rem;
    color: var(--just-white);
    text-shadow: 0px 0px 4px var(--warm-black);
    text-align: center;
}

.packs-fotos-container{
    margin-top: 20px;    
}
.product-detail--pack{
    background-color: var(--sweet-darkred);
    color: var(--just-white);
    width: 80%;
    margin: 0 auto;
    font-size: var(--sm);
    line-height: 1.3rem;
    text-align: center;
    padding: 15px;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0 4px 8px rgba(89, 73, 30, 0.16);
}

.product-detail--pack h2{
    font-weight: bold;
    text-transform: uppercase;
    font-size: var(--md);
    line-height: 2.7rem;
}
.product-detail--pack p{
    padding-top: 5px;
}
.packs-fotos {
    position: relative;
    display: flex;
    /* overflow-x: scroll; */
    /* white-space: nowrap; */
    justify-content: center;
    /* overscroll-behavior-x: contain; */
    /* scroll-snap-type: x proximity; */
    height: auto;
    width: 80%;
    background-color: var(--sweet-yellow);
    margin: 0 auto;
    padding-bottom: 30px;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 4px 8px rgba(89, 73, 30, 0.16);
    padding-left: 50px;
    padding-right: 50px;
    flex-wrap: wrap;
}
.polaroid-card {
    position: relative;
    scroll-snap-align: center;  
    width: 70%;
    min-width: 280px;
    max-width: 330px;
    height: 350px;
    margin: 20px 10px 0;
    padding: 0 15px;
    background-color: var(--just-white);
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(89, 73, 30, 0.16);
}

.polaroid-card a{
    text-decoration: none;
}

.polaroid-card .fotop {
    display: block;
    height: 75%;
    margin-top: 10px;
    margin-bottom: 5px;
}
.polaroid-card .producto1 {
    background-image: url('./assets/img/polaroid/producto1_img1.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}
.polaroid-card .producto2 {
    background-image: url('./assets/img/fotografias/producto1_img1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}
.polaroid-card .producto3 {
    background-image: url('./assets/img/posters/producto1_img1.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}
.polaroid-card .producto4 {
    background-image: url('./assets/img/portarretratos/producto1_img1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}
.polaroid-card .producto5 {
    background-image: url('./assets/img/albumes/producto1_img1.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}
.polaroid-card .producto6 {
    background-image: url('./assets/img/boxes/producto1_img1.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}
.polaroid-card .producto7 {
    background-image: url('./assets/img/llaveros/producto3_img1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}
.polaroid-card .producto8 {
    background-image: url('./assets/img/otros/producto1_img1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}
.polaroid-card .producto9 {
    background-image: url('./assets/img/sinbordebig.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}

.polaroid-card .producto10 {
    background-image: url('./assets/img/cajafotera.jpeg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 1px var(--warm-black);
}








.product-detail--pack2{
    background-color: var(--sweet-darkred);
    color: var(--just-white);
    width: 90%;
    margin: 30px auto 0;
    font-size: var(--smplus);
    text-align: center;
    padding: 15px;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0 4px 8px rgba(89, 73, 30, 0.16);
    padding: 25px;
}

.diseños-section { 
    position: relative;
    background-color: var(--sweet-yellow);
    width: 100%;
    min-width: 320px;
    height: auto;
    padding: 20px 10px 0px 10px;
    border-top: 3px solid var(--sweet-blue);
}
.diseños-title--container {
    width: 90%;
    min-width: 288px;
    margin: 0 auto;
}
.diseños-title--container h2{
    margin-top: 30px;   
    font-size: var(--lg);
    font-weight: bold;
    line-height: 3.6rem;
    color: var(--sweet-darkred);
    text-shadow: 1px 1px 1.5px var(--warm-black);
    text-align: center;
}
.pack-diseños {
    background-color: var(--sweet-darkorange);
    margin: 0 auto;
    display: flex;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 4px 8px rgba(89, 73, 30, 0.16);
    height: 240px;
    overflow-x: scroll;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    width: 90%;
    justify-content: start;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}







.polaroid-card .polaroid-title {
    display: inline-block;
    font-size: var(--md);
    line-height: 1.8rem;
    text-align: center;
    width: 100%;
    min-width: 208px;
    color: var(--sweet-darkred);
    text-transform: uppercase;
}


.polaroid-text{
    display: flex;
    height: 20%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}






.entregas-container {
    position: relative;
    background-color: var(--sweet-yellow);
    width: 100%;
    min-width: 320px;
    height: auto;
    padding: 20px 10px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.16);
    z-index: 50;
    border-top: 3px solid var(--sweet-blue);
}
.entregas-title{
    width: 80%;
    min-width: 288px;
    height: auto;
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
}
.entregas-title h2{
    font-size: var(--lg);
    font-weight: bold;
    line-height: 3.6rem;
    color: var(--just-white);
    text-align: center;
    background-color: var(--sweet-darkred);
    border-radius: 20px 20px 0 0;
    padding: 16px;
    margin-top: 32px;
}
.entregas-cards-container{
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    padding-bottom: 20px;
}



.entregas-cards{
    position: relative;
    width: 100%;
    min-height: 288px;
    height: auto;
    min-width: 288px;
    margin: 5px 0;
    padding: 0 15px;
    background-color: var(--just-white);
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(89, 73, 30, 0.16);
}
.entregas-cards:first-child{
    margin-top: 0;
    border-radius: 0 0 20px 20px;
}
.contenedorcards{
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: start;
    justify-content: center;
    align-items: center;
}
.contenedorcards1{
    width: 30%;
    min-width: 270px;
    margin: 5px;
}

.entregas-cards .fotop2{
    display: block;
    height: 400px;
    border-radius: 5px;
    }


.entregas-cards h3{
    text-align: center;
    font-size: 4rem;
    line-height: 6rem;
    padding-top: 10px;
    color: var(--sweet-darkred);
    font-weight: bolder;
    line-height: 2.7rem;
    margin-top: 10px;
    margin-bottom: 15px;
}
.entregas-cards p{
    text-align: center;
    font-size: var(--sm);
    color: var(--sweet-darkred);
    font-weight: bolder;
    line-height: 1.8rem;
    margin-bottom: 0px;
}
.entregas-cards .parentesis{
    font-size: 1.1rem;
}
.entregas-cards .solo-los{
    background-color: var(--sweet-darkred);
    border-radius: 5px;
    font-size: var(--smplus);
    padding: 4px;
    margin-bottom: 5px;
    margin-top: 10px;
    color: var(--just-white);
}
.entregas-cards .solo-los-title{
    background-color: var(--sweet-darkblue);
    border-radius: 5px;
    font-size: var(--md);
    line-height: 2.9rem;
    padding: 10px;
    margin-bottom: 5px;
    margin-top: 10px;
    color: var(--just-white);
}

.entregas-cards .entrega-foto2{
    background-image: url(./assets/img/ctes.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--grey);
    box-shadow: 0px 0px 1px var(--warm-black);
}
.entregas-cards .entrega-foto3{
    background-image: url(./assets/img/rcia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--grey);
    box-shadow: 0px 0px 1px var(--warm-black);
}
.entregas-cards .entrega-map1{
    background-image: url(./assets/img/ctesmap2.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--grey);
    box-shadow: 0px 0px 1px var(--warm-black);
}
.entregas-cards .entrega-map2{
    background-image: url(./assets/img/rciamap.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid var(--grey);
    box-shadow: 0px 0px 1px var(--warm-black);
}

.pasos--camera-logo{
    position: absolute;
    top: -34px;
    width: 80px;
    height: 68px;
    background-image: url('./assets/img/logo2.png');
    left: calc(50% - 40px) ;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 80%;
    z-index: 55555;
}
    
footer{
	position: relative;
	bottom: 0;
	background: var(--sweet-darkred);
    border-top: 3px solid var(--sweet-blue);
    color: white;
	height: auto;
	width: 100%;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.16);
    z-index: 55555;
}

.footer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    gap: 25px;
    flex-wrap: wrap;
}
.footer img{
    height: 35px;
    opacity: 70%;
}
.ctes-rcia{
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: var(--smplus);
    text-transform: uppercase;
}

.footer .socials-container p{
    text-align: center;
    font-size: var(--smplus);
    line-height: 1.7rem;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}
.footer .socials{
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 30px;
}


.footer .socials .ig{
    display: inline-flex;
    background-image: url('./assets/icons/insta.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
    filter: invert(1);
}
.footer .socials .fb{
    display: inline-flex;
    background-image: url('./assets/icons/face.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
    filter: invert(1);
}
.footer .socials .wapp{
    display: inline-flex;
    background-image: url('./assets/icons/whatsapp.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
    filter: invert(1);
}

/* Estilos para la barra de desplazamiento */
/* WebKit */
::-webkit-scrollbar {
    width: 18px; /* Ancho de la barra de desplazamiento */
  }
  
  /* Firefox */
  ::-moz-scrollbar {
    width: 18px; /* Ancho de la barra de desplazamiento */
  }
  
  /* Estilos para la pista de la barra de desplazamiento */
  /* WebKit */
  ::-webkit-scrollbar-track {
    background: var(--sweet-darkorange); /* Color de fondo de la pista */
  }
  
  /* Firefox */
  ::-moz-scrollbar-track {
    background: #f1f1f1; /* Color de fondo de la pista */
  }
  
  /* Estilos para el pulgar de la barra de desplazamiento */
  /* WebKit */
  ::-webkit-scrollbar-thumb {
    background: var(--sweet-darkred); /* Color del pulgar */
    border-radius: 4px; /* Radio de la esquina del pulgar */
  }
  
  /* Firefox */
  ::-moz-scrollbar-thumb {
    background: var(--sweet-darkred); /* Color del pulgar */
    border-radius: 4px; /* Radio de la esquina del pulgar */
  }
  
  /* Estilos para el pulgar cuando se mueve sobre él */
  /* WebKit */
  ::-webkit-scrollbar-thumb:hover {
    background: #4e1f2b; /* Color del pulgar al pasar el ratón sobre él */
  }
  
  /* Firefox */
  ::-moz-scrollbar-thumb:hover {
    background: #4e1f2b; /* Color del pulgar al pasar el ratón sobre él */
  }
  




  .menu a {
    display: block;
    text-decoration: none;
    color: var(--just-white);
    font-size: var(--smplus);
    font-weight: bold;
    text-shadow: 0px 1px 4px black;
    padding: 18px 20px;
    text-align: center;
}

.menu a:hover{
    background-color: var(--sweet-blue);
    display: absolute;
    text-shadow: 0px 1px 4px rgb(25, 25, 25); 
}



  @media (min-width: 1173px)
  {.header ul{
      padding-right: 100px;
  }
      .nav
      {   display: none;
          
      }
  
      .menu li
      { float: left;}
  
      .menu a:hover
      { background-color: var(--sweet-blue);
        text-shadow: 0px 1px 4px rgb(25, 25, 25); }
  
      .hamb
      {display: none;}
  
      .galeria{
          margin-left: 28px;
      }
     }
  
  @media (max-width: 1173px){
            
      .header-logo2{
          position: absolute;
          left: calc(50% - 49px)
      }
  
      #img-carrito {
          position: absolute;
          left: -50px;
          max-height: 54px;
          margin-top: -5px;
      }
      #cantidad-carrito{
          left: 43px;
          top: 19px;
          user-select: none;
      }
          
      .submenu:hover #carrito{
          display: none;}

        .packs-fotos{
            width: 100%;
            padding: 10px 0 10px 0;
        }
        .entregas-title {
            width: 100%;}
        
        .entregas-cards-container {
                width: 100%;}

        .product-detail--pack {
            width: 100%;}

            .polaroid-card {
                width: 60%;
                min-width: 140px;
                max-width: 170px;
                height: 250px;
                margin: 20px 5px 0 5px;}

        .polaroid-card .polaroid-title {
                font-size: var(--smplus);}
        
                .menu a {
                    padding: 14px 20px;}
      
  }
  
  @media (max-width: 504px){
      .fotografia-grande{
          max-height: 350px;
          min-width: 350px;
      }
      .galeria{
          top: -240px;
      }
      .info-container {
          margin-top: 120px;
      }
      .galeria-columna-imagen {
          height: 80px;
          width: 80px;}
  
      .galeria-columna {
          top: 660px;}
  }
  
     
  
  @media (min-width: 1173px)
  { .header-logo2{
      display: none;
  }
  
  .header-logo{ display: inline;}
  }
  
  
  
  
  
  
  
