:root {
    --primary-color: #ff4757;
    --secondary-color: #2f3542;
    --text-color: #2f3542;
    --bg-color: #ffffff;
    --light-bg: #f1f2f6;
    --border-color: #dfe4ea;
    --white: #ffffff;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Accessibility helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Header */
.site-header {
    background: #0f172a;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    color: var(--white);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.4s ease;
}

.logo a:hover img {
    animation: logoBounce 0.8s ease;
}

@keyframes logoBounce {
    0% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-6px);
    }
    55% {
        transform: translateY(2px);
    }
    75% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}

.main-nav {
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--white);
    font-size: 1.05rem;
}

.main-nav a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none !important;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

.menu-toggle-box {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle-bar {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-menu-open .menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header-actions .lang-switcher {
    display: flex;
}

.lang-switcher select {
    padding: 0.5rem 1.75rem 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    font-family: var(--font-family);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
    background-position: calc(100% - 15px) calc(50% - 3px), calc(100% - 10px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    font-size: 0.95rem;
}

.lang-switcher select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.whatsapp-icon-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    color: #25d366;
    display: block;
}

.whatsapp-icon-link:hover {
    background: rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.footer-whatsapp {
    margin-top: 0.65rem;
}

/* RTL Support - Base */
[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .site-header .container {
    flex-direction: row-reverse;
}

[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
}

[dir="rtl"] .main-nav li {
    text-align: right;
}

[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-grid,
[dir="rtl"] .featured-products,
[dir="rtl"] .guide-grid,
[dir="rtl"] .contact-card {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .product-card,
[dir="rtl"] .about-content,
[dir="rtl"] .guide-card {
    text-align: right;
}

[dir="rtl"] .guide-card-body ul,
[dir="rtl"] .guide-card-body p {
    text-align: right;
}

[dir="rtl"] .footer-links {
    direction: rtl;
}

[dir="rtl"] .lang-switcher select {
    padding: 0.5rem 0.75rem 0.5rem 1.75rem;
    background-position: calc(0% + 15px) calc(50% - 3px), calc(0% + 10px) calc(50% - 3px);
}

.page-home main .container {
    max-width: 100%;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.6rem;
    border-radius: 999px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.25);
}

.nav-pill:hover {
    color: var(--white);
    background-color: #ff6b81;
}

/* Tablet & Mobile - 1024px and below */
@media (max-width: 1024px) {
    .site-header .container {
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .logo {
        order: 1;
        flex: 0 1 auto;
        min-width: 0;
        max-width: none;
        text-align: left;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .logo img {
        max-width: 100%;
        height: 50px !important;
        width: auto;
        object-fit: contain;
    }

    .menu-toggle {
        display: inline-flex !important;
        order: 2;
        flex: 0 0 auto;
        align-self: center;
        height: 48px;
        margin-left: auto;
    }

    /* Mobilde dil çeviriciyi gizle */
    .header-actions {
        order: 3;
        display: none !important;
    }

    .header-actions .lang-switcher,
    .header-actions .whatsapp-icon-link,
    .header-actions .nav-pill {
        display: none !important;
    }

    /* Desktop menüyü mobilde gizle */
    .main-nav {
        width: 100%;
        order: 4;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: none !important;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        width: 100%;
    }

    .main-nav a {
        display: block;
        font-size: 1rem;
    }

    /* Hamburger açıldığında mobil menüyü göster */
    .site-header.is-menu-open .container {
        flex-wrap: wrap;
    }

    .site-header.is-menu-open .main-nav {
        display: block !important;
        order: 4;
        width: 100%;
    }

    .site-header.is-menu-open .header-actions {
        display: flex !important;
        width: 100%;
        order: 5;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header.is-menu-open .header-actions .lang-switcher {
        display: flex !important;
        width: 100%;
    }

    .site-header.is-menu-open .header-actions .lang-switcher form,
    .site-header.is-menu-open .header-actions .lang-switcher select {
        width: 100%;
    }

    .site-header.is-menu-open .header-actions .whatsapp-icon-link {
        display: inline-flex !important;
        width: 100%;
        border-radius: 12px;
        background: rgba(37, 211, 102, 0.15);
        justify-content: center;
        padding: 0.75rem;
    }

    .site-header.is-menu-open .header-actions .nav-pill {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
    }

    /* RTL Mobile - Hamburger ve Logo Sırası */
    [dir="rtl"] .site-header .container {
        justify-content: space-between;
    }

    [dir="rtl"] .logo {
        order: 1;
        text-align: right;
        justify-content: flex-end;
    }

    [dir="rtl"] .menu-toggle {
        order: 2;
        margin-left: 0;
        margin-right: auto;
    }

    [dir="rtl"] .main-nav ul {
        align-items: flex-end;
    }
}

/* Desktop: Menü her zaman görünür */
@media (min-width: 1025px) {
    .site-header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative;
    }

    .menu-toggle {
        display: none !important;
        order: 0;
    }

    .logo {
        order: 1;
        flex: 0 0 auto;
    }

    .main-nav {
        display: block !important;
        order: 2;
        width: auto;
        padding-top: 0;
        border-top: none;
        flex: 1 1 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-nav ul {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .header-actions {
        display: flex !important;
        order: 3;
        flex: 0 0 auto;
        width: auto;
        flex-direction: row;
        padding-bottom: 0;
    }

    .menu-toggle {
        display: none !important;
    }
}

/* Hero Slider */
.hero-slider {
    padding: 10px 0 0 0;
    background: linear-gradient(135deg, #fff7f8 0%, #f5f8ff 100%);
}

.slider-shell {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
}

.hero-track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
    min-width: 100%;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-copy p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #57606f;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.55rem 1.25rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(255, 71, 87, 0.35);
}

[dir="rtl"] .hero-badge {
    right: auto;
    left: 0;
}

.hero-image-frame {
    margin-top: 2.5rem;
    padding: 0.6rem;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 71, 87, 0.2), rgba(63, 94, 251, 0.15));
}

.hero-image-frame img {
    border-radius: 20px;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.slider-nav.prev {
    left: 1.5rem;
}

.slider-nav.next {
    right: 1.5rem;
}

[dir="rtl"] .slider-nav.prev {
    left: auto;
    right: 1.5rem;
}

[dir="rtl"] .slider-nav.next {
    right: auto;
    left: 1.5rem;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: var(--white);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 1.8rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(47, 53, 66, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.is-active {
    width: 36px;
    background: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #ff6b81;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #57606f;
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid rgba(47, 53, 66, 0.2);
}

.btn-ghost:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Home Intro Section */
.home-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.03), rgba(47, 53, 66, 0.02));
}

.home-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.home-intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.home-intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #4a5568;
}

.home-intro-text p {
    margin-bottom: 1.5rem;
}

.home-intro-text p:last-child {
    margin-bottom: 0;
}

.home-intro-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Featured Products */
.featured-products,
.product-list {
    padding: 4rem 0;
}

.featured-products {
    margin-bottom: 1rem;
}

.featured-products + .walkingpad-gallery {
    margin-top: 0;
    margin-bottom: 40px;
}

.featured-products h2,
.page-header h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.125rem;
    color: var(--secondary-color);
}

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

.legal-content {
    padding: 3rem 0;
}

.legal-rich-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-rich-text h3 {
    margin-top: 2rem;
}

.legal-rich-text ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

[dir="rtl"] .legal-rich-text ul {
    padding-left: 0;
    padding-right: 1.5rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-table th,
.legal-table td {
    border: 1px solid rgba(47, 53, 66, 0.15);
    padding: 0.75rem;
    text-align: left;
}

[dir="rtl"] .legal-table th,
[dir="rtl"] .legal-table td {
    text-align: right;
}

.legal-table thead {
    background: rgba(47, 53, 66, 0.05);
}

.service-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(47, 53, 66, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.service-info p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-info p:last-child {
    margin-bottom: 0;
}

.service-info strong {
    color: var(--secondary-color);
    font-weight: 600;
    min-width: 140px;
    display: inline-block;
}

.service-info a {
    color: var(--primary-color);
    font-weight: 500;
}

.service-info a:hover {
    text-decoration: underline;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding-bottom: 1.5rem;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.25rem;
}

.product-card p {
    color: #747d8c;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.product-card .price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Page */
.page-header {
    background-color: var(--light-bg);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    margin-bottom: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin: 2rem 0;
}

/* Guide Page */
.guide-header {
    text-align: center;
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.08), rgba(47, 53, 66, 0.05));
}

.guide-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guide-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.guide-header p {
    max-width: 760px;
    margin: 0 auto 1.5rem;
    color: #57606f;
}

.guide-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #747d8c;
    margin-bottom: 2rem;
}

.guide-ctas {
    justify-content: center;
}

.guide-sections {
    padding: 3rem 0 4rem;
}

.guide-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.guide-card {
    background: var(--white);
    border: 1px solid rgba(47, 53, 66, 0.08);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.05);
}

.guide-card h2 {
    font-size: 1.35rem;
}

.guide-card-body p {
    margin-bottom: 0.8rem;
    color: #555f6d;
}

.guide-card-body ul {
    padding-left: 1rem;
    margin-bottom: 1rem;
}

[dir="rtl"] .guide-card-body ul {
    padding-left: 0;
    padding-right: 1rem;
}

.guide-card-body li {
    margin-bottom: 0.35rem;
    color: #555f6d;
}

.guide-card-body strong {
    color: var(--secondary-color);
}

.guide-step {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.1rem;
}

.guide-card-highlight {
    background: linear-gradient(145deg, rgba(255, 71, 87, 0.08), rgba(47, 53, 66, 0.08));
    border-color: transparent;
}

.guide-cta {
    padding: 3rem 0;
    background: var(--secondary-color);
    color: var(--white);
}

.guide-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.guide-cta-content h3 {
    margin-bottom: 0.5rem;
}

.guide-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Product Video */
.product-video {
    padding: 0;
    background: #0f172a;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-video .container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.product-hero-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

@media (max-width: 768px) {
    .product-video {
        padding: 0;
    }
    
    .product-video .container {
        max-width: 100%;
    }
    
    .product-hero-video {
        max-height: 60vh;
        object-fit: cover;
    }
}

/* Product Detail */
.product-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 247, 248, 0.8), rgba(241, 246, 253, 0.8));
}

.product-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.product-hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.product-hero-copy p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.product-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-hero-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 40px 60px rgba(15, 23, 42, 0.15);
    background: var(--white);
    padding: 0.5rem;
}

.product-hero-card img {
    border-radius: 28px;
    display: block;
}

.product-specs {
    padding: 3rem 0;
}

.product-specs h2,
.product-features h2,
.product-gallery-inline h2,
.product-list h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.spec-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.spec-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 25px 40px rgba(15, 23, 42, 0.08);
}

.product-features {
    padding: 3rem 0;
}

.product-features-card {
    background: #0f172a;
    color: var(--white);
    border-radius: 28px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.3);
}

.product-features-card ul {
    margin: 1.5rem 0 0;
    padding-left: 1.5rem;
    line-height: 1.8;
}

[dir="rtl"] .product-features-card ul {
    padding-left: 0;
    padding-right: 1.5rem;
}

.product-highlight {
    padding: 3rem 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.highlight-media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

.highlight-copy ul {
    margin-top: 1.5rem;
    padding-left: 1.2rem;
    line-height: 1.8;
}

[dir="rtl"] .highlight-copy ul {
    padding-left: 0;
    padding-right: 1.2rem;
}

.product-gallery-inline {
    padding: 3rem 0;
}

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

.product-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-bg);
}

.product-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.product-gallery-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .product-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .product-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-modal.is-active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    line-height: 1;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

/* WalkingPad Gallery */
.walkingpad-gallery {
    position: relative;
    margin: 0 auto 40px;
    max-width: 100%;
    overflow: hidden;
}

.walkingpad-track {
    display: flex;
    gap: 1rem;
    padding: 0 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.walkingpad-track:active {
    cursor: grabbing;
}

.walkingpad-track::-webkit-scrollbar {
    display: none;
}

.walkingpad-slide {
    flex: 0 0 350px;
    max-width: 350px;
    scroll-snap-align: start;
}

.walkingpad-slide-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    transform: translateZ(0);
}

.walkingpad-slide-inner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.walkingpad-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.75);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.walkingpad-nav.prev {
    left: 1rem;
}

.walkingpad-nav.next {
    right: 1rem;
}

[dir="rtl"] .walkingpad-nav.prev {
    left: auto;
    right: 1rem;
}

[dir="rtl"] .walkingpad-nav.next {
    right: auto;
    left: 1rem;
}

.walkingpad-nav:hover {
    background: var(--primary-color);
}

@media (max-width: 1024px) {
    .walkingpad-track {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .walkingpad-track {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .walkingpad-slide-inner img {
        height: 360px;
    }

    .walkingpad-nav {
        display: none;
    }
}

/* Trendyol CTA */
.trendyol-cta {
    background: linear-gradient(120deg, rgba(242, 122, 26, 0.15), rgba(255, 71, 87, 0.1));
    padding: 2.5rem 0;
    border-top: 1px solid rgba(47, 53, 66, 0.08);
    border-bottom: 1px solid rgba(47, 53, 66, 0.08);
    margin-top: 40px;
}

.trendyol-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trendyol-cta-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.trendyol-cta-text p {
    margin: 0;
    color: #555f6d;
}

.trendyol-label {
    font-size: 1rem;
    font-weight: 700;
    color: #f27a1a;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    margin-bottom: 0.25rem;
}

.trendyol-btn {
    background-color: #f27a1a;
    border: none;
}

.trendyol-btn:hover {
    background-color: #ff8a2d;
}

@media (max-width: 768px) {
    .trendyol-cta .container {
        flex-direction: column;
        text-align: center;
    }

    .slider-shell {
        border-radius: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .hero-image-frame {
        margin-top: 1rem;
    }

    .slider-nav {
        display: none;
    }

    .guide-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .guide-cta .container {
        flex-direction: column;
        text-align: center;
    }

    .contact-card {
        padding: 2rem;
    }
}

/* Contact Hero Image */
.contact-hero-image {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.03), rgba(47, 53, 66, 0.02));
}

.contact-hero-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    display: block;
    margin: 0 auto;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.contact-info {
    padding: 0 0 4rem;
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.contact-card h2 {
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #57606f;
}

.contact-info-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 1.5rem;
}

.contact-info-list li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border-bottom: 1px solid rgba(47, 53, 66, 0.1);
    padding-bottom: 1rem;
}

.contact-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-label {
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.8rem;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
    word-break: break-word;
}

.contact-info a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group .required {
    color: #dc3545;
    margin-left: 0.25rem;
}

.form-group .form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
    font-style: italic;
}

/* Honeypot field - completely hidden */
#website_url,
#website_url + label {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0 1.5rem;
    text-align: center;
}

.site-footer .slogan {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.75rem;
    color: #a4b0be;
}

.footer-logo {
    margin-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    max-height: 45px;
    width: auto;
    display: inline-block;
}

.footer-contact {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

/* Footer Links */
.footer-links {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.site-footer p {
    font-size: 0.85rem;
    margin: 0.5rem 0;
    line-height: 1.4;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 20px rgba(15, 23, 42, 0.08);
    padding: 1.25rem 0;
    z-index: 2000;
    border-top: 1px solid var(--border-color);
}

.cookie-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
}

.cookie-text {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cookie-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--secondary-color);
    opacity: 0.8;
}

.cookie-banner p {
    margin: 0;
    color: var(--text-color);
}

.cookie-link {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.cookie-link::after {
    content: '>';
    font-size: 1rem;
    transform: translateY(-1px);
}

[dir="rtl"] .cookie-link::after {
    content: '<';
}

.cookie-link:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-buttons .btn {
    min-width: 140px;
    text-align: center;
}

.btn-sm {
    padding: 0.55rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .cookie-banner {
        padding: 1.5rem 0;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}