@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
/* Tailwind CSS - Production'da derlenmiş CSS kullanılıyor, @import kaldırıldı */

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Custom Color Palette */
:root {
    --color-primary: #0A0A0A;
    --color-secondary: #111111;
    --color-accent: #E14035;
    --color-white: #FFFFFF;
    --color-accent-light: #E85C52;
    --color-accent-dark: #C7352A;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #D1D5DB;
    --color-text-muted: #9CA3AF;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Remove number input spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Page Transitions */
.page-transition {
    position: relative;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.page-loader.page-loader-active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.page-loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Admin pages - NEVER show page loader */
body[data-admin="true"] .page-loader,
.admin-body .page-loader {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.page-loader-spinner {
    width: 3.5rem;
    height: 3.5rem;
    border: 4px solid rgba(225, 64, 53, 0.15);
    border-top-color: #E14035;
    border-right-color: #E14035;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 20px rgba(225, 64, 53, 0.3);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.page-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-content-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Admin pages - content always visible */
body[data-admin="true"] .page-content,
.admin-body .page-content,
.admin-content {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* Link Transitions */
a:not(.btn-premium):not(.contact-form-submit):not(.dealers-cta-button-premium):not(.dealers-application-button-prominent) {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover:not(.btn-premium):not(.contact-form-submit):not(.dealers-cta-button-premium):not(.dealers-application-button-prominent) {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth Section Transitions */
section {
    animation: fadeInUp 0.6s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Premium Cards */
.premium-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .premium-card {
        border-radius: 12px;
    }
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.premium-card:hover::before {
    left: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

@media (max-width: 768px) {
    .premium-card:hover {
        transform: translateY(-4px);
    }
}

/* Glass Morphism */
.glass-dark {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .glass-dark {
        background: rgba(17, 24, 39, 0.95);
    }
}

/* Premium Buttons */
.btn-premium {
    position: relative;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 640px) {
    .btn-premium {
        padding: 14px 32px;
        font-size: 16px;
        border-radius: 12px;
    }
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 64, 53, 0.6);
    background: linear-gradient(135deg, #E14035 0%, #E14035 100%);
}

.btn-secondary {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(17, 17, 17, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Premium Text */
.text-gradient {
    background: linear-gradient(135deg, #E14035 0%, #E85C52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.text-glow {
    text-shadow: 0 0 20px rgba(225, 64, 53, 0.5);
}

/* Hero Section */
.hero-gradient {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-gradient {
        min-height: 80vh;
    }
}

@media (min-width: 768px) {
    .hero-gradient {
        min-height: 90vh;
    }
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(225, 64, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 64, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #0A0A0A;
    overflow: hidden;
}

.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(75, 0, 130, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0.85;
}

.hero-bg-video::-webkit-media-controls {
    display: none !important;
}

.hero-bg-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .hero-content-wrapper {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        padding: 5rem 2rem;
    }
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        margin-bottom: 1.5rem;
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 48rem;
    margin: 0 auto 2rem;
    color: #d1d5db;
    line-height: 1.6;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-description {
        margin-bottom: 2.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.hero-buttons .btn-premium {
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons .btn-premium {
        width: auto;
    }
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, #0a0a0a, transparent);
    pointer-events: none;
    z-index: 4;
}

@media (min-width: 640px) {
    .hero-gradient-bottom {
        height: 8rem;
    }
}

/* Section Dividers */
.section-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.5), transparent);
    margin: 0;
}

/* Premium Badges */
.badge-premium {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
}

@media (min-width: 640px) {
    .badge-premium {
        padding: 6px 16px;
        font-size: 12px;
    }
}

/* Why Choose Section */
.why-choose-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .why-choose-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .why-choose-section {
        padding: 6rem 0;
    }
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .why-choose-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .why-choose-header {
        margin-bottom: 5rem;
    }
}

.why-choose-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .why-choose-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.why-choose-title {
    font-size: clamp(1.875rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

@media (min-width: 640px) {
    .why-choose-title {
        margin-bottom: 1rem;
    }
}

.why-choose-description {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    max-width: 42rem;
    margin: 0 auto;
    color: #d1d5db;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.why-choose-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

@media (min-width: 640px) {
    .why-choose-card {
        padding: 2rem;
        border-radius: 1rem;
    }
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

@media (max-width: 768px) {
    .why-choose-card:hover {
        transform: translateY(-4px);
    }
}

.why-choose-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: #E14035;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(225, 64, 53, 0.3), 0 4px 6px -2px rgba(225, 64, 53, 0.2);
}

@media (min-width: 640px) {
    .why-choose-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }
}

.why-choose-icon .icon,
.why-choose-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #ffffff;
}

@media (min-width: 640px) {

    .why-choose-icon .icon,
    .why-choose-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.why-choose-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .why-choose-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

.why-choose-card-text {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .why-choose-card-text {
        font-size: 1rem;
    }
}

/* Popular Services Section */
.popular-services-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .popular-services-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .popular-services-section {
        padding: 6rem 0;
    }
}

.popular-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .popular-services-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .popular-services-header {
        margin-bottom: 5rem;
    }
}

.popular-services-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .popular-services-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.popular-services-title {
    font-size: clamp(1.875rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0;
    color: #ffffff;
}

.popular-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .popular-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .popular-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.popular-services-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    height: 100%;
}

@media (min-width: 640px) {
    .popular-services-card {
        padding: 2rem;
        border-radius: 1rem;
    }
}

.popular-services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.popular-services-card:hover::before {
    left: 100%;
}

.popular-services-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

@media (max-width: 768px) {
    .popular-services-card:hover {
        transform: translateY(-4px);
    }
}

.popular-services-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(17, 17, 17, 0.5);
    position: relative;
}

@media (min-width: 640px) {
    .popular-services-image-wrapper {
        border-radius: 1.25rem;
        margin-bottom: 2rem;
    }
}

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

.popular-services-card:hover .popular-services-image {
    transform: scale(1.1);
}

.popular-services-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.1) 0%, rgba(199, 53, 42, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .popular-services-image-placeholder {
        border-radius: 1.25rem;
        margin-bottom: 2rem;
    }
}

.popular-services-placeholder-icon {
    width: 3rem;
    height: 3rem;
    color: rgba(225, 64, 53, 0.5);
}

@media (min-width: 640px) {
    .popular-services-placeholder-icon {
        width: 4rem;
        height: 4rem;
    }
}

.popular-services-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.4;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .popular-services-card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.popular-services-card:hover .popular-services-card-title {
    color: #E14035;
}

.popular-services-card-text {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

@media (min-width: 640px) {
    .popular-services-card-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.popular-services-link {
    display: inline-flex;
    align-items: center;
    color: #E14035;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .popular-services-link {
        font-size: 1rem;
    }
}

.popular-services-card:hover .popular-services-link {
    transform: translateX(8px);
}

.popular-services-link-arrow {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

@media (min-width: 640px) {
    .popular-services-link-arrow {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Featured Products Section */
.featured-products-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .featured-products-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .featured-products-section {
        padding: 6rem 0;
    }
}

.featured-products-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .featured-products-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        margin-bottom: 4rem;
    }
}

.featured-products-title-wrapper {
    flex: 1;
}

.featured-products-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .featured-products-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.featured-products-title {
    font-size: clamp(1.875rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.featured-products-view-all {
    display: none;
    align-items: center;
    text-decoration: none;
}

@media (min-width: 768px) {
    .featured-products-view-all {
        display: inline-flex;
    }
}

.featured-products-view-all-arrow {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.featured-products-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    height: 100%;
}

.featured-products-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.featured-products-card:hover::before {
    left: 100%;
}

.featured-products-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

@media (max-width: 768px) {
    .featured-products-card:hover {
        transform: translateY(-4px);
    }
}

.featured-products-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111111;
    overflow: hidden;
    position: relative;
}

.featured-products-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: brightness(0.9);
}

.featured-products-card:hover .featured-products-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .featured-products-card:hover .featured-products-image {
        transform: scale(1.02);
    }
}

.featured-products-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-products-placeholder-icon {
    width: 3rem;
    height: 3rem;
    color: #4b5563;
}

.featured-products-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .featured-products-card-content {
        padding: 1.5rem;
    }
}

.featured-products-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-products-card:hover .featured-products-card-title {
    color: #E14035;
}

.featured-products-card-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
}

.featured-products-card-price .price-euro {
    font-size: 1.25rem;
    font-weight: 700;
    color: #22C55E;
}

.featured-products-card-price .price-tl {
    font-size: 0.875rem;
    font-weight: 500;
    color: #94A3B8;
}

@media (min-width: 640px) {
    .featured-products-card-price .price-euro {
        font-size: 1.5rem;
    }
    
    .featured-products-card-price .price-tl {
        font-size: 0.9375rem;
    }
}

.featured-products-view-all-mobile {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .featured-products-view-all-mobile {
        display: none;
    }
}

.featured-products-view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-products-view-all-btn:hover {
    background: rgba(17, 17, 17, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Process Timeline Section */
.process-timeline-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .process-timeline-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .process-timeline-section {
        padding: 6rem 0;
    }
}

.process-timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .process-timeline-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .process-timeline-header {
        margin-bottom: 5rem;
    }
}

.process-timeline-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .process-timeline-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.process-timeline-title {
    font-size: clamp(1.875rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.process-timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .process-timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .process-timeline-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.process-timeline-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 640px) {
    .process-timeline-card {
        padding: 2rem;
    }
}

.process-timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.process-timeline-card:hover::before {
    left: 100%;
}

.process-timeline-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

@media (max-width: 768px) {
    .process-timeline-card:hover {
        transform: translateY(-4px);
    }
}

.process-timeline-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(225, 64, 53, 0.4);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
    .process-timeline-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.process-timeline-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E14035, #E85C52);
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.process-timeline-card:hover .process-timeline-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(225, 64, 53, 0.6);
}

.process-timeline-card:hover .process-timeline-number::after {
    opacity: 0.5;
}

.process-timeline-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .process-timeline-card-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.process-timeline-card-text {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 640px) {
    .process-timeline-card-text {
        font-size: 1rem;
    }
}

/* Dealers CTA Section */
.dealers-cta-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .dealers-cta-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .dealers-cta-section {
        padding: 6rem 0;
    }
}

.dealers-cta-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
    .dealers-cta-card {
        padding: 2.5rem;
        border-radius: 1.25rem;
    }
}

@media (min-width: 768px) {
    .dealers-cta-card {
        padding: 3rem;
    }
}

.dealers-cta-card:hover {
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

.dealers-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(225, 64, 53, 0.1), transparent, rgba(225, 64, 53, 0.1));
    pointer-events: none;
    z-index: 1;
}

.dealers-cta-content {
    position: relative;
    z-index: 2;
}

.dealers-cta-title {
    font-size: clamp(1.875rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

@media (min-width: 640px) {
    .dealers-cta-title {
        margin-bottom: 1.5rem;
    }
}

.dealers-cta-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #d1d5db;
    line-height: 1.6;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
    .dealers-cta-description {
        margin-bottom: 2rem;
    }
}

.dealers-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .dealers-cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.dealers-cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.dealers-cta-button-secondary {
    background: transparent;
    border: 2px solid rgba(225, 64, 53, 0.5);
    color: #E85C52;
    box-shadow: none;
}

.dealers-cta-button-secondary:hover {
    background: rgba(225, 64, 53, 0.1);
    border-color: rgba(225, 64, 53, 0.8);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.3);
}

@media (min-width: 640px) {
    .dealers-cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        border-radius: 0.875rem;
    }
}

.dealers-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.dealers-cta-button:hover::before {
    left: 100%;
}

.dealers-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 64, 53, 0.6);
    background: linear-gradient(135deg, #E14035 0%, #E14035 100%);
}

.dealers-cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .dealers-cta-icon {
        width: 1.5rem;
        height: 1.5rem;
        margin-right: 0.75rem;
    }
}

/* FAQ Section */
.faq-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .faq-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .faq-section {
        padding: 6rem 0;
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .faq-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .faq-header {
        margin-bottom: 5rem;
    }
}

.faq-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .faq-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.faq-title {
    font-size: clamp(1.875rem, 4vw, 3.75rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
}

.faq-list {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .faq-list {
        gap: 1.5rem;
    }
}

.faq-item {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

@media (min-width: 640px) {
    .faq-item {
        padding: 2rem;
    }
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .faq-question {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.faq-question-mark {
    color: #E14035;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    font-weight: 800;
}

@media (min-width: 640px) {
    .faq-question-mark {
        margin-right: 1rem;
    }
}

.faq-question-text {
    flex: 1;
}

.faq-answer {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
    padding-left: 1.5rem;
}

@media (min-width: 640px) {
    .faq-answer {
        font-size: 1rem;
        padding-left: 2rem;
    }
}

.faq-answer-mark {
    color: #E14035;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
    font-weight: 800;
}

@media (min-width: 640px) {
    .faq-answer-mark {
        margin-right: 1rem;
    }
}

.faq-answer-text {
    flex: 1;
}

/* Footer Styles */
.site-footer {
    position: relative;
    border-top: 1px solid rgba(17, 17, 17, 0.5);
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    width: 100%;
    margin-top: auto;
}

.site-footer .container-max {
    padding: 2rem 1rem;
}

@media (min-width: 640px) {
    .site-footer .container-max {
        padding: 2.5rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .site-footer .container-max {
        padding: 3rem 2rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.footer-brand {
    grid-column: 1 / -1;
}

@media (min-width: 640px) {
    .footer-brand {
        grid-column: 1 / 3;
    }
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: 1;
    }
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: auto;
    max-width: 180px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    color: #ffffff;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .footer-logo {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-logo-link {
        margin-bottom: 1rem;
    }
}

.footer-description {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-description {
        font-size: 0.875rem;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-column-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.75rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

@media (min-width: 640px) {
    .footer-link {
        font-size: 0.875rem;
    }
}

.footer-link:hover {
    color: #E14035;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

@media (min-width: 640px) {
    .footer-contact {
        font-size: 0.875rem;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(17, 17, 17, 0.5);
    padding-top: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        padding-top: 2rem;
    }
}

.footer-copyright {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

@media (min-width: 640px) {
    .footer-copyright {
        font-size: 0.875rem;
    }
}

/* Image Hover Effects */
.image-hover {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.image-hover:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .image-hover:hover {
        transform: scale(1.02);
    }
}

/* Premium Inputs */
.input-premium {
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    color: white;
    transition: all 0.3s;
    font-size: 14px;
    width: 100%;
}

@media (min-width: 640px) {
    .input-premium {
        padding: 14px 18px;
        border-radius: 12px;
        font-size: 16px;
    }
}

.input-premium:focus {
    outline: none;
    border-color: #E14035;
    box-shadow: 0 0 0 3px rgba(225, 64, 53, 0.1);
    background: rgba(17, 17, 17, 0.8);
}

.input-premium::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Premium Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(225, 64, 53, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.5), transparent);
}

@media (max-width: 768px) {
    .site-header {
        background: rgba(10, 10, 10, 0.95);
    }
}

.header-nav {
    width: 100%;
    position: relative;
}

.header-nav .container-max {
    padding: 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1rem;
    gap: 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 1.125rem 2rem;
    }
}

/* Logo Styles */
.header-logo-wrapper {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.header-logo-wrapper:hover {
    transform: scale(1.05);
}

.header-logo-img {
    height: auto;
    max-width: 180px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 640px) {
    .header-logo-img {
        max-width: 140px;
    }
}

.header-logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
}

@media (min-width: 640px) {
    .header-logo-text {
        font-size: 1.375rem;
    }
}

@media (min-width: 768px) {
    .header-logo-text {
        font-size: 1.5rem;
    }
}

.header-logo-gradient {
    background: linear-gradient(135deg, #E14035 0%, #E85C52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(225, 64, 53, 0.5);
}

.header-logo-white {
    color: #ffffff;
    font-weight: 800;
}

.header-logo-accent {
    color: #d1d5db;
    font-weight: 700;
}

/* Desktop Navigation */
.header-nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .header-nav-desktop {
        display: flex;
    }
}

.header-nav-link {
    position: relative;
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    border-radius: 0.5rem;
    overflow: hidden;
    transform: translateY(0);
}

.header-nav-link:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
}

.header-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(225, 64, 53, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0.5rem;
}

.header-nav-link:hover::before {
    opacity: 1;
}

.header-nav-link-text {
    position: relative;
    z-index: 1;
    display: block;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1rem);
    height: 2px;
    background: linear-gradient(90deg, #E14035, #E85C52);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-link:hover {
    color: #ffffff;
}

.header-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.header-nav-link-active {
    color: #E14035;
}

.header-nav-link-active::before {
    opacity: 1;
    background: rgba(225, 64, 53, 0.15);
}

.header-nav-link-active::after {
    transform: translateX(-50%) scaleX(1);
}

/* User Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.2s;
}

.header-cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: scale(1.05);
}

.header-cart-icon {
    width: 20px;
    height: 20px;
}

.header-cart-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.375rem;
    background: linear-gradient(135deg, #22C55E 0%, #10B981 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    border: 2px solid #0F172A;
}

/* Currency Rate Display */
.header-currency-rate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(225, 64, 53, 0.1);
    border: 1px solid rgba(225, 64, 53, 0.2);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.header-currency-label {
    color: rgba(255, 255, 255, 0.7);
}

.header-currency-value {
    color: #E14035;
    font-weight: 700;
}

@media (max-width: 640px) {
    .header-currency-rate {
        display: none;
    }
}

.header-user-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.header-user-wrapper:hover {
    transform: scale(1.1);
}

.header-avatar-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(225, 64, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(225, 64, 53, 0.2);
}

.header-user-wrapper:hover .header-avatar-container {
    border-color: #E14035;
    box-shadow: 0 8px 15px -3px rgba(225, 64, 53, 0.4);
}

.header-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-avatar-placeholder-bg {
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-avatar-initial {
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
}

.header-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.2) 0%, rgba(199, 53, 42, 0.2) 100%);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(225, 64, 53, 0.3);
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header-login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.header-login-btn:hover::before {
    left: 100%;
}

.header-login-btn:hover {
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.3) 0%, rgba(199, 53, 42, 0.3) 100%);
    border-color: rgba(225, 64, 53, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 64, 53, 0.3);
}

.header-login-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

/* Mobile Menu Button */
.header-mobile-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 1.75rem;
    height: 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .header-mobile-btn {
        display: none;
    }
}

.header-mobile-icon-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #E14035, #E85C52);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.header-mobile-btn:hover .header-mobile-icon-line {
    background: linear-gradient(90deg, #E14035, #E85C52);
    box-shadow: 0 0 8px rgba(225, 64, 53, 0.5);
}

.header-mobile-btn-active .header-mobile-icon-line:nth-child(1) {
    transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.header-mobile-btn-active .header-mobile-icon-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-1rem);
}

.header-mobile-btn-active .header-mobile-icon-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Mobile Menu */
.header-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1rem 1.5rem;
    border-top: 1px solid rgba(225, 64, 53, 0.1);
    gap: 0.5rem;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease-out;
}

.header-mobile-menu.show {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .header-mobile-menu {
        display: none !important;
    }
}

.header-mobile-menu.hidden {
    display: none !important;
}

.header-mobile-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.625rem;
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header-mobile-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.header-mobile-link:hover::before {
    left: 100%;
}

.header-mobile-link:hover {
    background: rgba(225, 64, 53, 0.1);
    color: #E14035;
    transform: translateX(4px);
}

.header-mobile-link-active {
    color: #E14035;
    background: rgba(225, 64, 53, 0.15);
    border-left: 3px solid #dc2626;
}

.header-mobile-link-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Mobile Currency Rate Display */
.header-mobile-currency-rate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    margin-bottom: 0.5rem;
    background: rgba(225, 64, 53, 0.1);
    border: 1px solid rgba(225, 64, 53, 0.2);
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.header-mobile-currency-label {
    color: rgba(255, 255, 255, 0.7);
}

.header-mobile-currency-value {
    color: #E14035;
    font-weight: 700;
}

/* Number Badge */
.number-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(225, 64, 53, 0.4);
    position: relative;
}

@media (min-width: 640px) {
    .number-badge {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

.number-badge::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E14035, #E85C52);
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

@media (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 10px;
    }
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #E14035, #C7352A);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #E14035, #E14035);
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent layout shift for images */
img[width][height] {
    aspect-ratio: attr(width) / attr(height);
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* About Page Styles */
.about-hero-section {
    width: 100%;
    padding: 1.5rem 0 1rem;
    background: transparent;
    text-align: center;
}

.about-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.about-hero-description {
    font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
    color: #D1D5DB;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.about-section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.about-section-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #D1D5DB;
    line-height: 1.6;
}

/* What We Do Section */
.about-what-we-do-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .about-what-we-do-section {
        padding: 2.5rem 0;
    }
}

.about-what-we-do-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

/* Expertise Section */
.about-expertise-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .about-expertise-section {
        padding: 2.5rem 0;
    }
}

.about-expertise-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .about-expertise-header {
        margin-bottom: 2rem;
    }
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .about-expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-expertise-item {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about-expertise-item {
        padding: 1.75rem;
    }
}

.about-expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.about-expertise-item:hover::before {
    left: 100%;
}

.about-expertise-item:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 64, 53, 0.3);
    box-shadow: 0 8px 24px rgba(225, 64, 53, 0.15);
}

@media (max-width: 768px) {
    .about-expertise-item:hover {
        transform: translateY(-2px);
    }
}

.about-expertise-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(225, 64, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .about-expertise-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1.25rem;
    }
}

.about-expertise-item:hover .about-expertise-icon {
    transform: scale(1.1);
}

.about-expertise-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #E14035;
}

@media (min-width: 640px) {
    .about-expertise-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.about-expertise-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .about-expertise-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
}

.about-expertise-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .about-expertise-text {
        font-size: 0.875rem;
    }
}

/* Why Choose Section */
.about-why-choose-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .about-why-choose-section {
        padding: 2.5rem 0;
    }
}

.about-why-choose-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .about-why-choose-header {
        margin-bottom: 2rem;
    }
}

.about-why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .about-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .about-why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-why-choose-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about-why-choose-card {
        padding: 1.75rem;
    }
}

.about-why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.about-why-choose-card:hover::before {
    left: 100%;
}

.about-why-choose-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 64, 53, 0.3);
    box-shadow: 0 8px 24px rgba(225, 64, 53, 0.15);
}

@media (max-width: 768px) {
    .about-why-choose-card:hover {
        transform: translateY(-2px);
    }
}

.about-why-choose-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #E14035;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .about-why-choose-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
}

.about-why-choose-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .about-why-choose-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
}

.about-why-choose-card-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .about-why-choose-card-text {
        font-size: 0.875rem;
    }
}

/* Vision & Mission Section */
.about-vision-mission-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .about-vision-mission-section {
        padding: 2.5rem 0;
    }
}

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

@media (min-width: 768px) {
    .about-vision-mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.about-vision-mission-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .about-vision-mission-card {
        padding: 2rem;
    }
}

.about-vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.about-vision-mission-card:hover::before {
    left: 100%;
}

.about-vision-mission-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 64, 53, 0.3);
    box-shadow: 0 8px 24px rgba(225, 64, 53, 0.15);
}

@media (max-width: 768px) {
    .about-vision-mission-card:hover {
        transform: translateY(-2px);
    }
}

.about-vision-mission-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(225, 64, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .about-vision-mission-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin-bottom: 1.25rem;
    }
}

.about-vision-mission-card:hover .about-vision-mission-icon {
    transform: scale(1.1);
}

.about-vision-mission-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #E14035;
}

@media (min-width: 640px) {
    .about-vision-mission-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.about-vision-mission-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .about-vision-mission-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.about-vision-mission-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .about-vision-mission-text {
        font-size: 1rem;
    }
}

/* Utility Classes */
.container-max {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

@media (min-width: 768px) {
    .container-max {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container-max {
        padding: 0 3rem;
    }
}

/* Responsive Typography - Only apply when no explicit size is set */
section h1,
section h2,
section h3 {
    line-height: 1.2;
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .premium-card {
        padding: 1rem;
    }

    .section-divider {
        margin: 2rem 0;
    }
}

/* Products Page Styles */
.products-hero-section {
    width: 100%;
    padding: 1.5rem 1rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .products-hero-section {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .products-hero-section {
        padding: 2.5rem 2rem;
    }
}

.products-hero-content {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto;
}

.products-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .products-hero-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.products-hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

@media (min-width: 640px) {
    .products-hero-title {
        margin-bottom: 1rem;
    }
}

.products-hero-description {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #D1D5DB;
    line-height: 1.6;
    max-width: 42rem;
    margin: 0 auto;
}

.products-section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .products-section-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.products-section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

@media (min-width: 640px) {
    .products-section-title {
        margin-bottom: 2rem;
    }
}

/* Categories Section */
.products-categories-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .products-categories-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .products-categories-section {
        padding: 6rem 0;
    }
}

.products-categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .products-categories-header {
        margin-bottom: 4rem;
    }
}

.products-categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .products-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.products-category-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .products-category-card {
        padding: 2rem;
    }
}

.products-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.products-category-card:hover::before {
    left: 100%;
}

.products-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

@media (max-width: 768px) {
    .products-category-card:hover {
        transform: translateY(-4px);
    }
}

.products-category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.2) 0%, rgba(199, 53, 42, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .products-category-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 2rem;
    }
}

.products-category-card:hover .products-category-icon {
    transform: scale(1.1);
}

.products-category-icon svg {
    width: 2rem;
    height: 2rem;
    color: #E14035;
}

@media (min-width: 640px) {
    .products-category-icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.products-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
}

@media (min-width: 640px) {
    .products-category-title {
        font-size: 1.125rem;
    }
}

/* Why Products Section */
.products-why-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .products-why-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .products-why-section {
        padding: 6rem 0;
    }
}

.products-why-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .products-why-card {
        padding: 3rem 2.5rem;
    }
}

.products-why-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

@media (min-width: 640px) {
    .products-why-title {
        margin-bottom: 1.5rem;
    }
}

.products-why-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #D1D5DB;
    line-height: 1.6;
}

/* Products Grid Section */
.products-grid-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .products-grid-section {
        padding: 3rem 0;
    }
}

.products-layout-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .products-layout-wrapper {
        flex-direction: row;
        gap: 2rem;
        align-items: flex-start;
    }
}

.products-filters-sidebar {
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 0;
    order: 1;
}

@media (min-width: 1024px) {
    .products-filters-sidebar {
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        order: 0;
    }
}

.products-filters-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .products-filters-card {
        padding: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .products-filters-card {
        position: sticky;
        top: 2rem;
        max-height: calc(100vh - 4rem);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

/* Scrollbar styling for filters card */
.products-filters-card::-webkit-scrollbar {
    width: 6px;
}

.products-filters-card::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
    border-radius: 3px;
}

.products-filters-card::-webkit-scrollbar-thumb {
    background: rgba(225, 64, 53, 0.5);
    border-radius: 3px;
}

.products-filters-card::-webkit-scrollbar-thumb:hover {
    background: rgba(225, 64, 53, 0.7);
}

.products-filters-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.products-filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.products-filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.products-filter-group:first-child {
    margin-top: 0;
    padding-top: 0;
}

.products-filter-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.products-search-form,
.products-price-form,
.products-sort-form {
    width: 100%;
    display: block;
}

.products-search-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.products-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.products-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.products-search-input:focus {
    outline: none;
    border-color: #E14035;
    background-color: rgba(10, 10, 10, 0.8);
}

.products-search-input:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.products-search-button {
    padding: 0.75rem;
    background: #E14035;
    border: none;
    border-radius: 0.5rem;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-width: 44px;
}

.products-search-button:hover {
    background: #C7352A;
}

.products-search-button:active {
    transform: scale(0.95);
}

.products-price-inputs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    width: 100%;
}

.products-price-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s ease;
}

.products-price-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.products-price-input:focus {
    outline: none;
    border-color: #E14035;
    background-color: rgba(10, 10, 10, 0.8);
}

.products-price-input:hover {
    border-color: rgba(255, 255, 255, 0.15);
}


.products-filter-apply-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #E14035;
    border: none;
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    box-sizing: border-box;
}

.products-filter-apply-btn:hover {
    background: #C7352A;
}

.products-filter-apply-btn:active {
    transform: scale(0.98);
}

.products-sort-select,
.products-order-select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.6);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E14035'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    -ms-appearance: none !important;
    text-indent: 0.01px;
    text-overflow: '';
    box-sizing: border-box;
}

.products-sort-select:hover,
.products-order-select:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background-color: rgba(10, 10, 10, 0.8);
}

.products-sort-select:focus,
.products-order-select:focus {
    outline: none;
    border-color: #E14035;
    background-color: rgba(10, 10, 10, 0.8);
}

.products-order-select {
    margin-top: 0.5rem;
}

/* Select option styling */
.products-sort-select option,
.products-order-select option {
    background: #111111;
    color: #FFFFFF;
}

.products-filter-clear {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #E85C52;
    text-decoration: none;
    transition: color 0.3s ease;
}

.products-filter-clear:hover {
    color: #E14035;
    text-decoration: underline;
}

.products-grid-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
    order: 0;
}

@media (min-width: 1024px) {
    .products-grid-wrapper {
        order: 1;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.products-product-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.products-product-card-inner {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.products-product-card:hover .products-product-card-inner {
    transform: translateY(-4px);
    border-color: rgba(225, 64, 53, 0.3);
    box-shadow: 0 8px 24px rgba(225, 64, 53, 0.15);
}

@media (max-width: 768px) {
    .products-product-card:hover .products-product-card-inner {
        transform: translateY(-2px);
    }
}

.products-product-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #0a0a0a;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.products-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.products-product-card:hover .products-product-image {
    transform: scale(1.05);
}


.products-product-discount-badge-overlay {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.375rem 0.625rem;
    background: #E14035;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.375rem;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(225, 64, 53, 0.4);
}

.products-product-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-product-placeholder-icon {
    width: 3rem;
    height: 3rem;
    color: #4b5563;
}

.products-product-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .products-product-content {
        padding: 1.5rem;
        gap: 1rem;
    }
}

.products-product-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
    line-height: 1.4;
    transition: color 0.2s ease;
}

@media (min-width: 640px) {
    .products-product-title {
        font-size: 1.25rem;
    }
}

.products-product-title {
    color: inherit;
    transition: color 0.2s ease;
}

.products-product-card:hover .products-product-title {
    color: #E14035;
}

.products-product-description {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .products-product-description {
        font-size: 0.875rem;
    }
}

.products-product-price-wrapper {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
}

.products-product-price-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.products-product-price-old-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-product-price-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.products-product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0;
    line-height: 1.2;
}

.products-product-price-euro {
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.products-product-price-tl {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E14035;
    line-height: 1.2;
}

.products-product-price-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

.products-product-price-sale .products-product-price-tl {
    color: #10B981;
}

.products-product-currency {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.8;
    margin-left: 0.25rem;
}

.products-product-price-old {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin: 0;
}

/* Bayi Fiyatı Stilleri */
.products-product-price-normal-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.products-product-price-normal-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.products-product-price-normal {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.products-product-price-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.products-product-price-main.products-product-price-dealer {
    gap: 0.75rem;
}

.products-product-dealer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.25) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.products-product-price-dealer .products-product-price {
    color: #10B981;
}

@media (min-width: 640px) {
    .products-product-price {
        font-size: 1.75rem;
    }

    .products-product-price-old {
        font-size: 1rem;
    }
    
    .products-product-price-normal {
        font-size: 1rem;
    }
    
    .products-product-dealer-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

.products-product-actions {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    margin-top: auto;
    padding-top: 0.75rem;
}

.products-product-btn-primary {
    width: 100%;
}

.products-product-btn-primary,
.products-product-btn-secondary {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (min-width: 640px) {

    .products-product-btn-primary,
    .products-product-btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.products-product-btn-primary {
    background: #E14035;
    color: #FFFFFF;
    border: none;
}

.products-product-btn-primary:hover {
    background: #C7352A;
    transform: translateY(-1px);
}

.products-product-btn-primary:active {
    transform: translateY(0);
}

.products-product-btn-icon {
    transition: transform 0.2s ease;
    width: 16px;
    height: 16px;
}

.products-product-btn-primary:hover .products-product-btn-icon {
    transform: translateX(2px);
}

.products-product-btn-secondary {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-product-btn-secondary:hover {
    background: rgba(17, 17, 17, 0.9);
    transform: translateY(-2px);
    border-color: rgba(225, 64, 53, 0.3);
}

.products-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.products-infinite-scroll-loader {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.products-infinite-scroll-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.products-spinner-icon {
    width: 2rem;
    height: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.products-infinite-scroll-spinner span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.products-empty {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.products-empty-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 24rem;
}

.products-empty-icon {
    width: 4rem;
    height: 4rem;
    color: #4b5563;
    margin: 0 auto 1.5rem;
}

.products-empty-text {
    font-size: 1rem;
    color: #9CA3AF;
}

/* Product Detail Page Styles */
.product-detail-breadcrumb {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .product-detail-breadcrumb {
        padding: 2rem 0;
    }
}

.product-detail-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-detail-breadcrumb-link {
    font-size: 0.875rem;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-detail-breadcrumb-link:hover {
    color: #E14035;
}

.product-detail-breadcrumb-separator {
    font-size: 0.875rem;
    color: #4b5563;
}

.product-detail-breadcrumb-current {
    font-size: 0.875rem;
    color: #FFFFFF;
    font-weight: 500;
}

.product-detail-hero {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .product-detail-hero {
        padding: 2rem 0;
    }
}

.product-detail-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.product-detail-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #D1D5DB;
    line-height: 1.6;
}

.product-detail-content-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .product-detail-content-section {
        padding: 5rem 0;
    }
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Product Image Slider */
.product-image-slider {
    width: 100%;
}

.product-slider-main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(17, 17, 17, 0.8);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.product-slider-main-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: #111111;
}

.product-slider-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.product-zoom-controls {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.product-zoom-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-zoom-btn:hover {
    background: rgba(225, 64, 53, 0.9);
    border-color: rgba(225, 64, 53, 0.5);
    transform: scale(1.1);
}

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

.product-slider-nav-btn {
    width: 3rem;
    height: 3rem;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.product-slider-nav-btn:hover {
    background: rgba(225, 64, 53, 0.9);
    border-color: rgba(225, 64, 53, 0.5);
    transform: scale(1.1);
}

.product-slider-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
    max-width: 100%;
}

.product-slider-thumbnail-item {
    aspect-ratio: 1;
    background: rgba(17, 17, 17, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-slider-thumbnail-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(225, 64, 53, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.product-slider-thumbnail-item:hover::before,
.product-slider-thumbnail-item.active::before {
    background: rgba(225, 64, 53, 0.2);
}

.product-slider-thumbnail-item.active {
    border-color: #E14035;
    box-shadow: 0 0 0 2px rgba(225, 64, 53, 0.3);
}

.product-slider-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-slider-thumbnail-item:hover .product-slider-thumbnail-image {
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .product-slider-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }

    .product-zoom-controls {
        top: 0.5rem;
        right: 0.5rem;
    }

    .product-zoom-btn {
        width: 2rem;
        height: 2rem;
    }

    .product-slider-nav-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-detail-price-wrapper {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-price-label {
    display: block;
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-bottom: 0.5rem;
}

.product-detail-price-old-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.product-detail-price-old {
    font-size: 1.5rem;
    font-weight: 600;
    color: #9CA3AF;
    text-decoration: line-through;
}

.product-detail-discount-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(225, 64, 53, 0.3);
}

.product-detail-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
    line-height: 1.2;
}

.product-detail-price-euro {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.product-detail-price-tl {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #E14035 0%, #E85C52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.product-detail-price-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
}

.product-detail-price-sale .product-detail-price-tl {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-detail-sku {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-top: 0.5rem;
    font-weight: 500;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .product-detail-actions {
        flex-direction: row;
    }
}

.product-detail-btn-primary,
.product-detail-btn-secondary {
    flex: 1;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-detail-btn-primary {
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.4);
}

.product-detail-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 64, 53, 0.6);
}

.product-detail-btn-secondary {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-btn-secondary:hover {
    background: rgba(17, 17, 17, 0.9);
    transform: translateY(-2px);
    border-color: rgba(225, 64, 53, 0.3);
}

.product-detail-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.product-detail-features {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-features-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.product-detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #D1D5DB;
}

.product-detail-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #E14035;
    flex-shrink: 0;
}

/* Product Detail Legal Section */
.product-detail-legal-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-legal-section-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.product-detail-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.product-detail-legal-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.625rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.product-detail-legal-link:hover {
    background: rgba(17, 17, 17, 0.8);
    border-color: rgba(225, 64, 53, 0.3);
}

.product-detail-legal-link-icon-wrapper {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 64, 53, 0.15);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.product-detail-legal-link:hover .product-detail-legal-link-icon-wrapper {
    background: rgba(225, 64, 53, 0.25);
}

.product-detail-legal-link-icon {
    width: 1.125rem;
    height: 1.125rem;
    color: #E14035;
}

.product-detail-legal-link-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.product-detail-legal-link-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.4;
}

.product-detail-legal-link-subtitle {
    font-size: 0.75rem;
    color: #9CA3AF;
    line-height: 1.4;
}

.product-detail-legal-link-arrow {
    width: 1rem;
    height: 1rem;
    color: #6B7280;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.product-detail-legal-link:hover .product-detail-legal-link-arrow {
    color: #E14035;
    transform: translateX(2px);
}

/* Product Legal Modals */
.product-legal-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
    overflow-y: auto;
}

.product-legal-modal.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.product-legal-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.product-legal-modal-container {
    position: relative;
    width: 100%;
    max-width: 56rem;
    max-height: 50vh;
    margin: auto;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transform: scale(0.98) translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    opacity: 0;
}

.product-legal-modal.active .product-legal-modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.product-legal-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 17, 17, 0.9);
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

.product-legal-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.product-legal-modal-close {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #9CA3AF;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.product-legal-modal-close:hover {
    background: rgba(225, 64, 53, 0.2);
    border-color: rgba(225, 64, 53, 0.4);
    color: #E14035;
}

.product-legal-modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2rem;
    background: #0A0A0A;
    min-height: 0;
    max-height: 50vh;
}

.product-legal-modal-content {
    color: #D1D5DB;
    line-height: 1.75;
    font-size: 0.9375rem;
}

.product-legal-modal-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-legal-modal-content h3:first-child {
    margin-top: 0;
}

.product-legal-modal-content p {
    margin-bottom: 1rem;
    color: #D1D5DB;
    line-height: 1.75;
}

.product-legal-modal-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.product-legal-modal-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: #D1D5DB;
    line-height: 1.7;
}

.product-legal-modal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E14035;
    font-weight: bold;
    font-size: 1.2em;
}

/* Scrollbar styling for modal */
.product-legal-modal-body::-webkit-scrollbar {
    width: 8px;
}

.product-legal-modal-body::-webkit-scrollbar-track {
    background: rgba(17, 17, 17, 0.5);
    border-radius: 4px;
}

.product-legal-modal-body::-webkit-scrollbar-thumb {
    background: rgba(225, 64, 53, 0.6);
    border-radius: 4px;
}

.product-legal-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(225, 64, 53, 0.8);
}

/* Firefox scrollbar */
.product-legal-modal-body {
    scrollbar-width: thin;
    scrollbar-color: rgba(225, 64, 53, 0.6) rgba(17, 17, 17, 0.5);
}

@media (max-width: 768px) {
    .product-detail-legal-link {
        padding: 0.875rem;
        gap: 0.875rem;
    }

    .product-detail-legal-link-icon-wrapper {
        width: 2.25rem;
        height: 2.25rem;
    }

    .product-detail-legal-link-title {
        font-size: 0.875rem;
    }

    .product-detail-legal-link-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .product-legal-modal {
        padding: 0.5rem;
    }

    .product-legal-modal-container {
        max-width: 100%;
        max-height: 50vh;
        border-radius: 1rem;
    }

    .product-legal-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .product-legal-modal-body {
        padding: 1.5rem;
    }

    .product-legal-modal-header {
        padding: 1.5rem;
    }

    .product-legal-modal-title {
        font-size: 1.375rem;
    }

    .product-legal-modal-close {
        width: 2.5rem;
        height: 2.5rem;
    }

    .product-legal-modal-body {
        padding: 1.5rem;
    }

    .product-legal-modal-content {
        font-size: 0.875rem;
        line-height: 1.75;
    }

    .product-legal-modal-content h3 {
        font-size: 1.125rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .product-detail-legal-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .product-detail-legal-section-title {
        font-size: 0.8125rem;
        margin-bottom: 0.875rem;
    }
}

.product-detail-description-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .product-detail-description-section {
        padding: 5rem 0;
    }
}

.product-detail-description-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
}

@media (min-width: 640px) {
    .product-detail-description-card {
        padding: 3rem 2.5rem;
    }
}

.product-detail-description-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.product-detail-description-content {
    font-size: 1rem;
    color: #D1D5DB;
    line-height: 1.8;
}

.product-detail-description-content h2,
.product-detail-description-content h3,
.product-detail-description-content h4 {
    color: #FFFFFF;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.product-detail-description-content p {
    margin-bottom: 1rem;
}

.product-detail-description-content ul,
.product-detail-description-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.product-detail-description-content li {
    margin-bottom: 0.5rem;
}

.product-detail-description-content a {
    color: #E14035;
    text-decoration: underline;
}

.product-detail-description-content a:hover {
    color: #E85C52;
}

/* Services Page Styles */
.services-hero-section {
    width: 100%;
    padding: 1.5rem 0 1rem;
    background: transparent;
    text-align: center;
}

.services-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.services-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.services-hero-description {
    font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
    color: #D1D5DB;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid Section */
.services-grid-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .services-grid-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .services-grid-section {
        padding: 6rem 0;
    }
}

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

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.services-service-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.services-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.services-service-card:hover::before {
    left: 100%;
}

.services-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

@media (max-width: 768px) {
    .services-service-card:hover {
        transform: translateY(-4px);
    }
}

.services-service-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111111;
    overflow: hidden;
    position: relative;
}

.services-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: brightness(0.9);
}

.services-service-card:hover .services-service-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}


.services-service-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.1) 0%, rgba(199, 53, 42, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-service-placeholder-icon {
    width: 3rem;
    height: 3rem;
    color: rgba(225, 64, 53, 0.5);
}

@media (min-width: 640px) {
    .services-service-placeholder-icon {
        width: 4rem;
        height: 4rem;
    }
}

.services-service-image-placeholder-old {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-service-placeholder-icon-old {
    width: 3rem;
    height: 3rem;
    color: #4b5563;
}

.services-service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .services-service-content {
        padding: 2rem;
    }
}

.services-service-icon-small {
    width: 2rem;
    height: 2rem;
    color: #E14035;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-service-icon-small svg {
    width: 100%;
    height: 100%;
    color: #E14035;
}

.services-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    line-height: 1.4;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .services-service-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.services-service-card:hover .services-service-title {
    color: #E14035;
}

.services-service-description {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .services-service-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

.services-service-link {
    display: inline-flex;
    align-items: center;
    color: #E14035;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .services-service-link {
        font-size: 1rem;
    }
}

.services-service-card:hover .services-service-link {
    transform: translateX(8px);
}

.services-service-link-arrow {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

@media (min-width: 640px) {
    .services-service-link-arrow {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.services-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.services-empty {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.services-empty-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 24rem;
}

.services-empty-icon {
    width: 4rem;
    height: 4rem;
    color: #4b5563;
    margin: 0 auto 1.5rem;
}

.services-empty-text {
    font-size: 1rem;
    color: #9CA3AF;
}

/* Service Detail Page Styles */
.service-detail-breadcrumb {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .service-detail-breadcrumb {
        padding: 2rem 0;
    }
}

.service-detail-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-detail-breadcrumb-link {
    font-size: 0.875rem;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-detail-breadcrumb-link:hover {
    color: #E14035;
}

.service-detail-breadcrumb-separator {
    font-size: 0.875rem;
    color: #4b5563;
}

.service-detail-breadcrumb-current {
    font-size: 0.875rem;
    color: #FFFFFF;
    font-weight: 500;
}

.service-detail-hero {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .service-detail-hero {
        padding: 3rem 0;
    }
}

.service-detail-hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.service-detail-icon {
    width: 4rem;
    height: 4rem;
    color: #E14035;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-icon svg {
    width: 100%;
    height: 100%;
    color: #E14035;
}

@media (min-width: 640px) {
    .service-detail-icon {
        width: 5rem;
        height: 5rem;
        margin-bottom: 2rem;
    }
}

.service-detail-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.service-detail-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #D1D5DB;
    line-height: 1.6;
}

.service-detail-content-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .service-detail-content-section {
        padding: 5rem 0;
    }
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.service-detail-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #111111;
    border-radius: 1rem;
    overflow: hidden;
}

.service-detail-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .service-detail-actions {
        flex-direction: row;
    }
}

.service-detail-btn-primary,
.service-detail-btn-secondary {
    flex: 1;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.service-detail-btn-primary {
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.4);
}

.service-detail-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 64, 53, 0.6);
}

.service-detail-btn-secondary {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-btn-secondary:hover {
    background: rgba(17, 17, 17, 0.9);
    transform: translateY(-2px);
    border-color: rgba(225, 64, 53, 0.3);
}

.service-detail-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.service-detail-features {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-features-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.service-detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-detail-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #D1D5DB;
}

.service-detail-feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #E14035;
    flex-shrink: 0;
}

.service-detail-description-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .service-detail-description-section {
        padding: 5rem 0;
    }
}

.service-detail-description-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
}

@media (min-width: 640px) {
    .service-detail-description-card {
        padding: 3rem 2.5rem;
    }
}

.service-detail-description-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.service-detail-description-content {
    font-size: 1rem;
    color: #D1D5DB;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Quill Editor HTML Content Styles - Override base styles */
.service-detail-description-content > *:first-child {
    margin-top: 0;
}

.service-detail-description-content > *:last-child {
    margin-bottom: 0;
}

.service-detail-description-content h1,
.service-detail-description-content h2,
.service-detail-description-content h3,
.service-detail-description-content h4 {
    color: #FFFFFF;
    font-weight: 600;
}

.service-detail-description-content p {
    margin-bottom: 1rem;
    color: #D1D5DB;
}

.service-detail-description-content ul,
.service-detail-description-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.service-detail-description-content li {
    margin-bottom: 0.5rem;
    color: #D1D5DB;
}

.service-detail-description-content a {
    color: #E14035;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.service-detail-description-content a:hover {
    color: #E85C52;
}

/* Quill Editor HTML Content Styles for Service Detail */
.service-detail-description-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.service-detail-description-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-detail-description-content h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.service-detail-description-content h4 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-detail-description-content p {
    margin-bottom: 1rem;
    color: #D1D5DB;
}

.service-detail-description-content p:last-child {
    margin-bottom: 0;
}

.service-detail-description-content strong,
.service-detail-description-content b {
    font-weight: 600;
    color: #FFFFFF;
}

.service-detail-description-content em,
.service-detail-description-content i {
    font-style: italic;
}

.service-detail-description-content u {
    text-decoration: underline;
}

.service-detail-description-content s,
.service-detail-description-content strike {
    text-decoration: line-through;
    opacity: 0.7;
}

.service-detail-description-content ul,
.service-detail-description-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.service-detail-description-content ul {
    list-style-type: disc;
}

.service-detail-description-content ol {
    list-style-type: decimal;
}

.service-detail-description-content li {
    margin-bottom: 0.5rem;
    color: #D1D5DB;
    line-height: 1.7;
}

.service-detail-description-content li::marker {
    color: #E14035;
}

.service-detail-description-content a {
    color: #E14035;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.service-detail-description-content a:hover {
    color: #E85C52;
}

.service-detail-description-content blockquote {
    border-left: 4px solid #E14035;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #9CA3AF;
}

.service-detail-description-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
    color: #E14035;
}

.service-detail-description-content pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.service-detail-description-content pre code {
    background: none;
    padding: 0;
    color: #D1D5DB;
}

.service-detail-description-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.service-detail-description-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Quill inline styles (colors, backgrounds) */
.service-detail-description-content [style*="color"] {
    /* Quill renk stilleri korunur */
}

.service-detail-description-content [style*="background"] {
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

/* Dealers Page Styles - Revised */
/* Hero Section */
.dealers-hero-section-new {
    width: 100%;
    padding: 1.5rem 0 1rem;
    background: transparent;
    text-align: center;
}

.dealers-hero-content-new {
    max-width: 48rem;
    margin: 0 auto;
}

.dealers-hero-badge-new {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dealers-hero-title-new {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.dealers-hero-description-new {
    font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
    color: #D1D5DB;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.dealers-filter-section-new {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
}

.dealers-filter-container-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
}

.dealers-filter-select-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 200px;
}

.dealers-filter-label-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
}

.dealers-filter-icon-new {
    width: 1.125rem;
    height: 1.125rem;
    color: #E14035;
    flex-shrink: 0;
}

.dealers-filter-select-new {
    flex: 1;
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E14035'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
}

.dealers-filter-select-new:hover {
    border-color: rgba(225, 64, 53, 0.4);
    background-color: rgba(10, 10, 10, 1);
}

.dealers-filter-select-new:focus {
    outline: none;
    border-color: #E14035;
    box-shadow: 0 0 0 3px rgba(225, 64, 53, 0.15);
}

.dealers-filter-select-new option {
    background: #111111;
    color: #FFFFFF;
}

.dealers-filter-count-wrapper {
    display: flex;
    align-items: center;
}

.dealers-filter-count-new {
    font-size: 0.875rem;
    font-weight: 600;
    color: #E14035;
    white-space: nowrap;
    padding: 0.5rem 0.875rem;
    background: rgba(225, 64, 53, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(225, 64, 53, 0.2);
}

@media (max-width: 640px) {
    .dealers-filter-container-new {
        flex-direction: column;
        align-items: stretch;
    }

    .dealers-filter-select-wrapper {
        width: 100%;
    }

    .dealers-filter-count-wrapper {
        width: 100%;
    }

    .dealers-filter-count-new {
        width: 100%;
        text-align: center;
    }
}

/* Premium CTA Section */
.dealers-cta-section-premium {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

.dealers-cta-card-premium {
    position: relative;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.15) 0%, rgba(199, 53, 42, 0.1) 100%);
    border: 2px solid rgba(225, 64, 53, 0.3);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(225, 64, 53, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dealers-cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(225, 64, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 64, 53, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.dealers-cta-content-premium {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.dealers-cta-icon-wrapper-premium {
    width: 2.5rem !important;
    height: 2.5rem !important;
    min-width: 2.5rem !important;
    max-width: 2.5rem !important;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.3) 0%, rgba(199, 53, 42, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(225, 64, 53, 0.4);
    box-shadow: 0 4px 12px rgba(225, 64, 53, 0.2);
}

.dealers-cta-icon-premium {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    max-width: 1.25rem !important;
    color: #E14035;
}

.dealers-cta-text-premium {
    flex: 1;
    min-width: 250px;
}

.dealers-cta-title-premium {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #E85C52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dealers-cta-description-premium {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #D1D5DB;
    line-height: 1.6;
    max-width: 500px;
}

.dealers-cta-button-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(225, 64, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.dealers-cta-button-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.dealers-cta-button-premium:hover::before {
    left: 100%;
}

.dealers-cta-button-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(225, 64, 53, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #E85C52 0%, #E14035 100%);
}

.dealers-cta-button-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.dealers-cta-button-premium:hover .dealers-cta-button-icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .dealers-cta-card-premium {
        padding: 2rem 1.5rem;
    }

    .dealers-cta-content-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .dealers-cta-icon-wrapper-premium {
        margin: 0 auto;
    }

    .dealers-cta-text-premium {
        text-align: center;
    }

    .dealers-cta-button-premium {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .dealers-cta-section-premium {
        padding: 1.5rem 0;
    }

    .dealers-cta-card-premium {
        padding: 1.5rem 1.25rem;
    }
}

/* Become Dealer Page Styles */
.become-dealer-hero-section {
    width: 100%;
    padding: 1.5rem 0 1rem;
    background: transparent;
    text-align: center;
}

.become-dealer-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.become-dealer-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.become-dealer-hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.become-dealer-hero-description {
    font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
    color: #D1D5DB;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.become-dealer-section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.become-dealer-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

/* Steps Section */
.become-dealer-steps-section {
    width: 100%;
    padding: 3rem 0;
    background: transparent;
}

.become-dealer-steps-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

.become-dealer-steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
    position: relative;
}

.become-dealer-step-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 1.75rem 0;
    transition: all 0.3s ease;
}

.become-dealer-step-item:first-child {
    padding-top: 0;
}

.become-dealer-step-item:last-child {
    padding-bottom: 0;
}

.become-dealer-step-item:hover {
    transform: translateX(8px);
}

.become-dealer-step-connector {
    position: absolute;
    left: 1.5rem;
    top: 3.5rem;
    bottom: -1.75rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(225, 64, 53, 0.3) 0%, rgba(225, 64, 53, 0.1) 100%);
    z-index: 0;
}

.become-dealer-step-item:last-child .become-dealer-step-connector {
    display: none;
}

.become-dealer-step-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.become-dealer-step-number-wrapper {
    flex-shrink: 0;
    position: relative;
}

.become-dealer-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(225, 64, 53, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.become-dealer-step-item:hover .become-dealer-step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 64, 53, 0.6);
}

.become-dealer-step-text-wrapper {
    flex: 1;
    padding-top: 0.5rem;
}

.become-dealer-step-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

@media (min-width: 640px) {
    .become-dealer-step-text {
        font-size: 1.0625rem;
    }
}

.become-dealer-important-note {
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.15) 0%, rgba(199, 53, 42, 0.1) 100%);
    border: 2px solid rgba(225, 64, 53, 0.4);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.become-dealer-important-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E14035 0%, #C7352A 100%);
}

.become-dealer-note-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.become-dealer-note-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #E85C52;
    flex-shrink: 0;
}

.become-dealer-note-title {
    font-size: 1rem;
    font-weight: 700;
    color: #E85C52;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.become-dealer-note-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.become-dealer-steps-cta {
    text-align: center;
}

.become-dealer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(225, 64, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.become-dealer-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.become-dealer-cta-button:hover::before {
    left: 100%;
}

.become-dealer-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(225, 64, 53, 0.5);
}

.become-dealer-cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.become-dealer-cta-button:hover .become-dealer-cta-icon {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .become-dealer-steps-section {
        padding: 2rem 0;
    }

    .become-dealer-step-item {
        padding: 1.5rem 0;
    }

    .become-dealer-step-content {
        gap: 1.25rem;
    }

    .become-dealer-step-number {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
    }

    .become-dealer-step-text {
        font-size: 0.9375rem;
    }

    .become-dealer-important-note {
        padding: 1.25rem 1.5rem;
    }

    .become-dealer-cta-button {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 100%;
    }
}

/* Packages Section */
.become-dealer-packages-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

.become-dealer-packages-header {
    text-align: center;
    margin-bottom: 2rem;
}

.become-dealer-packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.become-dealer-packages-grid-single {
    grid-template-columns: 1fr;
    max-width: 28rem;
    justify-items: center;
}

@media (min-width: 768px) {
    .become-dealer-packages-grid:not(.become-dealer-packages-grid-single) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .become-dealer-packages-grid:not(.become-dealer-packages-grid-single) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.become-dealer-package-card {
    position: relative;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.become-dealer-package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 64, 53, 0.3);
    box-shadow: 0 8px 24px rgba(225, 64, 53, 0.15);
}

.become-dealer-package-featured {
    border: 2px solid rgba(225, 64, 53, 0.4);
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.1) 0%, rgba(199, 53, 42, 0.05) 100%);
}

.become-dealer-package-badge {
    position: absolute;
    top: -0.75rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.become-dealer-package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.become-dealer-package-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.become-dealer-package-price-wrapper {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.become-dealer-package-old-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.become-dealer-package-price {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.become-dealer-package-currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.become-dealer-package-savings {
    font-size: 0.875rem;
    color: #E85C52;
    font-weight: 600;
    margin-top: 0.5rem;
}

.become-dealer-package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.become-dealer-package-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.become-dealer-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #E85C52;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.become-dealer-package-feature span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* FAQ Section */
.become-dealer-faq-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

.become-dealer-faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.become-dealer-faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

.become-dealer-faq-category {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
}

.become-dealer-faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.become-dealer-faq-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.become-dealer-faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.become-dealer-faq-item:hover {
    border-color: rgba(225, 64, 53, 0.3);
}

.become-dealer-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.become-dealer-faq-question:hover {
    color: #E85C52;
}

.become-dealer-faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #E85C52;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.become-dealer-faq-item.active .become-dealer-faq-icon {
    transform: rotate(180deg);
}

.become-dealer-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.become-dealer-faq-answer-content {
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.become-dealer-faq-answer-content p {
    margin: 0 0 0.75rem 0;
}

.become-dealer-faq-answer-content p:last-child {
    margin-bottom: 0;
}

.become-dealer-faq-answer-content strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.become-dealer-faq-answer-content em {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.become-dealer-faq-answer-content ul,
.become-dealer-faq-answer-content ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.become-dealer-faq-answer-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.become-dealer-faq-answer-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.25rem 0 0.75rem 0;
}

.become-dealer-faq-answer-content h4:first-child {
    margin-top: 0;
}

.become-dealer-faq-answer-content ol {
    list-style-type: decimal;
}

.become-dealer-faq-answer-content ol li {
    margin: 0.75rem 0;
}

.become-dealer-faq-answer-content ol ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.become-dealer-faq-link {
    color: #E85C52;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.become-dealer-faq-link:hover {
    color: #E14035;
}

.become-dealer-info-box {
    background: rgba(225, 64, 53, 0.1);
    border: 1px solid rgba(225, 64, 53, 0.3);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin: 1.25rem 0;
}

.become-dealer-info-box strong {
    display: block;
    color: #E85C52;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.become-dealer-info-box ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
}

.become-dealer-info-box li {
    margin: 0.5rem 0;
    font-size: 0.875rem;
}

/* Quill editör HTML içeriği için ek stiller */
.become-dealer-faq-answer-content h1,
.become-dealer-faq-answer-content h2,
.become-dealer-faq-answer-content h3 {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.become-dealer-faq-answer-content h1 {
    font-size: 1.5rem;
    margin-top: 0;
}

.become-dealer-faq-answer-content h2 {
    font-size: 1.25rem;
}

.become-dealer-faq-answer-content h3 {
    font-size: 1.125rem;
}

.become-dealer-faq-answer-content u {
    text-decoration: underline;
}

.become-dealer-faq-answer-content s,
.become-dealer-faq-answer-content strike {
    text-decoration: line-through;
}

.become-dealer-faq-answer-content a {
    color: #E85C52;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.become-dealer-faq-answer-content a:hover {
    color: #E14035;
}

.become-dealer-faq-answer-content blockquote {
    border-left: 4px solid rgba(225, 64, 53, 0.5);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.become-dealer-faq-answer-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.875em;
}

.become-dealer-faq-answer-content pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
}

.become-dealer-faq-answer-content pre code {
    background: transparent;
    padding: 0;
}

.become-dealer-faq-answer-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
}

.become-dealer-faq-answer-content hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

.become-dealer-faq-answer-content [style*="color"] {
    /* Quill'in renk stillerini koru */
}

.become-dealer-faq-answer-content [style*="background"] {
    /* Quill'in arka plan renklerini koru */
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
}

.become-dealer-badge-save {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    margin-left: 0.5rem;
}

.become-dealer-table-wrapper {
    overflow-x: auto;
    margin: 1.25rem 0;
    -webkit-overflow-scrolling: touch;
}

.become-dealer-paket-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(17, 17, 17, 0.6);
    border-radius: 0.75rem;
    overflow: hidden;
    font-size: 0.875rem;
}

.become-dealer-paket-table thead {
    background: rgba(225, 64, 53, 0.2);
}

.become-dealer-paket-table th {
    padding: 1rem;
    text-align: left;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 0.875rem;
    border-bottom: 2px solid rgba(225, 64, 53, 0.3);
}

.become-dealer-paket-table th:not(:first-child) {
    text-align: center;
}

.become-dealer-paket-table td {
    padding: 0.875rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.become-dealer-paket-table tbody tr:hover {
    background: rgba(225, 64, 53, 0.05);
}

.become-dealer-paket-table tbody tr:last-child td {
    border-bottom: none;
}

.become-dealer-check {
    color: #22C55E;
    font-weight: 700;
    font-size: 1.125rem;
}

.become-dealer-cross {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 1.125rem;
}

.become-dealer-price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.become-dealer-price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.become-dealer-price-item:hover {
    border-color: rgba(225, 64, 53, 0.3);
    background: rgba(17, 17, 17, 0.8);
}

.become-dealer-price-item span {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.5;
}

.become-dealer-price-item strong:last-child {
    color: #E85C52;
    font-size: 1rem;
    font-weight: 700;
    margin-left: 1rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .become-dealer-paket-table {
        font-size: 0.75rem;
    }

    .become-dealer-paket-table th,
    .become-dealer-paket-table td {
        padding: 0.75rem 0.5rem;
    }

    .become-dealer-price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .become-dealer-price-item strong:last-child {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* CTA Section */
.become-dealer-cta-section {
    width: 100%;
    padding: 3rem 0;
    background: transparent;
}

.become-dealer-cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.become-dealer-cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.become-dealer-cta-description {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.become-dealer-cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.become-dealer-cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 64, 53, 0.5);
}

@media (max-width: 640px) {

    .become-dealer-steps-section,
    .become-dealer-packages-section,
    .become-dealer-faq-section {
        padding: 1.5rem 0;
    }

    .become-dealer-package-card {
        padding: 1.5rem;
    }

    .become-dealer-cta-section {
        padding: 2rem 0;
    }
}

/* Map Section */
.dealers-map-section-new {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
}

.dealers-map-title-new {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-align: center;
}

.dealers-map-container-new {
    width: 100%;
    height: 450px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Leaflet.js map container styles */
.dealers-map-container-new .leaflet-container {
    height: 100%;
    width: 100%;
    background: #0A0A0A;
}

/* Custom marker styles */
.custom-marker {
    background: transparent !important;
    border: none !important;
}

@media (max-width: 768px) {
    .dealers-map-container-new {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .dealers-map-container-new {
        height: 350px;
    }
}

/* Old styles - keeping for backward compatibility */
/* Compact Hero Section */
.dealers-hero-section-compact {
    width: 100%;
    padding: 2rem 0 1.5rem;
    background: transparent;
}

.dealers-hero-content-compact {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.dealers-hero-title-compact {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

.dealers-hero-description-compact {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #D1D5DB;
    line-height: 1.5;
}

/* Prominent Application Section */
.dealers-application-section-prominent {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    margin-bottom: 0.75rem;
}

.dealers-application-cta-prominent {
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.15) 0%, rgba(199, 53, 42, 0.1) 100%);
    border: 2px solid rgba(225, 64, 53, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

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

.dealers-application-icon-small {
    width: 1.75rem !important;
    height: 1.75rem !important;
    min-width: 1.75rem !important;
    max-width: 1.75rem !important;
    border-radius: 0.375rem;
    background: rgba(225, 64, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dealers-application-icon-small svg {
    width: 1rem !important;
    height: 1rem !important;
    min-width: 1rem !important;
    max-width: 1rem !important;
    max-height: 1rem !important;
    color: #E14035 !important;
    flex-shrink: 0 !important;
}

.dealers-application-text-wrapper {
    flex: 1;
    min-width: 200px;
}

.dealers-application-title-small {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #FFFFFF;
}

.dealers-application-text-small {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    color: #D1D5DB;
    line-height: 1.4;
}

.dealers-application-button-prominent {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(225, 64, 53, 0.3);
}

.dealers-application-button-prominent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 64, 53, 0.5);
    background: linear-gradient(135deg, #E85C52 0%, #E14035 100%);
}

@media (max-width: 640px) {
    .dealers-application-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .dealers-application-icon-small {
        margin: 0 auto;
    }

    .dealers-application-button-prominent {
        width: 100%;
        justify-content: center;
    }
}

/* Combined Filter and Map Section */
.dealers-filter-map-combined-section {
    width: 100%;
    padding: 1.5rem 0 1rem;
    background: transparent;
}

.dealers-filter-map-wrapper {
    width: 100%;
}

.dealers-filter-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
}

.dealers-filter-label-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
}

.dealers-filter-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #E14035;
}

.dealers-filter-select-compact {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E14035'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.dealers-filter-select-compact:hover {
    border-color: rgba(225, 64, 53, 0.5);
    background-color: rgba(10, 10, 10, 0.9);
}

.dealers-filter-select-compact:focus {
    outline: none;
    border-color: #E14035;
    box-shadow: 0 0 0 3px rgba(225, 64, 53, 0.2);
}

.dealers-filter-count-compact {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: #E14035;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: rgba(225, 64, 53, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(225, 64, 53, 0.2);
}

@media (max-width: 640px) {
    .dealers-filter-compact {
        flex-direction: column;
        align-items: stretch;
    }

    .dealers-filter-select-compact {
        width: 100%;
    }
}

/* Compact Map Section */
.dealers-map-section-compact {
    width: 100%;
    padding: 1.5rem 0 2rem;
    background: transparent;
}

.dealers-map-container-compact {
    width: 100%;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .dealers-map-container-compact {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .dealers-map-container-compact {
        height: 350px;
    }
}

/* Compact Hero Section */
.dealers-hero-section-compact {
    width: 100%;
    padding: 2rem 0 1.5rem;
    background: transparent;
}

.dealers-hero-content-compact {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.dealers-hero-title-compact {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

.dealers-hero-description-compact {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: #D1D5DB;
    line-height: 1.5;
}

/* Prominent Application Section */
.dealers-application-section-prominent {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    margin-bottom: 0.75rem;
}

.dealers-application-cta-prominent {
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.15) 0%, rgba(199, 53, 42, 0.1) 100%);
    border: 2px solid rgba(225, 64, 53, 0.3);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

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

.dealers-application-icon-small {
    width: 1.75rem !important;
    height: 1.75rem !important;
    min-width: 1.75rem !important;
    max-width: 1.75rem !important;
    border-radius: 0.375rem;
    background: rgba(225, 64, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dealers-application-icon-small svg {
    width: 1rem !important;
    height: 1rem !important;
    min-width: 1rem !important;
    max-width: 1rem !important;
    max-height: 1rem !important;
    color: #E14035 !important;
    flex-shrink: 0 !important;
}

.dealers-application-text-wrapper {
    flex: 1;
    min-width: 200px;
}

.dealers-application-title-small {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #FFFFFF;
}

.dealers-application-text-small {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    color: #D1D5DB;
    line-height: 1.4;
}

.dealers-application-button-prominent {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(225, 64, 53, 0.3);
}

.dealers-application-button-prominent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 64, 53, 0.5);
    background: linear-gradient(135deg, #E85C52 0%, #E14035 100%);
}

@media (max-width: 640px) {
    .dealers-application-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .dealers-application-icon-small {
        margin: 0 auto;
    }

    .dealers-application-button-prominent {
        width: 100%;
        justify-content: center;
    }
}

/* Combined Filter and Map Section */
.dealers-filter-map-combined-section {
    width: 100%;
    padding: 1.5rem 0 1rem;
    background: transparent;
}

.dealers-filter-map-wrapper {
    width: 100%;
}

.dealers-filter-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
}

.dealers-filter-label-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: #FFFFFF;
    flex-shrink: 0;
}

.dealers-filter-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #E14035;
}

.dealers-filter-select-compact {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23E14035'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.dealers-filter-select-compact:hover {
    border-color: rgba(225, 64, 53, 0.5);
    background-color: rgba(10, 10, 10, 0.9);
}

.dealers-filter-select-compact:focus {
    outline: none;
    border-color: #E14035;
    box-shadow: 0 0 0 3px rgba(225, 64, 53, 0.2);
}

.dealers-filter-count-compact {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 600;
    color: #E14035;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: rgba(225, 64, 53, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(225, 64, 53, 0.2);
}

@media (max-width: 640px) {
    .dealers-filter-compact {
        flex-direction: column;
        align-items: stretch;
    }

    .dealers-filter-select-compact {
        width: 100%;
    }
}

/* Compact Map Section */
.dealers-map-section-compact {
    width: 100%;
    padding: 1.5rem 0 2rem;
    background: transparent;
}

.dealers-map-container-compact {
    width: 100%;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .dealers-map-container-compact {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .dealers-map-container-compact {
        height: 350px;
    }
}

/* Old styles - keeping for backward compatibility */
.dealers-hero-section {
    width: 100%;
    min-height: 40vh;
    padding: 4rem 1rem;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Filter Section */
.dealers-filter-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .dealers-filter-section {
        padding: 2.5rem 0;
    }
}

.dealers-filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .dealers-filter-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.dealers-filter-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 640px) {
    .dealers-filter-controls {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

.dealers-filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
}

@media (min-width: 640px) {
    .dealers-filter-label {
        font-size: 1rem;
    }
}

.dealers-filter-select {
    padding: 0.75rem 1.25rem;
    border-radius: 0.625rem;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
}

@media (min-width: 640px) {
    .dealers-filter-select {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 250px;
    }
}

.dealers-filter-select:hover {
    border-color: rgba(225, 64, 53, 0.3);
}

.dealers-filter-select:focus {
    outline: none;
    border-color: #E14035;
    box-shadow: 0 0 0 3px rgba(225, 64, 53, 0.1);
}

.dealers-filter-select option {
    background: #111111;
    color: #FFFFFF;
}

.dealers-filter-stats {
    display: flex;
    align-items: center;
}

.dealers-filter-count {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (min-width: 640px) {
    .dealers-filter-count {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Map Section */
.dealers-map-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

@media (min-width: 640px) {
    .dealers-map-section {
        padding: 5rem 0;
    }
}

.dealers-map-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-align: center;
}

@media (min-width: 640px) {
    .dealers-map-title {
        margin-bottom: 3rem;
    }
}

.dealers-map-container {
    width: 100%;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .dealers-map-container {
        height: 600px;
    }
}

@media (min-width: 1024px) {
    .dealers-map-container {
        height: 700px;
    }
}

/* Old hero section - keeping for backward compatibility */

.dealers-hero-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.dealers-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .dealers-hero-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.dealers-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

@media (min-width: 640px) {
    .dealers-hero-title {
        margin-bottom: 2rem;
    }
}

.dealers-hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #D1D5DB;
    line-height: 1.6;
    max-width: 42rem;
    margin: 0 auto;
}

/* Dealers List Section */
.dealers-list-section {
    width: 100%;
    padding: 4rem 0;
    background: transparent;
}

.dealers-list-container {
    width: 100%;
}

@media (min-width: 640px) {
    .dealers-list-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .dealers-list-section {
        padding: 6rem 0;
    }
}

.dealers-city-group {
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .dealers-city-group {
        margin-bottom: 5rem;
    }
}

.dealers-city-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .dealers-city-header {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
}

.dealers-city-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.2) 0%, rgba(199, 53, 42, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .dealers-city-icon {
        width: 4rem;
        height: 4rem;
    }
}

.dealers-city-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #E14035;
}

@media (min-width: 640px) {
    .dealers-city-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

.dealers-city-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    flex: 1;
}

.dealers-city-count {
    font-size: 0.875rem;
    color: #9CA3AF;
    background: rgba(17, 17, 17, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .dealers-city-count {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
}

.dealers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .dealers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .dealers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.dealers-dealer-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

@media (min-width: 640px) {
    .dealers-dealer-card {
        padding: 2rem;
    }
}

.dealers-dealer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.dealers-dealer-card:hover::before {
    left: 100%;
}

.dealers-dealer-card:hover {
    transform: translateY(-8px);
    border-color: rgba(225, 64, 53, 0.5);
    box-shadow: 0 20px 40px rgba(225, 64, 53, 0.2), 0 0 0 1px rgba(225, 64, 53, 0.1);
}

@media (max-width: 768px) {
    .dealers-dealer-card:hover {
        transform: translateY(-4px);
    }
}

.dealers-dealer-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #111111;
    overflow: hidden;
    position: relative;
}

.dealers-dealer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dealers-dealer-card:hover .dealers-dealer-image {
    transform: scale(1.05);
}

.dealers-dealer-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.1) 0%, rgba(199, 53, 42, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealers-dealer-placeholder-icon {
    width: 3rem;
    height: 3rem;
    color: #4b5563;
}

.dealers-dealer-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

@media (min-width: 640px) {
    .dealers-dealer-content {
        padding: 2rem;
    }
}

.dealers-dealer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dealers-dealer-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.4;
    flex: 1;
}

@media (min-width: 640px) {
    .dealers-dealer-name {
        font-size: 1.5rem;
    }
}

.dealers-dealer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.dealers-dealer-badge-icon {
    width: 0.875rem;
    height: 0.875rem;
}

.dealers-dealer-location {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dealers-dealer-location-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #E14035;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.dealers-dealer-location-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dealers-dealer-district {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
}

.dealers-dealer-city {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.dealers-dealer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.dealers-dealer-address-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4b5563;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.dealers-dealer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dealers-dealer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dealers-dealer-contact-item:hover {
    color: #E14035;
}

.dealers-dealer-contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #E14035;
    flex-shrink: 0;
}

.dealers-dealer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dealers-dealer-direction-btn,
.dealers-dealer-map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.dealers-dealer-direction-btn {
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.4);
}

.dealers-dealer-direction-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 64, 53, 0.6);
}

.dealers-dealer-map-btn {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.dealers-dealer-map-btn:hover {
    background: rgba(17, 17, 17, 0.9);
    border-color: rgba(225, 64, 53, 0.3);
    transform: translateY(-2px);
}

.dealers-dealer-action-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

/* Dealer Application CTA */
.dealers-application-section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    .dealers-application-section {
        padding: 3rem 0;
    }
}

.dealers-application-cta {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin: 0 auto;
    max-width: 42rem;
}

@media (min-width: 640px) {
    .dealers-application-cta {
        padding: 4rem 3rem;
    }
}

.dealers-application-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.2) 0%, rgba(199, 53, 42, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

@media (min-width: 640px) {
    .dealers-application-icon {
        width: 6rem;
        height: 6rem;
        margin-bottom: 2.5rem;
    }
}

.dealers-application-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #E14035;
}

@media (min-width: 640px) {
    .dealers-application-icon svg {
        width: 3rem;
        height: 3rem;
    }
}

.dealers-application-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

@media (min-width: 640px) {
    .dealers-application-title {
        margin-bottom: 1.5rem;
    }
}

.dealers-application-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #D1D5DB;
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

@media (min-width: 640px) {
    .dealers-application-text {
        margin-bottom: 2.5rem;
    }
}

.dealers-application-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.4);
}

@media (min-width: 640px) {
    .dealers-application-button {
        padding: 1.125rem 2.5rem;
        font-size: 1.125rem;
    }
}

.dealers-application-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 64, 53, 0.6);
}

/* Contact Page Styles */
.contact-hero-section {
    width: 100%;
    padding: 1.5rem 0 1rem;
    background: transparent;
    text-align: center;
}

.contact-hero-content {
    max-width: 48rem;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.4);
    color: #E85C52;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.contact-hero-description {
    font-size: clamp(0.875rem, 1.8vw, 0.9375rem);
    color: #D1D5DB;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info-form-section {
    width: 100%;
    padding: 3rem 0 4rem;
    background: transparent;
}

.contact-info-form-section .contact-info-form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .contact-info-form-section .contact-info-form-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2.5rem !important;
        align-items: stretch;
    }
}

@media (min-width: 1024px) {
    .contact-info-form-section .contact-info-form-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
    }
}

.contact-info-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        max-width: 800px;
        margin: 0 auto 2rem;
    }
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(225, 64, 53, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(225, 64, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-info-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: flex-start;
}

@media (min-width: 640px) {
    .contact-info-card {
        padding: 3rem;
    }
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E14035 0%, rgba(225, 64, 53, 0.3) 100%);
    border-radius: 2px;
}


.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(225, 64, 53, 0.15);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.25) 0%, rgba(199, 53, 42, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(225, 64, 53, 0.35);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 64, 53, 0.2);
}

.contact-info-item:hover .contact-info-icon {
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.35) 0%, rgba(199, 53, 42, 0.25) 100%);
    border-color: rgba(225, 64, 53, 0.5);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(225, 64, 53, 0.3);
}

.contact-info-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #E14035;
    filter: drop-shadow(0 2px 4px rgba(225, 64, 53, 0.3));
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-sublabel {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #D1D5DB;
    margin-top: -0.125rem;
}

.contact-info-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
    word-break: break-word;
}

.contact-info-value:hover {
    color: #E14035;
}

@media (min-width: 640px) {
    .contact-info-value {
        font-size: 1rem;
    }
}

.contact-support-card {
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.12) 0%, rgba(199, 53, 42, 0.08) 100%);
    border: 1px solid rgba(225, 64, 53, 0.25);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-support-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(225, 64, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(225, 64, 53, 0.3);
}

.contact-support-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #E14035;
}

.contact-support-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #FFFFFF;
}

.contact-support-text {
    font-size: 0.875rem;
    color: #D1D5DB;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
}

.contact-form-card {
    width: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    border-color: rgba(225, 64, 53, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(225, 64, 53, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

@media (min-width: 640px) {
    .contact-form-card {
        padding: 3rem;
    }
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-align: left;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #E14035 0%, rgba(225, 64, 53, 0.3) 100%);
    border-radius: 2px;
}

.contact-form-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-form-alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.contact-form-alert-error {
    background: rgba(225, 64, 53, 0.15);
    border: 1px solid rgba(225, 64, 53, 0.3);
}

.contact-form-alert-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact-form-alert-success .contact-form-alert-icon {
    color: #22C55E;
}

.contact-form-alert-error .contact-form-alert-icon {
    color: #E14035;
}

.contact-form-alert-text,
.contact-form-alert-list {
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 1.5;
}

.contact-form-alert-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-form-alert-list li {
    padding: 0.25rem 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #E14035;
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 0 0 4px rgba(225, 64, 53, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #6B7280;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.5;
}

.contact-form-input-error {
    border-color: #E14035 !important;
    background: rgba(225, 64, 53, 0.05) !important;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(225, 64, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 0.75rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-form-submit:hover::before {
    left: 100%;
}

.contact-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(225, 64, 53, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #E85C52 0%, #E14035 100%);
}

.contact-form-submit:active {
    transform: translateY(-1px);
}

.contact-form-submit-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-form-submit:hover .contact-form-submit-icon {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .contact-info-form-section {
        padding: 2rem 0 3rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 2rem;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-form-section .contact-info-form-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
        gap: 1.5rem !important;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .contact-info-item {
        padding: 0.875rem;
        gap: 1rem;
    }

    .contact-info-icon {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
    }
}

@media (max-width: 640px) {

    .contact-info-section,
    .contact-form-section {
        padding: 1.5rem 0;
    }

    .contact-form-submit {
        width: 100%;
    }
}

/* Google Maps Section */
.contact-map-section {
    width: 100%;
    padding: 3rem 0 4rem;
    background: transparent;
}

.contact-map-wrapper {
    width: 100%;
    max-width: 100%;
}

.contact-map-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.contact-map-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #E14035 0%, rgba(225, 64, 53, 0.3) 100%);
    border-radius: 2px;
}

.contact-map-description {
    font-size: 1rem;
    color: #D1D5DB;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map-container {
    width: 100%;
    height: 500px;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 17, 17, 0.5);
    position: relative;
}

.contact-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 64, 53, 0.05) 0%, rgba(199, 53, 42, 0.02) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 1.25rem;
}

.contact-map-container>* {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .contact-map-section {
        padding: 2rem 0 3rem;
    }

    .contact-map-container {
        height: 400px;
        border-radius: 1rem;
    }

    .contact-map-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .contact-map-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .contact-map-container {
        height: 350px;
    }
}

/* Login Page Styles */
.login-hero-section {
    width: 100%;
    padding: 1.5rem 0 1rem;
    background: transparent;
    text-align: center;
}

.login-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(225, 64, 53, 0.1);
    border: 1px solid rgba(225, 64, 53, 0.2);
    border-radius: 2rem;
    color: #E14035;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.login-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.login-hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #d1d5db;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

.login-card-section {
    width: 100%;
    padding: 2rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    max-width: 28rem;
    width: 100%;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.login-error-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(225, 64, 53, 0.1);
    border: 1px solid rgba(225, 64, 53, 0.3);
    border-radius: 0.75rem;
    color: #fca5a5;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.login-error-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #E14035;
}

.login-google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: #FFFFFF;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.login-google-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(225, 64, 53, 0.1), transparent);
    transition: left 0.5s;
}

.login-google-button:hover::before {
    left: 100%;
}

.login-google-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(225, 64, 53, 0.3);
    border-color: rgba(225, 64, 53, 0.3);
}

.login-google-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.login-google-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.login-google-text {
    flex: 1;
    text-align: center;
}

.login-google-arrow {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.login-google-button:hover .login-google-arrow {
    transform: translateX(4px);
}

.login-info-box {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.login-info-icon-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    color: #E14035;
}

.login-info-icon {
    width: 1.125rem;
    height: 1.125rem;
}

.login-info-text {
    flex: 1;
}

.login-info-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.login-info-description {
    font-size: 0.8125rem;
    color: #9ca3af;
    line-height: 1.5;
}

.login-footer-link {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-back-link:hover {
    color: #E14035;
}

.login-back-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.login-back-link:hover .login-back-icon {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .login-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .login-hero-section {
        padding: 1rem 0;
    }

    .login-card-section {
        padding: 1.5rem 0 3rem;
    }
}

/* Admin Panel Styles */
.admin-body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
    color: #FFFFFF;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure admin pages never have page loader or transitions */
.admin-body .page-loader,
body[data-admin="true"] #pageLoader,
body[data-admin="true"] .page-loader {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

.admin-main,
.admin-content,
.admin-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

/* Force admin content to be visible immediately */
body[data-admin="true"] .admin-content,
body[data-admin="true"] .admin-main,
body[data-admin="true"] .admin-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

/* Prevent any fade-in animations on admin pages */
body[data-admin="true"] * {
    animation: none !important;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: 16rem;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.admin-sidebar-header {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.admin-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.admin-logo-link:hover {
    opacity: 0.8;
}

.admin-logo-img {
    height: auto;
    max-width: 140px;
    width: auto;
    display: block;
    object-fit: contain;
}

.admin-logo {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.admin-logo-gradient {
    background: linear-gradient(135deg, #E14035 0%, #E85C52 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-logo-white {
    color: #FFFFFF;
}

.admin-logo-accent {
    color: #E14035;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 1rem;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
    font-weight: 500;
}

.admin-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    transform: translateX(4px);
}

.admin-nav-item-active {
    background: rgba(225, 64, 53, 0.15);
    color: #E14035;
    border-left: 3px solid #E14035;
}

.admin-nav-item-active:hover {
    background: rgba(225, 64, 53, 0.2);
    color: #E14035;
}

.admin-nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.admin-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

/* Main Content */
.admin-main {
    flex: 1;
    margin-left: 16rem;
    min-height: 100vh;
    background: transparent;
}

.admin-content {
    padding: 2rem;
    max-width: 100%;
}

/* Admin Alerts */
.admin-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    animation: fadeInUp 0.3s ease;
}

.admin-alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.admin-alert-error {
    background: rgba(225, 64, 53, 0.15);
    border: 1px solid rgba(225, 64, 53, 0.3);
    color: #fca5a5;
}

.admin-alert-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Admin Page Header */
.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-page-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
}

.admin-page-description {
    font-size: 0.9375rem;
    color: #9ca3af;
    margin: 0.5rem 0 0 0;
    max-width: 48rem;
}

/* Admin Buttons */
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.admin-btn-primary {
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.3);
}

.admin-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 64, 53, 0.5);
}

.admin-btn-secondary {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-btn-secondary:hover {
    background: rgba(17, 17, 17, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.admin-btn-danger {
    background: rgba(225, 64, 53, 0.1);
    color: #E14035;
    border: 1px solid rgba(225, 64, 53, 0.3);
}

.admin-btn-danger:hover {
    background: rgba(225, 64, 53, 0.2);
    border-color: rgba(225, 64, 53, 0.5);
}

.admin-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.admin-btn-text {
    display: inline;
}

/* Admin Cards */
.admin-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 2rem;
}

@media (max-width: 640px) {
    .admin-card {
        padding: 1.5rem;
    }
}

/* Admin Tabs */
.admin-tabs-container {
    width: 100%;
}

.admin-tabs-nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .admin-tabs-nav {
        gap: 0.25rem;
        margin-bottom: 1.5rem;
    }
    
    .admin-tab-btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .admin-tab-icon {
        width: 1rem;
        height: 1rem;
    }
    
    .admin-profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .admin-profile-details {
        grid-template-columns: 1fr;
    }
    
    .admin-page-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .admin-page-title {
        font-size: 1.5rem !important;
    }
    
    .admin-page-description {
        font-size: 0.875rem !important;
    }
}

.admin-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #9ca3af;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: -1px;
}

.admin-tab-btn:hover {
    color: #FFFFFF;
}

.admin-tab-btn-active {
    color: #E14035;
    border-bottom-color: #E14035;
}

.admin-tab-icon {
    width: 1.125rem;
    height: 1.125rem;
}

.admin-tabs-content {
    position: relative;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content-active {
    display: block;
}

/* Admin Profile Styles */
.admin-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(225, 64, 53, 0.3);
}

.admin-profile-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(225, 64, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #E14035;
    border: 2px solid rgba(225, 64, 53, 0.3);
}

.admin-profile-info {
    flex: 1;
}

.admin-profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.25rem 0;
}

.admin-profile-email {
    color: #9CA3AF;
    font-size: 0.9375rem;
    margin: 0;
}

.admin-profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.admin-profile-detail-item {
    display: flex;
    flex-direction: column;
}

.admin-profile-label {
    display: block;
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.admin-profile-value {
    color: #FFFFFF;
    font-size: 1rem;
    margin: 0;
}

.admin-profile-role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(225, 64, 53, 0.15);
    color: #E14035;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(225, 64, 53, 0.3);
}

.admin-empty-state {
    text-align: center;
    padding: 3rem 0;
}

.admin-empty-icon {
    width: 4rem;
    height: 4rem;
    color: #6B7280;
    margin: 0 auto 1rem;
    opacity: 0.5;
}

.admin-empty-text {
    color: #9CA3AF;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 640px) {
    .admin-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .admin-profile-details {
        grid-template-columns: 1fr;
    }
}

/* Admin Tables */
.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: rgba(17, 17, 17, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.admin-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.admin-table td {
    padding: 1rem 1.5rem;
    color: #d1d5db;
    font-size: 0.9375rem;
}

.admin-table-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-table-status-active {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.admin-table-status-inactive {
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.admin-table-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-table-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.admin-table-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.admin-table-link-danger {
    color: #f87171;
}

.admin-table-link-danger:hover {
    color: #fca5a5;
}

.admin-table-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-table-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.admin-table-avatar-placeholder {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #E14035 0%, #E85C52 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.admin-table-role {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.admin-table-role-admin {
    background: rgba(225, 64, 53, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(225, 64, 53, 0.3);
}

.admin-table-role-editor {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.admin-table-role-user {
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

/* Admin Table Text Utilities */
.admin-table-text-white {
    color: #FFFFFF;
}

.admin-table-text-gray-300 {
    color: #d1d5db;
}

.admin-table-text-gray-400 {
    color: #9ca3af;
}

.admin-table-text-gray-500 {
    color: #6b7280;
}

.admin-table-text-green-400 {
    color: #4ade80;
}

.admin-table-text-red-400 {
    color: #f87171;
}

.admin-table-font-medium {
    font-weight: 500;
}

.admin-table-font-semibold {
    font-weight: 600;
}

.admin-table-text-sm {
    font-size: 0.875rem;
}

.admin-table-text-xs {
    font-size: 0.75rem;
}

.admin-table-line-through {
    text-decoration: line-through;
}

.admin-table-space-y-1 > * + * {
    margin-top: 0.25rem;
}

.admin-table-mt-1 {
    margin-top: 0.25rem;
}

.admin-table-ml-1 {
    margin-left: 0.25rem;
}

.admin-table-ml-2 {
    margin-left: 0.5rem;
}

.admin-table-code {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: #9ca3af;
}

/* Admin Pagination */
.admin-pagination-wrapper {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 2.5rem;
    height: 2.5rem;
}

.admin-pagination-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.admin-pagination-link-active {
    background: rgba(225, 64, 53, 0.2);
    border-color: rgba(225, 64, 53, 0.4);
    color: #E14035;
    font-weight: 600;
    cursor: default;
}

.admin-pagination-link-active:hover {
    background: rgba(225, 64, 53, 0.2);
    border-color: rgba(225, 64, 53, 0.4);
    color: #E14035;
    transform: none;
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Admin Forms */
.admin-form {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

/* Admin Feature Items */
.admin-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.admin-feature-item .admin-form-input {
    flex: 1;
    margin-bottom: 0;
}

.admin-feature-remove-btn {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    background: rgba(225, 64, 53, 0.2);
    border: 1px solid rgba(225, 64, 53, 0.3);
    border-radius: 0.5rem;
    color: #E14035;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.admin-feature-remove-btn:hover {
    background: rgba(225, 64, 53, 0.3);
    border-color: rgba(225, 64, 53, 0.5);
    transform: scale(1.05);
}

.admin-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.admin-form-label .required {
    color: #E14035;
}

.admin-form-input,
.admin-form-textarea,
.admin-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(17, 17, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #FFFFFF;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.admin-form-input:focus,
.admin-form-textarea:focus,
.admin-form-select:focus {
    outline: none;
    border-color: #E14035;
    box-shadow: 0 0 0 3px rgba(225, 64, 53, 0.1);
    background: rgba(17, 17, 17, 0.8);
}

.admin-form-textarea {
    min-height: 8rem;
    resize: vertical;
    font-family: inherit;
}

.admin-form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #E14035;
    cursor: pointer;
}

.admin-form-error {
    display: block;
    color: #f87171;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.admin-form-input-error {
    border-color: #E14035 !important;
    background: rgba(225, 64, 53, 0.1) !important;
}

.admin-form-input-error:focus {
    border-color: #E14035 !important;
    box-shadow: 0 0 0 3px rgba(225, 64, 53, 0.2) !important;
}

.admin-form-help {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.admin-form-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

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

/* Admin Image Preview */
.admin-image-upload-wrapper {
    position: relative;
}

.admin-image-preview-container {
    position: relative;
    display: none; /* Varsayılan olarak gizli, görsel seçildiğinde gösterilecek */
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 17, 17, 0.5);
}

.admin-image-preview-container.show {
    display: inline-block !important;
}

.admin-image-preview {
    width: 100%;
    max-width: 20rem;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0;
    border: none;
    display: block;
}

.admin-image-remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: rgba(225, 64, 53, 0.9);
    border: 1px solid rgba(225, 64, 53, 1);
    border-radius: 0.375rem;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.admin-image-remove-btn:hover {
    background: rgba(225, 64, 53, 1);
    transform: scale(1.1);
}

.admin-image-remove-btn svg {
    width: 1rem;
    height: 1rem;
}

/* Admin Empty State */
.admin-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #9ca3af;
}

.admin-empty-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: #4b5563;
}

.admin-empty-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 14rem;
    }

    .admin-main {
        margin-left: 14rem;
    }
}

/* Mobile Menu Toggle Button */
.admin-mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1001;
    width: 3rem;
    height: 3rem;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #FFFFFF;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.admin-mobile-menu-toggle:hover {
    background: rgba(225, 64, 53, 0.2);
    border-color: rgba(225, 64, 53, 0.3);
    color: #E14035;
}

/* Mobile Menu Overlay */
.admin-mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.admin-mobile-menu-overlay-active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .admin-mobile-menu-toggle {
        display: flex;
    }
    
    .admin-sidebar {
        width: 280px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .admin-sidebar-open {
        transform: translateX(0);
    }
    
    .admin-mobile-menu-overlay {
        display: block;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-content {
        padding: 1rem;
        padding-top: 5rem;
    }

    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-table-wrapper {
        overflow-x: scroll;
    }

    .admin-form-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar-header {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .admin-nav {
        padding: 0 0.75rem;
    }
    
    .admin-nav-item {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Profile Page Styles */
.profile-hero-section {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    text-align: center;
}

.profile-avatar-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.profile-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(225, 64, 53, 0.3);
    box-shadow: 0 10px 40px rgba(225, 64, 53, 0.2);
}

.profile-avatar-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 4px solid rgba(225, 64, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(225, 64, 53, 0.2);
}

.profile-avatar-initial {
    font-size: 3rem;
    font-weight: 800;
    color: #E14035;
}

.profile-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.profile-hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #9ca3af;
}

.profile-content-section {
    width: 100%;
    padding: 2rem 0 4rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

.profile-sidebar {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.profile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.profile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9375rem;
    font-weight: 500;
}

.profile-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    transform: translateX(4px);
}

.profile-nav-item-active {
    background: rgba(225, 64, 53, 0.15);
    color: #E14035;
    border-left: 3px solid #E14035;
}

.profile-nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.profile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.profile-nav-section-title {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-logout-form {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(225, 64, 53, 0.1);
    border: 1px solid rgba(225, 64, 53, 0.3);
    border-radius: 0.5rem;
    color: #E14035;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-logout-btn:hover {
    background: rgba(225, 64, 53, 0.2);
    border-color: rgba(225, 64, 53, 0.5);
    transform: translateY(-2px);
}

.profile-logout-icon {
    width: 1.125rem;
    height: 1.125rem;
}

.profile-main {
    min-height: 400px;
}

.profile-tab-content {
    animation: fadeInUp 0.4s ease;
}

.profile-tab-content-hidden {
    display: none;
}

.profile-card {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.profile-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.profile-info-grid {
    display: grid;
    gap: 1.5rem;
}

.profile-info-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.profile-info-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.profile-info-value {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
}

.profile-role-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: rgba(225, 64, 53, 0.15);
    border: 1px solid rgba(225, 64, 53, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #E14035;
}

.profile-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.profile-empty-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: #4b5563;
}

.profile-empty-text {
    font-size: 1rem;
    color: #9ca3af;
}

/* Admin Gallery Preview */
.admin-gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-gallery-item-wrapper {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-gallery-item-wrapper:hover {
    border-color: rgba(225, 64, 53, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 64, 53, 0.2);
}

.admin-gallery-item {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.admin-gallery-remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    background: rgba(225, 64, 53, 0.9);
    border: none;
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.admin-gallery-remove-btn:hover {
    background: rgba(225, 64, 53, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(225, 64, 53, 0.4);
}

@media (max-width: 1024px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .profile-hero-section {
        padding: 1.5rem 0;
    }

    .profile-content-section {
        padding: 1rem 0 2rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .admin-gallery-preview {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 0.75rem;
    }

    .admin-gallery-item {
        height: 80px;
    }

    .admin-gallery-remove-btn {
        width: 1.5rem;
        height: 1.5rem;
        top: 0.25rem;
        right: 0.25rem;
    }
}

/* Empty State */
.dealers-empty {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

.dealers-empty-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 32rem;
}

.dealers-empty-icon {
    width: 4rem;
    height: 4rem;
    color: #4b5563;
    margin: 0 auto 1.5rem;
}

.dealers-empty-text {
    font-size: 1rem;
    color: #9CA3AF;
    margin-bottom: 2rem;
}

.dealers-empty-button {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #E14035 0%, #C7352A 100%);
    color: #FFFFFF;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(225, 64, 53, 0.4);
}

@media (min-width: 640px) {
    .dealers-empty-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.dealers-empty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 64, 53, 0.6);
}

/* Tablet Optimizations */
@media (min-width: 641px) and (max-width: 1024px) {
    .container-max {
        padding: 0 1.5rem;
    }
}

/* Admin Message Modal */
.admin-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.admin-modal-overlay.admin-modal-show {
    opacity: 1;
    visibility: visible;
}

.admin-modal {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    max-width: 48rem;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.admin-modal-overlay.admin-modal-show .admin-modal {
    transform: scale(1) translateY(0);
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.admin-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.admin-modal-subtitle {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin: 0;
}

.admin-modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: #9CA3AF;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

.admin-modal-close:hover {
    background: rgba(225, 64, 53, 0.1);
    border-color: rgba(225, 64, 53, 0.3);
    color: #E14035;
    transform: rotate(90deg);
}

.admin-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.admin-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Message Info Grid */
.admin-message-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-message-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-message-info-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9CA3AF;
}

.admin-message-info-value {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 500;
    word-break: break-word;
}

.admin-message-link {
    color: #60A5FA;
    text-decoration: none;
    transition: color 0.2s ease;
}

.admin-message-link:hover {
    color: #93C5FD;
    text-decoration: underline;
}

/* Message Content */
.admin-message-content-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-message-content-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9CA3AF;
    margin-bottom: 1rem;
}

.admin-message-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #E5E7EB;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Message Meta */
.admin-message-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-message-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-message-meta-label {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.admin-message-meta-value {
    font-size: 0.875rem;
    color: #D1D5DB;
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

/* Responsive Modal */
@media (max-width: 640px) {
    .admin-modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 0.75rem;
    }

    .admin-modal-header {
        padding: 1.25rem 1.5rem;
    }

    .admin-modal-title {
        font-size: 1.25rem;
    }

    .admin-modal-body {
        padding: 1.5rem;
    }

    .admin-modal-footer {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
    }

    .admin-modal-footer .admin-btn {
        width: 100%;
        justify-content: center;
    }

    .admin-message-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}