/* Add custom CSS styles below */ 
.bg-storeBG:has(.product-single),.product-price,.sticky-cart-single,.sticky-product-bar{
background-color:white !important;
}
.footer-is-custom .store-footer .social-link{
  opacity:1.7;
}

.bg-storeBG:has(.advanced-slider){
background-color:#f1e7da !important;
}
.comment__rating {
    position: relative;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.incense-icon-custom {
    display: inline-block !important;
    width: 28px !important;
    height: 28px !important;
    background-image: url("https://res.cloudinary.com/dk2cdwufj/image/upload/v1754859938/Pngtree_islamic_incense_line_icon-arabian_coal_6258610_r6cipr.png") !important;
    background-size: 18px 18px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: rgb(241, 230, 219) !important;
    margin-left: 8px !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 4px rgba(241, 230, 219, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.6) !important;
    border: 2px solid rgba(139, 69, 19, 0.2) !important;
    filter: contrast(1.5) brightness(1.2) drop-shadow(0 1px 2px rgba(139, 69, 19, 0.3)) !important;
}

.incense-icon-custom::before {
    content: '' !important;
    position: absolute !important;
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
    border-radius: 50% !important;
    background: linear-gradient(45deg, 
        rgba(139, 69, 19, 0.1), 
        rgba(241, 230, 219, 0.2), 
        rgba(139, 69, 19, 0.1)) !important;
    z-index: -1 !important;
    animation: incensePulse 2s infinite !important;
}

.incense-icon-custom::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 6px !important;
    height: 6px !important;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.4), rgba(241, 230, 219, 0.2), transparent) !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
    animation: incenseGlow 1.5s ease-in-out infinite alternate !important;
}

@keyframes incensePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

@keyframes incenseGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.incense-icon-custom.loaded {
    animation: incenseAppear 0.6s ease-out !important;
}

@keyframes incenseAppear {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }
    70% {
        opacity: 1;
        transform: scale(1.1) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}



.store-footer__contacts-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.store-footer__contacts-row .enhanced_rounded_contacts,
.store-footer__contacts-row .rounded_contacts {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
}

.store-footer__contacts-row .enhanced-contact-item {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.store-footer__contacts-row .enhanced-contact-item .unicode {
    display: none !important;
}

.store-footer__contacts-row .enhanced-contact-item i {
    font-size: 20px;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.store-footer__contacts-row .enhanced-contact-item:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.store-footer__contacts-row .enhanced-contact-item:hover i {
    transform: scale(1.2);
}

.store-footer__contacts-row .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.store-footer__contacts-row .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.store-footer__contacts-row .social-link i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.store-footer__contacts-row .social-link:hover i {
    transform: scale(1.2);
}

.store-footer__contacts-row .enhanced_rounded_contacts {
    margin-bottom: 0 !important;
}

.store-footer__contacts-row .rounded_contacts {
    margin-top: 0 !important;
}

.store-footer__contacts-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.store-footer__contacts-row .anime-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .store-footer__contacts-row .enhanced-contact-item,
    .store-footer__contacts-row .social-link {
        width: 45px;
        height: 45px;
    }
    
    .store-footer__contacts-row .enhanced-contact-item i,
    .store-footer__contacts-row .social-link i {
        font-size: 18px;
    }
    
    .store-footer__contacts-row {
        gap: 12px;
    }
}

.store-footer__contacts-row .social-link,.store-footer__contacts-row .enhanced-contact-item{
width:40px;
height:40px;
}
.profile__cover--placeholder{
  background: none !important;
}