/* === Override heading decoration globally === */
h1, h2, h3, h4, h5, h6 {
text-decoration: none !important;
background-image: none !important;
box-shadow: none !important;
}
/* kill pseudo-element lines, force override */
h1::before, h1::after,
h2::before, h2::after,
h3::before, h3::after,
h4::before, h4::after,
h5::before, h5::after,
h6::before, h6::after {
content: none !important;
background: none !important;
border: 0 !important;
box-shadow: none !important;
display: none !important; /* 🔑 extra safeguard */
}
/*CAMBIOS JUANES*/
.sticky-atc {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #ffffff;
border-top: 1px solid #e5e5e5;
z-index: 999;
padding: 12px 16px;
transition: transform 0.3s ease;
}
.sticky-atc.hidden {
transform: translateY(100%);
}
.sticky-atc__inner {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: 0 auto;
gap: 12px;
}
.sticky-atc__info {
display: flex;
flex-direction: column;
}
#sticky-atc-title {
font-size: 14px;
font-weight: 600;
}
#sticky-atc-price {
font-size: 14px;
font-weight: 700;
}
.sticky-atc__btn {
background: #000;
color: #fff;
border: none;
padding: 12px 20px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
border-radius: 4px;
}
.sticky-atc__btn:disabled {
background: #999;
cursor: not-allowed;
}
/* Desktop */
@media (min-width: 768px) {
.sticky-atc {
bottom: auto;
top: 0;
border-top: none;
border-bottom: 1px solid #e5e5e5;
}
.sticky-atc__info {
flex-direction: row;
gap: 16px;
align-items: center;
}
}