/**
* 2007-2023 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2023 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#pack-content p{
    color: var(--color-neutral-950);
}

.touchspin-down{
    color: #000000;
}
.touchspin-up{
    color: #000000;
}
.upp-cartth {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.upp_row{
	width:100%;
	border-color: red;
}
.upp_column{
	width:19%;
	border-color: red;
	display: inline-block;
}
.upp_packimage{
}
.upp_image{
	width: 200px;
}
.upp_selected_packimage{
	width: 200px;
	height : 200px;
	background-color: #BF935C;

}

.aup-desc-box{
    background-color: white;
    padding: 2px;
    margin-top: 4px;
}


.aup-product-title{
    text-align: center;
    background-color: #F7F4F0;
    padding: 20px 0;
    width: 100%;
    margin-bottom: 20px;
}

.aup-product-title h1{
    font-family: "Rietage", sans-serif !important;
    color: #6A4024;
    font-size: 32px;
    font-weight: normal;  /* Esto quita la negrita */
    font-style: normal;   /* Asegura que no salga cursiva */
    line-height: 1.2;
    margin: 0;
}

.aup-pro-box{
    padding-left: 15px;    
}

.aup-pro-box ul,
.aup-pro-box-aftr-select ul{
    list-style: none;
    padding:0;
    margin:0;

    display: flex; flex-wrap:wrap; gap:5px
}


.aup-pro-fig{
    position: relative;
}
.aup-pro-fig img{
    width: 100%;
}


.aup-pro-box-aftr-select ul li{
    display: inline-block;
    vertical-align: top;
    width: 48%;
    background: var(--color-neutral-300);
    position: relative;
    height: 100%;
    overflow: hidden;
    margin: 2px 0px;
    box-sizing: border-box;
    border-radius: var(--radius-m);
}



.aup-pro-box-aftr-select ul li:before {
    content: '';
    display: block;
    position: relative;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 9;
    width: 100%;
    opacity: 0;
    -webkit-transition-property: opacity;
    -webkit-transition-duration: 1s;
    -webkit-transition-delay: 0s;
    transition-property: opacity;
    transition-duration: 1s;
    transition-delay: 0s;
    padding-top: 100%;
    display: block;
}

.upp_selected_packimage:hover:before {
    opacity: 1;
    cursor: pointer;
    z-index: 100;
    background-image: url(../img/minus-icon.png);
    background-position: center 45%;
    background-repeat: no-repeat;
}

.aup-pro-box ul li.aup-pro-card{
    display: flex;
    flex-direction: column;
    vertical-align: top;
    width: 48%;
    background: white;
    position: relative;
    overflow: hidden;
    margin: 2px 0px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    border: 1px var(--color-tertiary-300) solid;
    border-radius: var(--radius-l);
}



.aup-pro-box ul li.aup-pro-card:hover .aup-pro-fig {
    opacity: 0.75; 
}

.aup-pro-box ul li.aup-pro-card:hover .aup-pro-info h3 a {
    color: var(--color-tertiary-800);

}
/*----------------------------*/

/*.aup-pro-box ul li.aup-pro-card:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 9;
    width: 100%;
    opacity: 0;
    -webkit-transition-property: opacity;
    -webkit-transition-duration: 1s;
    -webkit-transition-delay: 0s;
    transition-property: opacity;
    transition-duration: 1s;
    transition-delay: 0s;
}*/

.aup-pro-box ul li.aup-pro-card button.add_prod_box {
    width: 100%;
    cursor: pointer;
    padding: 5px 0;
    border-radius: var(--radius-full);
    border: solid var(--border-width-1) var(--color-neutral-50);
    background: var(--color-tertiary-400);
    color: var(--color-white);
}

.aup-pro-qty{
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90px;
    height: 30px;
    transform: translate(-50%, 0%);
    z-index: 9999
}

.aup-pro-box ul li.aup-pro-card:hover .aup-pro-qty{
    opacity: 1;
}

.aup-pro-qty .btn-number{
    width: 25px;
    height: 30px;
    text-align: center;
    border: 0;
    background: black;
    color: white;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    cursor: pointer;
}

.aup-pro-qty .btn-number:hover,
.aup-pro-qty .btn-number:active,
.aup-pro-qty .btn-number:focus{
    background: #BF935C;
}

.aup-pro-qty .input-number{
    border: 0;
    text-align: center;
    height: 30px;
}

.aup-pro-info{
    background: white;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    padding: 5%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.aup-pro-info h3 a{
    font-size: 16px;
    color: var(--color-tertiary-400);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.aup-pro-info h3{
    margin: 0;
}

.aup-pro-price{
    font-size: 12px;
    color: var(--color-neutral-700);
}

.aup-pro-info span.aup-pro-variants-info-variants{
    background: var(--color-neutral-100);
    border: 1px solid var(--color-neutral-200);
    padding: 5px;
    border-radius: var(--radius-full);
    text-align: center;
    font-weight: 400;
    color: var(--color-tertiary-700);
}

.aup-pro-info div.aup-pro-variants-info{
    font-size: 14px;
}


.aup-total-box,
.aup-cart-box{
    box-sizing: border-box;
    padding:35px 20px;
    background-color: white;
    display: block;
    width: 97%;
    box-shadow: 2px 2px 8px 0 rgb(0 0 0 / 20%);
    margin:15px 0px;
    border: 1px var(--color-tertiary-300) solid;
    border-radius: var(--radius-l);
}

.aup-total-box span{
    font-size: 18px;
    line-height: 28px;
}

.aup-total-box span strong{
    font-size: 14px;
    line-height: 24px;
}

.aup-total-box button,
.aup-cart-box button{
    float: right;
    display: inline-block;
    width: 100%;
    max-width: 150px;
    text-align: center;
    border: 0;
    color: white;
    vertical-align: middle;
    border-radius: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
}

.aup-cart-box input{
    width: 100%;
}

.aup-pro-box-aftr-select ul li img{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
}


@media all and (max-width: 480px) {
    .aup-pro-box ul li.aup-pro-card,
    .aup-pro-box-aftr-select ul li{
        display: block;
        width: 100%;
        height: 100%;
        margin-bottom: 10px;
    }

    .aup-pro-fig img{
        width: 100%;
    }
}


