@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

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

:root {
    --primary-cyan: #00C3FF;
    --primary-blue: #0099CC;
    --cyan-light: #66D9FF;
    --cyan-lighter: #B3EBFF;
    --white: #ffffff;
    --off-white: #F8FAFB;
    --light-gray: #F0F4F8;
    --gray: #E1E8ED;
    --medium-gray: #8B99A6;
    --dark-text: #1A202C;
    --body-text: #2D3748;
    --accent-glow: rgba(0, 195, 255, 0.15);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--white);
    color: var(--body-text);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* =============================================
   NAVIGATION
============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 70px;
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo img {
    height: 40px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover { transform: scale(1.05); }

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

.nav-link {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover { color: var(--primary-cyan); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 0.25rem;
    border-radius: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--medium-gray);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--primary-cyan);
    background: rgba(0, 195, 255, 0.1);
}

.lang-btn.active {
    background: var(--primary-cyan);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 195, 255, 0.3);
}

/* ── Mobile lang switcher inside nav-menu: hidden on desktop ── */
.mobile-lang-switcher {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* =============================================
   HERO SECTION
============================================= */
.hero-section {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 0;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 400px;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: top;
    display: block;
}

.hero-slide-overlay { display: none; }

.hero-slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 20;
    pointer-events: none;
}

.hero-arrow {
    pointer-events: all;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.hero-arrow:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 24px rgba(0, 195, 255, 0.4);
}

.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: var(--primary-cyan);
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 195, 255, 0.5);
}

.hero-content {
    width: 100%;
    background: var(--white);
    padding: 3rem 2rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-inner {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.hero-shapes,
.hero-background {
    display: none;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.12), rgba(0, 195, 255, 0.05));
    color: var(--primary-cyan);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    border: 2px solid rgba(0, 195, 255, 0.2);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0;
    color: var(--dark-text);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--cyan-light));
    margin: 1rem auto 0;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--medium-gray);
    margin: 1.2rem auto 2rem;
    line-height: 1.8;
    max-width: 620px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-shapes,
.hero-background,
.shape,
.floating-light,
.glow-orb {
    pointer-events: none;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-cyan);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

/* ---- BUTTONS ---- */
.cta-button {
    padding: 0.95rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Inter', sans-serif;
}

.cta-button,
.cta-button:hover,
.cta-button:focus,
.cta-button:active { text-decoration: none; }

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 195, 255, 0.35);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 195, 255, 0.45);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 195, 255, 0.3);
}

.cta-button.large {
    padding: 1.1rem 2.6rem;
    font-size: 1rem;
}

/* =============================================
   SECTION COMMON
============================================= */
.section-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.08), transparent 70%);
}

.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.circle-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.12), rgba(0, 195, 255, 0.05));
    color: var(--primary-cyan);
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.9rem;
    border: 2px solid rgba(0, 195, 255, 0.15);
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
    line-height: 1.3;
}

.section-title.light { color: var(--white); }

.section-intro {
    font-size: 1rem;
    color: var(--medium-gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-intro.light { color: rgba(255, 255, 255, 0.9); }

/* =============================================
   ABOUT SECTION
============================================= */
.about-section {
    padding: 7rem 0;
    position: relative;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--cyan-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-card:hover::before { transform: scaleX(1); }

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.15), rgba(0, 195, 255, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--primary-cyan);
}

.about-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--body-text);
    line-height: 1.7;
    font-size: 0.92rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    background: var(--white);
    padding: 2.2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray);
    transition: all 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cyan-light);
}

.feature-icon-large {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 195, 255, 0.3);
}

.feature-icon-large svg { width: 32px; height: 32px; }

.feature-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--body-text);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-list { list-style: none; padding: 0; }

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--body-text);
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}

/* =============================================
   PRODUCTS SECTION
============================================= */
.products-section {
    padding: 7rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-left: 0;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-cyan);
}

.product-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 195, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.featured {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.product-image {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img { transform: scale(1.08); }

.product-content {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--body-text);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.12), rgba(0, 195, 255, 0.05));
    color: var(--primary-cyan);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 195, 255, 0.2);
}

/* =============================================
   BROWSE SECTION
============================================= */
.browse-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    position: relative;
    overflow: hidden;
}

.browse-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wave-pattern {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
}

.wave-pattern::before,
.wave-pattern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: wave 15s infinite linear;
}

.wave-pattern::after { animation: wave 20s infinite linear reverse; }

@keyframes wave {
    0%   { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.browse-section .container { position: relative; z-index: 1; }

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.gallery-item:hover img { transform: scale(1.08); }

.item-large { grid-column: span 2; grid-row: span 2; }
.item-wide  { grid-column: span 2; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h3 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
}

.browse-cta { text-align: center; }

/* =============================================
   MODAL
============================================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active { display: flex; }

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-content {
    background: var(--white);
    border-radius: 22px;
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    animation: slideUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    background: var(--white);
    border: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    color: var(--dark-text);
}

.modal-close:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-blue));
    border-radius: 50px;
}

.modal-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}

.modal-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
}

.modal-desc {
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.93rem;
}

.modal-specs,
.modal-features { margin-bottom: 1.5rem; }

.modal-specs h3,
.modal-features h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
}

.modal-specs ul,
.modal-features ul { list-style: none; padding: 0; }

.modal-specs li,
.modal-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--body-text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray);
}

.modal-specs li::before,
.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 700;
}

/* =============================================
   FOOTER
============================================= */
.footer {
    background: var(--dark-text);
    color: var(--white);
}

.footer-top { padding: 4.5rem 0 3rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
}

.footer-col.brand { max-width: 320px; }

.footer-logo {
    height: 50px;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

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

.social-icon {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon svg { width: 18px; height: 18px; }

.social-icon:hover {
    background: var(--primary-cyan);
    border-color: var(--cyan-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 195, 255, 0.4);
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.85rem; }

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { color: var(--gray); font-size: 0.88rem; }

.footer-bottom-links { display: flex; gap: 2rem; }

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--primary-cyan); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {

    /* Show mobile lang switcher only on mobile */
    .mobile-lang-switcher {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
    }

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

    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active { right: 0; }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        text-align: center;
    }

    body.menu-open { overflow: hidden; }

    .hero-section {
        flex-direction: column-reverse;
        padding-top: 70px;
    }

    .hero-slideshow {
        height: 50vw;
        min-height: 220px;
    }

    .hero-content {
        padding: 2rem 1.5rem 1.8rem;
        background: var(--white);
    }

    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }

    .hero-stats {
        gap: 1.8rem;
        flex-wrap: wrap;
    }

    .stat-number { font-size: 1.8rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2rem; }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-left: 0;
        gap: 1.5rem;
    }
    .product-card { width: 100%; }

    .gallery { grid-template-columns: repeat(2, 1fr); }
    .item-large { grid-column: span 2; grid-row: span 1; }
    .item-wide  { grid-column: span 2; }

    .modal-body { grid-template-columns: 1fr; padding: 2rem; gap: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

    .section-title { font-size: 2rem; }
}

@media (max-width: 600px) {

    .container { padding: 0 1rem; }

    .hero-title { font-size: 1.9rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { gap: 1.2rem; }
    .stat-number { font-size: 1.6rem; }

    .hero-slideshow {
        height: 55vw;
        min-height: 200px;
    }

    .about-card { padding: 1.4rem; }
    .feature-box { padding: 1.4rem; }

    .products-section { padding: 4rem 0; }
    .products-grid { grid-template-columns: 1fr; }
    .product-image { height: 180px; }

    .gallery { grid-template-columns: 1fr; }
    .item-large, .item-wide { grid-column: span 1; }

    .browse-section { padding: 4rem 0; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-content { flex-direction: column; text-align: center; }
    .footer-bottom-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }

    .section-title { font-size: 1.7rem; }
    .section-intro { font-size: 0.95rem; }

    .language-switcher { display: none; }
}

.mobile-lang {
    display: none;
}

@media (max-width: 600px) {
    .mobile-lang {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
}