:root {
    --bg-dark: #0a1a0e;
    --bg-darker: #051207;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent: #22c55e;
    --accent-dark: #16a34a;
    --accent-glow: rgba(34, 197, 94, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.hover-link:hover {
    color: var(--accent);
}

.text-accent {
    color: var(--accent);
}

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

.animate-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(10, 26, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    will-change: backdrop-filter;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.logo span {
    color: var(--accent);
}

.nav-logo {
    height: 36px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 2px 8px rgba(34, 197, 94, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover .nav-logo {
    transform: scale(1.08) rotate(-3deg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.back-link {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin-left: 1rem;
}

.back-link:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.flag-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 0.6rem;
    position: relative;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.flag-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.flag-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.flag-icon:hover {
    border-color: var(--accent);
    transform: scale(1.12);
    box-shadow: 0 0 16px var(--accent-glow), 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
    border-radius: 2px;
}

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.12) 0%, transparent 60%);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 50vw; height: 50vw;
    background: var(--accent);
    filter: blur(180px);
    opacity: 0.12;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-logo-wrap {
    margin-bottom: 1.5rem;
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-logo {
    height: 120px;
    width: auto;
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(34, 197, 94, 0.25));
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-content h1 .hero-welcome {
    font-size: 0.55em;
    display: block;
    margin-bottom: 0.15em;
    font-weight: 400;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.8rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.status-badge i {
    font-size: 1.1rem;
}

.coming-soon {
    font-size: 1.1rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 2.5rem !important;
    font-weight: 400 !important;
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--accent-glow);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    touch-action: manipulation;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--accent-glow);
    background: #4ade80;
}

.about-section {
    padding: 8rem 2rem;
    position: relative;
    background: var(--bg-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 5rem 3rem;
    border-radius: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.03) 0%, transparent 60%);
    transform: rotate(30deg);
    pointer-events: none;
}

.glass-panel p {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.products-section {
    padding: 8rem 2rem;
    background: var(--bg-darker);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    will-change: transform;
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 25px rgba(34, 197, 94, 0.15);
}

.product-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-svg-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.olive-icon {
    width: 3rem;
    height: 3rem;
    color: var(--accent);
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.status-section {
    padding: 8rem 2rem;
    text-align: center;
}

.status-content {
    max-width: 600px;
    margin: 0 auto;
}

.status-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: spin 4s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.status-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.progress-fill {
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #4ade80);
    border-radius: 10px;
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.progress-text {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    margin-bottom: 0 !important;
}

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 6rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    touch-action: manipulation;
}

.social-links a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(156, 163, 175, 0.6);
}

.scrollup {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scrollup a {
    color: #fff;
    font-size: 1.2rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrollup:hover {
    background: var(--accent);
    transform: translateY(-3px);
}
.scrollup:hover a { color: #000; }

#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 15px rgba(34, 197, 94, 0.2));
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.loader-logo span {
    color: var(--accent);
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar span {
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: loaderSlide 1.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

.sticky-call {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--accent);
    color: #000;
    padding: 0.9rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    padding-bottom: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
    touch-action: manipulation;
}

.sticky-call i {
    font-size: 1.2rem;
}

.sticky-call:active {
    transform: scale(0.97);
}

.whatsapp-btn {
    position: fixed;
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
    left: max(1.5rem, env(safe-area-inset-left, 0px));
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    touch-action: manipulation;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

.map-btn {
    position: fixed;
    bottom: calc(12rem + env(safe-area-inset-bottom, 0px));
    left: max(1.5rem, env(safe-area-inset-left, 0px));
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #4285f4;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
    transition: all 0.3s ease;
    animation: mapPulse 2s infinite;
    touch-action: manipulation;
}

.map-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(66, 133, 244, 0.6);
    color: #fff;
}

@keyframes mapPulse {
    0% { box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(66, 133, 244, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4); }
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 900px) {
    .section-title { font-size: 2.3rem; }
    .footer-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
        left: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    .map-btn {
        bottom: calc(10.5rem + env(safe-area-inset-bottom, 0px));
        left: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(5, 18, 7, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    .nav-links.active {
        right: 0;
        z-index: 999;
    }
    .nav-links a {
        font-size: 1.6rem;
    }
    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .glass-panel {
        padding: 3rem 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .sticky-call {
        display: flex;
    }
    body {
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero { padding: 5rem 1.2rem 3rem; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .hero-logo { height: 80px; }
    .nav-logo { height: 28px; }
    .about-section { padding: 5rem 1.2rem; }
    .products-section { padding: 5rem 1.2rem; }
    .status-section { padding: 5rem 1.2rem; }
    .section-title { font-size: 1.8rem; }
    .products-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-card { padding: 2rem 1.5rem; }
    .glass-panel { padding: 2rem 1rem; }
    .glass-panel p { font-size: 1rem; }
    .about-stats { gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .footer { padding: 4rem 1.2rem 4.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .navbar { padding: 0.8rem 0; }
    .navbar.scrolled { padding: 0.6rem 0; }
    .nav-logo { height: 32px; }
    .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; }
    .nav-container { padding: 0 1rem; }
    .logo { font-size: 1.1rem; gap: 0.4rem; }
    .logo span { font-size: inherit; }
    .btn { padding: 1rem 2rem; font-size: 0.9rem; }
    .back-link { font-size: 0.75rem; padding: 0.5rem 0.8rem; min-height: 44px; display: inline-flex; align-items: center; }
}

[dir="rtl"] body {
    font-family: 'Cairo', 'Inter', sans-serif;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 {
    font-family: 'Cairo', 'Outfit', sans-serif;
}

[dir="rtl"] .nav-links a::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer h3::after {
    right: 0;
    left: auto;
}

[dir="rtl"] .back-link {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .flag-icon {
    margin-left: 0;
    margin-right: 0.6rem;
}

[dir="rtl"] .whatsapp-btn {
    left: auto;
    right: max(1.5rem, env(safe-area-inset-right, 0px));
}

[dir="rtl"] .map-btn {
    left: auto;
    right: max(1.5rem, env(safe-area-inset-right, 0px));
}

[dir="rtl"] .footer a[href^="tel:"] {
    font-variant-numeric: lining-nums tabular-nums;
    unicode-bidi: plaintext;
}

[dir="rtl"] .nav-links {
    right: auto;
    left: -100%;
}

[dir="rtl"] .nav-links.active {
    left: 0;
    right: auto;
    z-index: 999;
}

@media (max-width: 360px) {
    .hero { padding: 4rem 0.8rem 2rem; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-logo { height: 60px; }
    .status-badge { font-size: 0.8rem; padding: 0.5rem 1rem; flex-wrap: wrap; justify-content: center; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.85rem; }
    .section-title { font-size: 1.5rem; }
    .whatsapp-btn { width: 44px; height: 44px; font-size: 1.2rem; bottom: calc(4rem + env(safe-area-inset-bottom, 0px)); }
    .map-btn { width: 44px; height: 44px; font-size: 1rem; bottom: calc(9.5rem + env(safe-area-inset-bottom, 0px)); }
    .product-card { padding: 1.5rem 1rem; }
    .product-card h3 { font-size: 1.1rem; }
    .product-icon { font-size: 2rem; }
    .product-svg-icon { width: 2rem; height: 2rem; }
    .glass-panel p { font-size: 0.9rem; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.8rem; }
    .footer { padding: 3rem 0.8rem 4rem; }
    .footer h3 { font-size: 1.1rem; }
    .nav-links a { font-size: 1.3rem; }
}

section[id], header[id], footer[id] {
    scroll-margin-top: 100px;
}
