.content-product-single {
    padding: 1em;
    color: #16274B;
}

.title-product-single {
    font-size: 24px;
    font-weight: 800;
}

.sku-product-single,
.brand-product-single,
.sub-title-product-single {
    font-size: 16px;
}

.sku-product-single span,
.brand-product-single span {
    font-weight: 800;
}

.content-product-single hr {
    margin: 10px 0 !important;
}

.price-product-single {
    font-size: 32px;
    font-weight: 800;
}

.social-media-content {
    display: flex;
    align-items: center;
}

.social-media-icons a {
    display: inline-block;
    margin-left: 10px;
    font-size: 22px;
}

.social-media-icons a:nth-child(1) {
    color: #ff0066;
}

.social-media-icons a:nth-child(2) {
    color: #0066ff;
}

.social-media-icons a:nth-child(3) {
    color: #0066cc;
}

.social-media-icons a:hover {
    color: #0073aa;
}



/* WhatsApp POPUP*/
.wsp-button-container {
    margin: 20px 0;
}

#openWspPopup {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#openWspPopup:hover {
    transform: scale(1.05);
}

.wsp-popup {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wsp-popup.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.wsp-popup-content {
    background-color: #01AE20;
    margin: 10% auto;
    padding: 25px 3px 3px 3px;
    width: 90%;
    max-width: 400px;
    /* border-radius: 10px; */
    animation: slideUp 0.4s ease;
    position: relative;
}

.wsp-popup-content .title-wsp-popup {
    color: #fff;
    text-align: center;
    font-weight: 300;
    padding: 0px 20px;
}


.wsp-popup-content .subtitle-wsp-popup {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 300;
}

.wsp-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
}

.wsp-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    background-color: #FFEAE9;
    padding: 30px 0;
}

.wsp-contact {
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wsp-contact img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: 1px solid #01ae20 !important;
}

.wsp-contact span {
    display: block;
    font-size: 11px;
}

.wsp-link-popup {
    background: #01ae20;
    color: #ffffff;
    display: block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}