.santa-hat { position: absolute; top: -6px; left: 45%; width: 22px; height: 12px; background: #c40000; border-radius: 4px 4px 7px 7px; transform: translateX(-50%) rotate(-15deg); z-index: 2; } /* Shiriti i bardhë */ .santa-hat::before { content: ""; position: absolute; bottom: -4px; left: -3px; width: 28px; height: 5px; background: #fff; border-radius: 4px; } /* Bishti + topi (i animuar) */ .santa-hat::after { content: ""; position: absolute; right: -6px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: #fff; transform-origin: left center; animation: tail-swing 2.2s ease-in-out infinite; } /* Animacion smooth non-stop */ @keyframes tail-swing { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(25deg); } } /* Accessibility */ @media (prefers-reduced-motion: reduce) { .santa-hat::after { animation: none; } }  

 