/* Additional theme styles not covered by Tailwind or style.css */

/* Ensure WordPress admin bar doesn't overlap fixed nav */
.admin-bar nav.fixed { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar nav.fixed { top: 46px; }
}

/* Custom selection colors */
::selection { background: #2563eb; color: white; }

/* Smooth scrolling offset for fixed nav */
:target { scroll-margin-top: 90px; }

/* Product card animation */
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* RTL adjustments */
[dir="rtl"] .border-l-2  { border-left: none; border-right-width: 2px; }
[dir="rtl"] .border-l    { border-left: none; border-right-width: 1px; }
[dir="rtl"] .pl-4        { padding-left: 0;   padding-right: 1rem; }
[dir="rtl"] .ml-2        { margin-left: 0;    margin-right: 0.5rem; }
[dir="rtl"] .space-x-8 > * + * { margin-left: 0; margin-right: 2rem; }
[dir="rtl"] .gap-4 { direction: rtl; }
[dir="rtl"] .text-left  { text-align: right; }
[dir="rtl"] .fa-arrow-right::before { content: "\f060"; }
[dir="rtl"] .group-hover\:translate-x-1:hover { transform: translateX(-0.25rem); }

/* WordPress page builder support */
.wp-block { max-width: 100%; }
