/*shop */
.btn-carrito {
    background: #3cc9da;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(60, 201, 218, 0.3);
}
.btn-carrito:hover {
    background: #2bb3c2;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(60, 201, 218, 0.5);
}
.btn-carrito:active {
    transform: scale(0.96);
}
.btn-carrito::before {
    content: "";
    font-size: 14px;
}
/* Carrito Lateral */
.carrito-lateral {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.carrito-lateral.active {
    right: 0;
}
.carrito-header {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.carrito-header span {
    cursor: pointer;
    font-size: 20px;
}
#contenidoCarrito {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}
.carrito-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    align-items: center;
}
.carrito-item img {
    width: 60px;
    border-radius: 10px;
}
.carrito-item p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}
.carrito-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}
.carrito-footer .btn {
    width: 100%;
    background: #3cc9da;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(60, 201, 218, 0.3);
}
.carrito-footer .btn:hover {
    background: #2bb3c2;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(60, 201, 218, 0.5);
}
.carrito-footer .btn:active {
    transform: scale(0.96);
}
.carrito-footer .btn-seguir {
    width: 100%;
    background: transparent;
    border: 2px solid #3cc9da;
    color: #3cc9da;
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 2%;
}
.carrito-footer .btn-seguir:hover {
    background: #3cc9da;
    color: #fff;
    transform: translateY(-2px);
}
.btnEliminar {
    background: transparent;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}
.btnEliminar:hover {
    color: #ff4d4d;
    transform: scale(1.2);
}
.cantidad-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}
.btnCantidad {
    background: #3cc9da;
    color: #fff;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}
.btnCantidad:hover {
    background: #2bb3c2;
    transform: scale(1.1);
}

/* footer */
.footer-brand{
	margin-bottom: 30px;
}
.footer-logo{
    max-width: 180px;
    opacity: 0.95;
    transition: 0.3s;
}
.footer-logo:hover{
	opacity: 1;
    transform: scale(1.05);
}
@media(max-width:768px){
	.footer-logo{
		max-width: 140px;
    }
    .footer_part{
        text-align: center;
    }
    .single_footer_part{
        margin-bottom: 25px;
    }
}
.whatsapp-float{
	position: fixed;
    bottom: 35px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Hover */
.whatsapp-float:hover{
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}
/* Pulso animado */
.whatsapp-float::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.5);
    animation: pulse 1.8s infinite;
    z-index: -1;
}
@keyframes pulse{
    0%{
        transform: scale(1);
        opacity: 0.6;
    }
    70%{
        transform: scale(1.6);
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}
/* Tooltip */
.tooltip-wa{
    position: absolute;
    right: 70px;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}
.whatsapp-float:hover .tooltip-wa{
    opacity: 1;
    transform: translateY(0);
}
@media(max-width:768px){
    .whatsapp-float{
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    .tooltip-wa{
        display: none;
    }
}
.politica-box{
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    line-height: 1.7;
}

.politica-box h1{
    font-weight: 700;
}

.politica-box h4{
    margin-top: 25px;
    font-weight: 600;
    color: #3cc9da;
}

.politica-box ul{
    padding-left: 20px;
}

.politica-box ul li{
    margin-bottom: 6px;
}

@media(max-width:768px){
    .politica-box{
        padding: 25px;
    }
}