
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            display: inline-block;
            line-height: 1;
            text-transform: none;
            letter-spacing: normal;
            word-wrap: normal;
            white-space: nowrap;
            direction: ltr;
        }
        .editorial-shadow {
            box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
        }
        .accent-border {
            border-left: 4px solid #835503; /* secondary color from config */
        }
        .special-offer-gradient {
            background: linear-gradient(180deg, #fcf9f8 0%, #eae7e7 100%);
        }
@keyframes pulseCTA {
0%, 100% {
transform: scale(1);
}


50% {
    transform: scale(1.05);
}


}

.cta-pulse {
animation: pulseCTA 2s ease-in-out infinite;
}

