/* arabic font */
body {
    font-family: 'Tajawal', 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cairo', 'Outfit', sans-serif;
}

/* rtl */

.logo {
    gap: 16px;
}

.feature-item {
    gap: 16px;
}

.about-grid {
    direction: rtl;
}

.filter-buttons {
    direction: rtl;
}

.product-info {
    text-align: right;
}

.product-footer {
    justify-content: space-between;
}

.contact-wrapper {
    direction: rtl;
}

.contact-card {
    text-align: right;
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.contact-card:hover {
    transform: translateX(-8px);
}

/* Footer RTL */
.footer-content {
    direction: rtl;
    text-align: right;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-section ul {
    text-align: right;
}

.footer-section ul li a:hover {
    padding-left: 0;
    padding-right: 8px;
}

.footer-bottom {
    justify-content: space-between;
}

.lang-switch {
    background: var(--primary-light);
    color: var(--text-white) !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition-base);
}

.lang-switch:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.lang-switch::after {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        align-items: flex-end;
        text-align: right;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-end;
    }

    .contact-wrapper {
        text-align: right;
    }
}


body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[dir="ltr"] {
    direction: ltr;
    unicode-bidi: embed;
}

p,
li,
span {
    line-height: 1.8;
}

h1 {
    line-height: 1.3;
}

h2,
h3 {
    line-height: 1.4;
}


.section-tag {
    text-align: center;
}

.section-header {
    text-align: center;
}

.product-name,
.product-description {
    text-align: right;
}

.contact-info-section {
    text-align: right;
}

.contact-info-section h2,
.contact-info-section>p {
    text-align: right;
}

.hero-title {
    letter-spacing: -0.5px;
}

.section-title {
    letter-spacing: -0.3px;
}

.cta-button.primary svg,
.arrow-rtl {
    transform: rotate(180deg);
}

.product-price {
    direction: ltr;
    text-align: left;
}

*:focus {
    outline-offset: 2px;
}

@media (max-width: 768px) {

    .nav-link,
    .filter-btn,
    .cta-button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}