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


:root {
    --primary-color: #025cb5;
    --primary-dark: #014a94;
    --primary-light: #1a7dd4;
    --secondary-color: #565655;
    --accent-color: #00d4ff;
    --accent-color-2: #00a8e8;
    --accent-gradient: linear-gradient(135deg, #025cb5 0%, #00d4ff 100%);
    --accent-gradient-2: linear-gradient(135deg, #014a94 0%, #025cb5 50%, #1a7dd4 100%);
    --text-color: #0f172a;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 112px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.75;
    font-size: 17px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

main {
    position: relative;
    z-index: 1;
}

/* Ensure first section in main doesn't go under header (except hero slider which has its own margin) */
main>section:first-child:not(.hero-slider-section):not(.page-header) {
    margin-top: var(--header-height);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HEADER - Modern & Clean
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.top-bar {
    background: linear-gradient(135deg, #025cb5 0%, #014a94 100%);
    padding: 12px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-info {
    display: flex;
    gap: 32px;
    align-items: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 4px 0;
    position: relative;
    font-size: 13px;
}

.contact-info a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: width 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
    transform: translateY(-1px);
}

.contact-info a:hover::after {
    width: 100%;
}

.contact-info i {
    font-size: 13px;
    opacity: 0.9;
    width: 14px;
    text-align: center;
}

.favorites-link-topbar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 13px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.favorites-link-topbar:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.3);
}

.favorites-link-topbar i {
    font-size: 14px;
    color: #ff6b6b;
}

.favorites-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #ff6b6b;
    color: var(--white);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.favorites-text {
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Language Selector - Wolkstek Style */
.language-selector-wrapper {
    display: inline-block;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.lang-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    border-radius: 8px;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    width: 40px;
    height: 40px;
}

.lang-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    text-decoration: none;
}

.lang-item.active {
    border: 1px solid white !important;
}

.lang-flag {
    display: inline-flex;
    flex-shrink: 0;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.lang-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 92, 181, 0.85);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    z-index: 10;
}

.lang-loading i {
    color: white;
    font-size: 16px;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.lang-code {
    font-size: 11px;
    letter-spacing: 0.1em;
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Google Translate Widget Styling - Hidden but functional */
#google_translate_element {
    display: none !important;
}

/* Hide Google Translate banner/bar completely */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate,
.goog-te-banner,
body>.skiptranslate,
iframe[name="google_esf"],
iframe[name^="google_esf"],
.goog-te-banner-frame.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    max-height: 0 !important;
    overflow: hidden !important;
}

/* Remove top padding that Google Translate adds to body */
body {
    top: 0 !important;
    padding-top: 0 !important;
}

body.skiptranslate {
    top: 0 !important;
    padding-top: 0 !important;
}

/* Hide Google Translate select dropdown styling */
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-menu-value,
.goog-te-menu-value span {
    display: none !important;
}

/* Prevent translation of brand names and specific elements */
.notranslate,
.notranslate *,
[translate="no"],
[translate="no"] * {
    translate: no !important;
    -webkit-translate: no !important;
}

/* Footer'ı tamamen çeviriden koru */
.footer,
.footer *,
.footer-section,
.footer-section *,
.footer-legal-links,
.footer-legal-links *,
.footer-bottom,
.footer-bottom * {
    translate: no !important;
    -webkit-translate: no !important;
}

h3.notranslate,
.brand-card-modern,
.brand-card-modern *,
.brand-card-page-modern,
.brand-card-page-modern *,
.brand-logo,
.brand-logo *,
.brand-logo-fallback,
.brand-logo-page,
.brand-card-modern h3,
.brand-card-modern p,
.brand-card-page-modern h3,
.section-label.notranslate,
.section-title-modern.notranslate,
.brands-header-modern h3.notranslate,
.brands-header-modern p.notranslate,
.feature-content-modern h4.notranslate,
.feature-content-modern p.notranslate,
.stat-label-modern.notranslate,
.about-intro-text.notranslate {
    translate: no !important;
    -webkit-translate: no !important;
}

/* Google Translate için ek koruma - marka elementleri */
.brand-card-modern,
.brand-card-page-modern,
.brand-logo,
.brand-logo-fallback,
.brand-logo-page {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.social-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    transition: var(--transition-fast);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    border-bottom: none;
    outline: none;
}

.social-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border-bottom: none;
}

.social-links a:focus {
    text-decoration: none;
    border-bottom: none;
    outline: none;
}

.social-links a:active {
    text-decoration: none;
    border-bottom: none;
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 9999;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.logo img {
    height: 85px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.logo:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(2, 92, 181, 0.2));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    position: relative;
    letter-spacing: 0.03em;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    display: block;
    white-space: nowrap;
}

.nav-menu>li>a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(2, 92, 181, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--primary-color);
}

.nav-menu>li>a:hover::before,
.nav-menu>li>a.active::before {
    opacity: 1;
}

.nav-menu>li>a:hover::after,
.nav-menu>li>a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    list-style: none;
    min-width: 240px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 10000;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition-fast);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 4px;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(2, 92, 181, 0.08) 0%, rgba(0, 212, 255, 0.05) 100%);
    color: var(--primary-color);
    transform: translateX(4px);
    padding-left: 20px;
}

.dropdown-menu a:hover::before {
    height: 60%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Header height calculation */
.header {
    --header-height: auto;
}

.top-bar {
    --top-bar-height: 40px;
}

.navbar {
    --navbar-height: 72px;
}

/* ============================================
   HERO SLIDER - Ultra Modern
   ============================================ */

.hero-slider-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: var(--header-height);
    padding-top: 0;
    z-index: 1;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    padding: 0;
}

.hero-slide .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-video-background,
.hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-background video,
.hero-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay,
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge span {
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.05;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.04em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 48px;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(40px, -40px) rotate(120deg);
    }

    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* Swiper Navigation */
.hero-nav-next,
.hero-nav-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    width: 56px !important;
    height: 56px !important;
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10 !important;
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1);
}

.hero-nav-next::after,
.hero-nav-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Swiper Pagination */
.hero-pagination {
    bottom: 40px !important;
    z-index: 10 !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 6px;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 32px;
    border-radius: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mouse {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 28px;
        opacity: 0;
    }
}

/* ============================================
   SECTIONS - Modern Layout
   ============================================ */

section {
    padding: 120px 0;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(2, 92, 181, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 92, 181, 0.15);
}

.section-title-modern {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION - Clean & Modern
   ============================================ */

.about-section-modern {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(2, 92, 181, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.about-intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-top: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.about-features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.feature-card-modern {
    background: var(--white);
    padding: 48px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(2, 92, 181, 0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.feature-icon-wrapper-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg-modern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    transform: rotate(-5deg);
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(2, 92, 181, 0.25);
}

.feature-icon-wrapper-modern i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.feature-card-modern:hover .feature-icon-bg-modern {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(2, 92, 181, 0.35);
}

.feature-content-modern h4 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.feature-content-modern p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

.brands-section-modern {
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.brands-header-modern {
    text-align: center;
    margin-bottom: 64px;
}

.brands-header-modern h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.brands-header-modern p {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 400;
}

.brands-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.brand-card-modern {
    background: var(--white);
    padding: 56px 48px;
    border-radius: var(--radius-2xl);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    border: 3px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.brand-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.brand-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(2, 92, 181, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.brand-card-modern:hover::after {
    opacity: 1;
}

.brand-card-modern:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(2, 92, 181, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

.brand-logo-wrapper {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.brand-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 900;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(2, 92, 181, 0.3);
    position: relative;
    overflow: hidden;
}

/* Logo varsa arka planı beyaz yap */
.brand-logo-with-image {
    background: #ffffff !important;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.brand-logo img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
    filter: none;
}

.brand-logo-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.brand-card-modern:hover .brand-logo {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 32px rgba(2, 92, 181, 0.4);
}

.brand-card-modern:hover .brand-logo-with-image {
    background: #ffffff !important;
}

.brand-card-modern:hover .brand-logo::before {
    opacity: 1;
}

.brand-card-modern h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 900;
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    z-index: 2;
}

.brand-card-modern p {
    display: none;
}

.brand-arrow {
    color: var(--primary-color);
    font-size: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(2, 92, 181, 0.08);
}

.brand-card-modern:hover .brand-arrow {
    transform: translateX(8px);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(2, 92, 181, 0.3);
}

/* ============================================
   STATS SECTION - Modern Cards
   ============================================ */

.stats-section-modern {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon-modern {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number-modern {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label-modern {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ============================================
   PRODUCTS SECTION - Modern Grid
   ============================================ */

.products-section-modern {
    padding: 140px 0;
    background: var(--light-bg);
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    text-align: left;
}

.section-header-modern>div {
    flex: 1;
}

.section-header-modern .section-label {
    margin-bottom: 12px;
}

.btn-outline-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-outline-modern:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.product-card-modern {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--border-color);
}

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

.badge-modern {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-md);
}

.product-image-modern {
    height: 280px;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}

.product-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 92, 181, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    padding: 14px 28px;
    background: white;
    color: var(--primary-color);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 14px;
}

.btn-quick-view:hover {
    transform: scale(1.05);
}

.product-info-modern {
    padding: 24px;
}

.product-title-modern {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-price-modern {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.current-price-modern {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    display: inline-block;
}

.old-price-modern {
    font-size: 1.125rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.8;
    display: inline-block;
}

.btn-product-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    font-size: 14px;
}

.btn-product-modern:hover {
    background: var(--primary-dark);
    transform: translateX(4px);
}

/* ============================================
   SERVICES SECTION - Modern Cards
   ============================================ */

.services-section-modern {
    padding: 140px 0;
    background: var(--white);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card-modern {
    background: var(--white);
    padding: 56px 48px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(2, 92, 181, 0.15);
    border-color: var(--primary-color);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    font-size: 2.5rem;
    transition: var(--transition);
    border-radius: 0;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1);
}

.service-title-modern {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-description-modern {
    color: var(--text-color);
    line-height: 1.75;
    margin-bottom: 32px;
    font-size: 1rem;
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 400;
}

.service-features i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.service-features span {
    color: var(--text-color);
}

.btn-service-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 15px;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.btn-service-modern:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 92, 181, 0.3);
}

/* ============================================
   CTA SECTION - Modern Design
   ============================================ */

.cta-section-modern {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.cta-content-modern {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon-modern {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.cta-content-modern h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-content-modern p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.cta-buttons-modern {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: var(--shadow-lg);
}

.btn-cta-whatsapp:hover {
    background: #1da851;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

/* ============================================
   FOOTER - Ultra Modern 2026 Design
   ============================================ */

.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr 0.9fr 0.9fr 1fr;
    gap: 30px;
    padding: 80px 0 60px;
    position: relative;
}

.footer-section:first-child {
    max-width: 350px;
}

.footer-section h4 {
    font-size: 0.8rem;
    margin-bottom: 16px;
}

.footer-section ul {
    gap: 8px;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section ul li a {
    font-size: 0.85rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
    transition: var(--transition);
}

.footer-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

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

.footer-logo:hover img {
    filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section ul li {
    margin: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -12px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: white;
    padding-left: 12px;
}

.footer-section a:hover::before {
    width: 8px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.contact-list li:hover {
    color: white;
    transform: translateX(4px);
}

.contact-list a {
    text-transform: none !important;
}

.contact-list i {
    margin-top: 2px;
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.contact-list a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
    padding: 0;
}

.footer-social a::before {
    display: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    padding-left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-legal-links {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-fast);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    display: inline-block;
}

.footer-legal-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom .footer-social {
    margin-top: 0;
}

.developer-credit-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-credit-footer a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.developer-credit-footer:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}

.credit-text-footer {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-family: 'Poppins', sans-serif;
}

.developer-logo-footer {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.developer-credit-footer:hover .developer-logo-footer {
    opacity: 1;
    transform: scale(1.05);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-fade-up {
    animation: fadeUp 0.8s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease-out 0.4s both;
}

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

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

/* ============================================
   PAGE HEADER & BREADCRUMB
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.brand-header-info {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.brand-header-text {
    flex: 0 1 auto;
    min-width: 0;
    text-align: left;
}

.brand-logo-header {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.brand-logo-header:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    transition: transform 0.3s ease;
}

.brand-logo-header:hover .brand-logo-image {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .brand-header-info {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .brand-header-text {
        width: 100%;
        text-align: center;
    }

    .brand-logo-header {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* ============================================
   NEWS SECTION
   ============================================ */

.news-section {
    padding: 100px 0;
    background: var(--white);
}

/* News Page Styles */
.news-page {
    padding: 80px 0;
    background: var(--light-bg);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.news-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    flex-shrink: 0;
    width: 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-date {
    background: var(--primary-color);
    color: white;
    width: 100px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.news-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.news-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 1px;
    font-weight: 600;
}

.news-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h2 {
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4;
}

.news-content h2 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.news-content h2 a:hover {
    color: var(--primary-dark);
}

.news-content h3 {
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.news-content .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.news-content .btn-link:hover {
    gap: 12px;
}

/* News Detail Page Styles */
.news-detail {
    padding: 80px 0;
    background: var(--light-bg);
}

.news-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.news-meta span {
    color: var(--text-light);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-meta i {
    color: var(--primary-color);
    font-size: 1rem;
}

.news-detail .news-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.news-detail .news-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-content-full {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.news-content-full h1,
.news-content-full h2,
.news-content-full h3,
.news-content-full h4,
.news-content-full h5,
.news-content-full h6 {
    color: var(--text-color);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.news-content-full h2 {
    font-size: 2rem;
}

.news-content-full h3 {
    font-size: 1.5rem;
}

.news-content-full p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.news-content-full ul,
.news-content-full ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.news-content-full li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.news-content-full a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.news-content-full a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.news-content-full img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.news-content-full blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 24px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-light);
}

.news-content-full code {
    background: var(--light-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.news-content-full pre {
    background: var(--light-bg);
    padding: 16px;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin: 24px 0;
}

.news-content-full pre code {
    background: none;
    padding: 0;
}

@media (max-width: 768px) {
    .news-article {
        padding: 24px;
    }

    .news-content-full {
        font-size: 1rem;
    }

    .news-content-full h2 {
        font-size: 1.5rem;
    }

    .news-content-full h3 {
        font-size: 1.25rem;
    }

    .news-detail .news-image {
        margin-bottom: 24px;
    }
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-page {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal - Modern E-ticaret Tasarımı */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1000000 !important;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000001 !important;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000001 !important;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    user-select: none;
    transform: translateY(-50%);
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(1.05);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    text-align: center;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    z-index: 1000001 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 98%;
        max-height: 90vh;
        padding: 5px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 48px;
        height: 48px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-caption {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   VİDEO MODAL STİLLERİ
   ============================================ */

.video-modal {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000001 !important;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-modal-close:hover,
.video-modal-close:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .video-modal-container {
        width: 95%;
        padding-bottom: 56.25%;
    }

    .video-modal-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 48px;
        height: 48px;
    }
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */

.product-detail {
    padding: 80px 0;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details h1 {
    margin-bottom: 24px;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.product-price {
    margin-bottom: 32px;
}

.product-description {
    margin-bottom: 32px;
}

.product-description h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.product-description p {
    color: var(--text-light);
    line-height: 1.8;
}

.product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   PRODUCT DETAIL - Modern Design
   ============================================ */

.product-detail-modern {
    padding: 120px 0;
    background: var(--light-bg);
}

.product-detail-layout-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.product-images-modern {
    position: relative;
}

.discount-badge-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.discount-badge-modern i {
    font-size: 16px;
}

.product-image-gallery-wrapper {
    position: relative;
}

.main-image-container-modern {
    position: relative;
    margin-bottom: 20px;
}

.main-image-modern {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    background: var(--white);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.main-image-modern:hover {
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.image-wrapper-modern {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 1;
}

.main-image-modern:hover img {
    transform: scale(1.08);
}

.image-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
}

.main-image-modern:hover .image-overlay-modern {
    opacity: 1;
}

.image-zoom-hint-modern {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.main-image-modern:hover .image-zoom-hint-modern {
    transform: translateY(0);
}

.image-zoom-hint-modern i {
    font-size: 18px;
}

.image-counter-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.image-counter-modern i {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-navigation-modern {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.gallery-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all !important;
    box-shadow: var(--shadow-md);
    color: var(--text-color);
    font-size: 18px;
    position: relative;
    z-index: 10;
    z-index: 11;
}

.gallery-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.product-thumbnails-modern {
    margin-top: 20px;
    overflow: hidden;
}

.thumbnails-scroll-wrapper {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.thumbnails-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.thumbnails-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.thumbnails-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.thumbnails-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.thumbnail-item-modern {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
    position: relative;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.thumbnail-item-modern:hover {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.thumbnail-item-modern.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.thumbnail-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.thumbnail-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.thumbnail-item-modern:hover img {
    transform: scale(1.1);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 92, 181, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 20px;
}

.thumbnail-item-modern:hover .thumbnail-overlay {
    opacity: 1;
}

/* Video Thumbnail Stilleri */
.thumbnail-video {
    position: relative;
}

.thumbnail-video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.thumbnail-video-overlay i {
    color: var(--white);
    font-size: 24px;
}

.thumbnail-video:hover .thumbnail-video-overlay {
    background: rgba(220, 38, 38, 0.8);
}

.video-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(220, 38, 38, 0.95);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.thumbnail-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

/* Video Wrapper Stilleri */
.video-wrapper-modern {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.video-container-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Ana görsel container'da video gösterildiğinde */
.main-image-modern[data-media-type="video"] {
    cursor: default;
}

.main-image-modern[data-media-type="video"]:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--border-color);
}

.main-image-modern[data-media-type="video"]:hover .image-overlay-modern {
    opacity: 0;
}

/* Eski thumbnail-item class'ı için geriye dönük uyumluluk */
.thumbnail-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}

.thumbnail-item:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    opacity: 1;
    box-shadow: var(--shadow-md);
}

.thumbnail-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.product-details-modern {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.product-title-detail-modern {
    margin-bottom: 32px;
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.product-price-modern-detail {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.price-wrapper-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

/* Özel Teklif Butonu */
.product-quote-button-wrapper {
    margin-bottom: 32px;
}

.btn-quote-request-modern {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.btn-quote-request-modern::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;
}

.btn-quote-request-modern:hover::before {
    left: 100%;
}

.btn-quote-request-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-quote-request-modern:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-quote-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.btn-quote-icon i {
    font-size: 24px;
    color: var(--white);
}

.btn-quote-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.btn-quote-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.btn-quote-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.3;
}

.btn-quote-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.btn-quote-request-modern:hover .btn-quote-arrow {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

/* Bilgilendirme Kartı - Test Ürünleri İçin */
.product-info-card-modern {
    width: 100%;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 24px;
    align-items: center;
    transition: var(--transition);
}

.product-info-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: 10;
}

.product-info-card-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.info-card-icon-wrapper {
    flex: 0 0 30%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(2, 92, 181, 0.3);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.info-card-icon i {
    font-size: 42px;
    color: var(--white);
}

.info-card-icon-secondary {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    border: 2px solid var(--white);
    z-index: 3;
}

.info-card-icon-secondary i {
    font-size: 16px;
    color: var(--white);
}

.info-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.info-card-title i {
    color: var(--primary-color);
    font-size: 20px;
}

.info-card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.info-card-steps {
    display: flex;
    align-items: center;
    gap: 12px;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
    overflow-x: visible;
}

.info-card-steps::-webkit-scrollbar {
    display: none;
}

.info-step {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition-fast);
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.info-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.step-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    flex: 0 1 auto;
    white-space: nowrap;
}

.step-arrow {
    color: var(--primary-color);
    font-size: 12px;
    flex-shrink: 0;
}

.info-step:last-child .step-arrow {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .product-info-card-modern {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    .info-card-icon-wrapper {
        align-self: center;
    }

    .info-card-steps {
        flex-direction: column;
    }

    .info-step {
        width: 100%;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .info-step:last-child .step-arrow {
        display: none;
    }
}

.btn-quote-arrow i {
    font-size: 16px;
    color: var(--white);
}

.price-wrapper-modern {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.current-price-modern-detail {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.old-price-modern-detail {
    font-size: 1.5rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
    opacity: 0.8;
    display: block;
    position: relative;
}

.old-price-modern-detail::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #cbd5e1;
    transform: translateY(-50%);
}

.discount-info-modern {
    margin-top: 12px;
}

.discount-text-modern {
    display: inline-block;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    color: #e74c3c;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.product-description-modern {
    margin-bottom: 40px;
}

.product-description-modern h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.description-content-modern {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.description-content-modern p {
    margin-bottom: 16px;
}

.description-content-modern p:last-child {
    margin-bottom: 0;
}

.product-favorite-action-wrapper {
    margin-bottom: 20px;
}

.product-favorite-action-wrapper .btn-favorite-modern,
.product-favorite-action-wrapper .btn-quote-list-modern {
    width: 100%;
}

.product-actions-modern {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-action-modern {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-share-full {
    flex: 1 1 100% !important;
    min-width: 100% !important;
}

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

.btn-phone-modern:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-modern {
    background: #25D366;
    color: white;
}

.btn-whatsapp-modern:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-action-modern i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .product-detail-layout-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-details-modern {
        padding: 32px 24px;
    }

    .product-title-detail-modern {
        font-size: 2rem;
    }

    .current-price-modern-detail {
        font-size: 2.25rem;
    }

    .old-price-modern-detail {
        font-size: 1.25rem;
    }

    .btn-action-modern {
        min-width: 100%;
    }

    .btn-share-full {
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }

    .btn-quote-request-modern {
        padding: 16px 20px;
        gap: 12px;
    }

    .btn-quote-icon {
        width: 48px;
        height: 48px;
    }

    .btn-quote-icon i {
        font-size: 20px;
    }

    .btn-quote-title {
        font-size: 16px;
    }

    .btn-quote-subtitle {
        font-size: 13px;
    }

    .btn-quote-arrow {
        width: 36px;
        height: 36px;
    }

    .main-image-modern {
        border-radius: var(--radius-lg);
    }
}

/* ============================================
   PRODUCT DETAIL ENHANCEMENTS
   ============================================ */

/* Product Header */
.product-header-modern {
    margin-bottom: 24px;
}

.product-brand-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.brand-label {
    color: var(--text-light);
    font-weight: 500;
}

.brand-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.brand-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.product-sku-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.sku-label {
    font-weight: 500;
}

.sku-value {
    font-weight: 600;
    color: var(--text-color);
    font-family: 'Courier New', monospace;
}

/* Product Rating */
.product-rating-modern {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #ddd;
    font-size: 16px;
    transition: var(--transition);
}

.rating-stars i.active {
    color: #ffc107;
}

.rating-text {
    font-size: 14px;
    color: var(--text-light);
}

/* Product Specs */
.product-specs-modern {
    margin-bottom: 32px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.spec-label {
    color: var(--text-light);
    font-weight: 500;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-label i {
    color: var(--primary-color);
    width: 18px;
}

.spec-value {
    color: var(--text-color);
    font-weight: 600;
}

.stock-in_stock {
    color: #10b981;
}

.stock-limited {
    color: #f59e0b;
}

.stock-out_of_stock {
    color: #ef4444;
}

/* Product Video */
.product-video-modern {
    margin-bottom: 32px;
}

.product-video-modern h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
    font-weight: 800;
}

.video-wrapper-modern {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.video-wrapper-modern iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.video-link-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Share Menu */
.product-share-modern {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.copy-link {
    background: var(--text-light);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Favorite Button */
.btn-favorite-modern,
.btn-quote-list-modern {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-favorite-modern:hover,
.btn-quote-list-modern:hover {
    background: var(--primary-color);
    color: white;
}

.btn-favorite-modern i.fas,
.btn-quote-list-modern i.fas {
    color: #e74c3c;
}

/* Trust Badges */
.trust-badges-modern {
    margin-top: 32px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* FAQ Section */
.product-faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-accordion-modern {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-modern {
    margin-bottom: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-modern:hover {
    border-color: var(--primary-light);
}

.faq-item-modern.active {
    border-color: var(--primary-color);
}

.faq-question-modern {
    padding: 20px 24px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-color);
    transition: var(--transition);
}

.faq-question-modern:hover {
    background: var(--light-bg);
}

.faq-question-modern i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Reviews Section */
.product-reviews-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.reviews-summary-modern {
    margin-bottom: 40px;
    text-align: center;
}

.rating-overview {
    display: inline-block;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.rating-average {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.rating-stars-large {
    display: flex;
    gap: 4px;
}

.rating-stars-large i {
    font-size: 24px;
    color: #ddd;
}

.rating-stars-large i.active {
    color: #ffc107;
}

.rating-count {
    font-size: 14px;
    color: var(--text-light);
}

.reviews-list-modern {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item-modern {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-author strong {
    font-size: 16px;
    color: var(--text-color);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 14px;
    color: #ddd;
}

.review-rating i.active {
    color: #ffc107;
}

.review-date {
    font-size: 14px;
    color: var(--text-light);
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 12px;
}

/* Related Products */
.related-products-section {
    padding: 80px 0;
    background: var(--white);
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.product-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.product-image-modern {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

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

.product-info-modern {
    padding: 24px;
}

.product-info-modern h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: 700;
}

.product-info-modern h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-info-modern h3 a:hover {
    color: var(--primary-color);
}

.product-info-modern .product-price-modern {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.product-info-modern .product-price-modern .current-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
    display: block;
}

.product-info-modern .product-price-modern .old-price {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.8;
    display: block;
    position: relative;
}

.product-info-modern .product-price-modern .old-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1.5px;
    background: #cbd5e1;
    transform: translateY(-50%);
}

.btn-view-product {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.btn-view-product:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
    .product-specs-modern {
        padding: 16px;
    }

    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .spec-label {
        min-width: auto;
    }

    .trust-badges-modern {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-share-modern {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .review-header {
        flex-direction: column;
        gap: 8px;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gallery-navigation-modern {
        padding: 0 5px;
    }

    .image-counter-modern {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 12px;
    }

    .discount-badge-modern {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .thumbnail-item-modern {
        width: 80px;
        height: 80px;
    }

    .thumbnails-scroll-wrapper {
        gap: 10px;
    }

    .image-zoom-hint-modern {
        padding: 10px 16px;
        font-size: 13px;
    }

    .image-zoom-hint-modern i {
        font-size: 16px;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* ============================================
   CONTACT PAGE - Modern Design
   ============================================ */

.contact-page-modern {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.contact-intro-modern {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.contact-intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-top: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.contact-layout-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.contact-form-section-modern {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-2xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-form-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-header-modern {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(2, 92, 181, 0.25);
}

.form-header-modern h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-header-modern p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form-modern {
    max-width: 100%;
}

.form-group-modern {
    margin-bottom: 28px;
}

.form-group-modern label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
}

.form-group-modern label i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-bg);
    color: var(--text-color);
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2, 92, 181, 0.1);
    background: var(--white);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 160px;
    font-family: inherit;
}

.form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(2, 92, 181, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-contact-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;
}

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

.btn-contact-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 92, 181, 0.35);
}

.btn-contact-submit i {
    transition: transform 0.3s ease;
}

.btn-contact-submit:hover i {
    transform: translateX(4px);
}

.contact-info-section-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-header {
    margin-bottom: 8px;
}

.contact-info-header h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-info-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-cards-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card-modern {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(2, 92, 181, 0.15);
    border-color: var(--primary-color);
}

.contact-icon-wrapper-modern {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.contact-icon-bg-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(2, 92, 181, 0.25);
}

.contact-card-modern:hover .contact-icon-bg-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(2, 92, 181, 0.35);
}

.contact-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-card-modern p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-card-modern a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card-modern a:hover {
    color: var(--primary-dark);
}

.contact-card-whatsapp .contact-icon-bg-modern {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-map-section-modern {
    margin-top: 100px;
}

.map-header-modern {
    text-align: center;
    margin-bottom: 48px;
}

.map-container-modern {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    border: 3px solid var(--border-color);
    transition: var(--transition);
}

.map-container-modern:hover {
    box-shadow: 0 16px 64px rgba(2, 92, 181, 0.2);
    border-color: var(--primary-color);
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.alert-success-modern,
.alert-error-modern {
    padding: 18px 24px;
    border-radius: 14px;
    margin-bottom: 28px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid transparent;
}

.alert-success-modern {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-success-modern i {
    color: #28a745;
    font-size: 1.25rem;
}

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

.alert-error-modern i {
    color: #dc3545;
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .contact-layout-modern {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-modern {
        padding: 120px 0;
    }

    .contact-form-section-modern {
        padding: 36px 28px;
    }

    .form-header-modern h3 {
        font-size: 1.75rem;
    }

    .contact-info-header h3 {
        font-size: 1.75rem;
    }

    .map-container-modern {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-intro-modern {
        margin-bottom: 60px;
    }

    .contact-form-section-modern {
        padding: 28px 20px;
    }

    .form-icon-modern {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .contact-icon-bg-modern {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .map-container-modern {
        height: 300px;
        border-radius: 16px;
    }
}

/* ============================================
   ALERTS
   ============================================ */

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

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

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

/* ============================================
   EMPTY STATE
   ============================================ */

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.empty-state p {
    color: var(--text-light);
}

/* ============================================
   SERVICES PAGE - Modern Design
   ============================================ */

.services-page-modern {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.services-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 20%, rgba(2, 92, 181, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.services-page-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.services-page-intro {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-top: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.services-grid-full-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.service-card-large-modern {
    background: var(--white);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    border: 3px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 92, 181, 0.05) 0%, rgba(0, 212, 255, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.service-card-large-modern:hover .service-card-overlay {
    opacity: 1;
}

.service-card-large-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.service-card-large-modern:hover::before {
    transform: scaleX(1);
}

.service-card-large-modern:hover {
    transform: translateY(-16px);
    box-shadow: 0 24px 80px rgba(2, 92, 181, 0.2);
    border-color: var(--primary-color);
}

.service-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(2, 92, 181, 0.3) 100%);
    opacity: 0.6;
}

.service-card-large-modern:hover .service-card-image img {
    transform: scale(1.15);
}

.service-card-content-wrapper {
    padding: 48px 40px;
    position: relative;
    z-index: 2;
}

.service-icon-wrapper-modern {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 0;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(2, 92, 181, 0.25);
}

.service-icon-wrapper-modern i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
}

.service-card-large-modern:hover .service-icon-bg {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(2, 92, 181, 0.35);
}

.service-content-modern {
    text-align: center;
}

.service-content-modern h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-content-modern>p {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.service-features-list-modern {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
}

.service-features-list-modern li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
}

.service-features-list-modern i {
    color: var(--primary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.service-features-list-modern span {
    color: var(--text-color);
}

.btn-service-modern-page {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(2, 92, 181, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-service-modern-page::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;
}

.btn-service-modern-page:hover::before {
    left: 100%;
}

.btn-service-modern-page:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(2, 92, 181, 0.35);
}

.btn-service-modern-page i {
    transition: transform 0.3s ease;
}

.btn-service-modern-page:hover i {
    transform: translateX(4px);
}

/* ============================================
   PRODUCTS PAGE - Modern Design
   ============================================ */

.products-page-modern {
    padding: 120px 0;
    background: var(--light-bg);
}

.products-layout-modern {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.products-sidebar-modern {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    height: fit-content;
}

.sidebar-widget-modern {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.sidebar-widget-modern h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.brand-list-modern {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-link-modern {
    display: block;
    padding: 14px 20px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-weight: 500;
    border: 2px solid transparent;
}

.brand-link-modern:hover,
.brand-link-modern.active {
    background: rgba(2, 92, 181, 0.08);
    color: var(--primary-color);
    border-color: rgba(2, 92, 181, 0.2);
    transform: translateX(4px);
}

.products-main-modern {
    flex: 1;
}

.products-grid-page-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.product-card-page-modern {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--border-color);
}

.product-card-page-modern:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.product-image-page-modern {
    height: 280px;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}

.product-image-page-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-page-modern:hover .product-image-page-modern img {
    transform: scale(1.15);
}

.product-overlay-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 92, 181, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-page-modern:hover .product-overlay-page {
    opacity: 1;
}

.btn-quick-view-page {
    padding: 14px 28px;
    background: white;
    color: var(--primary-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 15px;
}

.btn-quick-view-page:hover {
    transform: scale(1.05);
}

.product-info-page-modern {
    padding: 28px;
}

.product-header-page-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.product-info-page-modern h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex: 1;
}

.product-price-page-modern {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    flex-shrink: 0;
    text-align: right;
}

.current-price-page {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    display: block;
    white-space: nowrap;
}

.old-price-page {
    font-size: 1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.8;
    display: block;
    position: relative;
    white-space: nowrap;
}

.old-price-page::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #cbd5e1;
    transform: translateY(-50%);
}

.btn-product-page-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
    font-size: 15px;
}

.btn-product-page-modern:hover {
    background: var(--primary-dark);
    transform: translateX(4px);
}

/* Responsive: Product Card Page Modern */
@media (max-width: 768px) {
    .product-header-page-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .product-price-page-modern {
        align-items: flex-start;
        text-align: left;
        width: 100%;
    }

    .current-price-page {
        font-size: 1.5rem;
    }

    .old-price-page {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .product-info-page-modern {
        padding: 20px;
    }

    .current-price-page {
        font-size: 1.35rem;
    }
}

.empty-state-modern {
    text-align: center;
    padding: 100px 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.empty-icon-modern {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, rgba(2, 92, 181, 0.1), rgba(2, 92, 181, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon-modern i {
    font-size: 3.5rem;
    color: var(--primary-color);
}

.empty-state-modern h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.empty-state-modern p {
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ============================================
   BRANDS PAGE - Modern Design
   ============================================ */

.brands-page-modern {
    padding: 120px 0;
    background: var(--light-bg);
}

.brands-grid-page-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.brand-card-page-modern {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.brand-card-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 92, 181, 0.05) 0%, rgba(2, 92, 181, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.brand-card-page-modern:hover .brand-card-bg-modern {
    opacity: 1;
}

.brand-card-page-modern:hover {
    transform: translateY(-16px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-2xl);
}

.brand-logo-wrapper-page {
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.brand-logo-page {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 900;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(2, 92, 181, 0.15);
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Logo varsa arka planı beyaz yap */
.brand-logo-page-with-image {
    background: #ffffff !important;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.brand-logo-page img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
    filter: none;
}

.brand-logo-fallback-page {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: white;
    position: absolute;
    top: 0;
    left: 0;
}

.brand-card-page-modern:hover .brand-logo-page {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(2, 92, 181, 0.25);
}

.brand-card-page-modern:hover .brand-logo-page-with-image {
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.brand-content-page {
    position: relative;
    z-index: 2;
}

.brand-content-page h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.brand-content-page p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.brand-arrow-page {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition);
}

.brand-card-page-modern:hover .brand-arrow-page {
    transform: translateX(8px);
}

/* ============================================
   ABOUT PAGE - Modern Design
   ============================================ */

.about-page-modern {
    padding: 120px 0;
    background: var(--light-bg);
}

.about-intro-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-intro-content {
    max-width: 100%;
}

.about-intro-content h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.about-intro-content>p {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.about-intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.about-image-wrapper i {
    font-size: 8rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    opacity: 0.8;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.mission-vision-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.mission-card-modern,
.vision-card-modern {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card-modern::before,
.vision-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card-modern:hover::before,
.vision-card-modern:hover::before {
    transform: scaleX(1);
}

.mission-card-modern:hover,
.vision-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.mission-icon-wrapper,
.vision-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon-bg,
.vision-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-xl);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.mission-icon-wrapper i,
.vision-icon-wrapper i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
}

.mission-card-modern:hover .mission-icon-bg,
.vision-card-modern:hover .vision-icon-bg {
    transform: rotate(5deg) scale(1.1);
}

.mission-card-modern h3,
.vision-card-modern h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.mission-card-modern p,
.vision-card-modern p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    letter-spacing: -0.01em;
}

.values-section-modern {
    text-align: center;
}

.values-section-modern h2 {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 60px;
    letter-spacing: -0.03em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card-modern {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.value-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.value-card-modern:hover .value-icon-modern {
    transform: scale(1.15) rotate(5deg);
}

.value-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.value-card-modern p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */

.service-detail-page {
    padding: 120px 0;
    background: var(--light-bg);
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    margin-top: 40px;
}

.service-detail-main {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.service-detail-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.service-detail-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -0.01em;
}

.service-content-text {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--text-color);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.service-content-text p {
    margin-bottom: 20px;
}

.service-features-detail {
    margin-top: 40px;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}

.service-features-detail h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-features-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-features-grid li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.service-features-grid i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    height: fit-content;
}

.service-sidebar h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.service-list-sidebar {
    list-style: none;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list-sidebar li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-weight: 500;
    border: 2px solid transparent;
}

.service-list-sidebar li a i {
    color: var(--primary-color);
    font-size: 1.125rem;
    width: 24px;
    text-align: center;
}

.service-list-sidebar li a:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    border-color: rgba(2, 92, 181, 0.1);
    transform: translateX(4px);
}

.service-list-sidebar li a.active {
    background: var(--primary-color);
    color: white !important;
    border-color: var(--primary-color);
}

.service-list-sidebar li a.active i {
    color: white !important;
}

.service-list-sidebar li a.active:hover {
    background: var(--primary-color);
    opacity: 0.9;
    color: white !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .brands-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-header-modern {
        margin-bottom: 60px;
    }

    .brands-header-modern h3 {
        font-size: 2rem;
    }

    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-slider-section {
        margin-top: var(--header-height);
    }

    .logo img {
        height: 75px;
    }

    .products-layout-modern {
        grid-template-columns: 1fr;
    }

    .products-sidebar-modern {
        position: static;
    }

    .services-grid-full-modern {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-card-content-wrapper {
        padding: 40px 32px;
    }

    .service-features-list-modern {
        grid-template-columns: 1fr;
    }

    .services-page-header {
        margin-bottom: 60px;
    }

    .services-page-intro {
        font-size: 1.1rem;
    }

    .about-intro-modern {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mission-vision-grid-modern {
        grid-template-columns: 1fr;
    }

    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        background: var(--white);
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        padding: 80px 24px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
        align-items: stretch;
        justify-content: flex-start;
    }

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

    /* Backdrop overlay when menu is open */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    /* Mobile Dropdown (Accordion) */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        border: none;
        min-width: unset;
        width: 100%;
        padding: 0;
        margin: 5px 0;
        border-radius: 12px;
        height: 0;
        display: none;
        overflow: hidden;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        height: auto;
        padding: 8px 0;
        margin-bottom: 20px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        padding: 12px 30px;
        font-size: 13px;
        background: transparent !important;
        margin-bottom: 0;
        color: var(--text-light);
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        text-transform: none;
        letter-spacing: normal;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        padding-left: 35px;
        color: var(--primary-color);
    }

    .dropdown>a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .dropdown>a i {
        transition: transform 0.3s ease;
        font-size: 12px;
        opacity: 0.5;
    }

    .dropdown.active>a i {
        transform: rotate(180deg);
        opacity: 1;
        color: var(--primary-color);
    }

    .nav-menu>li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu>li:last-child {
        border-bottom: none;
    }

    .nav-menu>li {
        width: 100%;
    }

    .nav-menu>li>a {
        display: block;
        width: 100%;
        padding: 14px 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

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

    .brands-grid-modern {
        grid-template-columns: 1fr;
    }

    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-modern {
        grid-template-columns: 1fr;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .top-bar {
        padding: 10px 0;
    }

    .top-bar-content {
        flex-wrap: wrap;
        gap: 12px;
    }

    .contact-info {
        gap: 12px;
        justify-content: center;
        width: 100%;
    }

    .contact-info a[href^="mailto:"] {
        display: none;
    }

    .contact-info a {
        font-size: 13px;
        font-weight: 600;
    }

    .top-bar-right {
        justify-content: center;
        width: 100%;
        gap: 12px;
        align-items: center;
    }

    .favorites-link-topbar {
        padding: 6px;
        width: 36px;
        height: 36px;
        justify-content: center;
        border-radius: 8px;
    }

    .favorites-link-topbar .favorites-text {
        display: none;
    }

    .social-links {
        display: none !important;
    }

    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .language-selector {
        gap: 4px;
        justify-content: center;
    }

    .lang-item {
        width: 32px;
        height: 32px;
        padding: 4px;
        border-radius: 6px;
    }

    .lang-code {
        font-size: 10px;
    }

    .lang-flag {
        width: 20px;
        height: 15px;
    }

    .social-links a {
        border-bottom: none;
        text-decoration: none;
    }

    .nav-content {
        padding: 16px 0;
        gap: 20px;
    }

    .nav-menu>li>a {
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 12px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu>li>a::after {
        display: none;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-legal-links {
        font-size: 0.85rem;
    }

    .footer-legal-links a {
        font-size: 0.85rem;
        margin: 0 4px;
    }

    .footer-bottom-right {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero-slider-section {
        margin-top: var(--header-height);
    }

    .logo img {
        height: 65px;
    }

    .products-grid-page-modern {
        grid-template-columns: 1fr;
    }

    .brands-grid-page-modern {
        grid-template-columns: 1fr;
    }

    .service-content-modern h2 {
        font-size: 1.75rem;
    }

    .about-intro-content h2 {
        font-size: 2rem;
    }

    .values-section-modern h2 {
        font-size: 2rem;
    }

    .mission-card-modern h3,
    .vision-card-modern h3 {
        font-size: 1.75rem;
    }

    .values-grid-modern {
        grid-template-columns: 1fr;
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        margin-top: 40px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-slider-section {
        min-height: 600px;
        margin-top: var(--header-height);
    }

    .logo img {
        height: 60px;
    }

    section {
        padding: 60px 0;
    }

    .about-section-modern,
    .products-section-modern,
    .services-section-modern,
    .cta-section-modern {
        padding: 80px 0;
    }

    .contact-layout,
    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
    }

    .news-date {
        min-width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 16px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-image {
        width: 100%;
        height: 250px;
    }

    .news-content {
        padding: 24px;
    }

    .news-content h2 {
        font-size: 1.25rem;
    }

    .about-features-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-modern {
        padding: 36px 24px;
    }

    .about-header-modern {
        margin-bottom: 48px;
    }

    .about-intro-text {
        font-size: 1.1rem;
    }

    .brands-header-modern h3 {
        font-size: 1.75rem;
    }

    .brands-header-modern p {
        font-size: 1rem;
    }
}

/* ============================================
   COOKIE CONSENT BANNER - Compact Style
   ============================================ */

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    max-width: 600px;
    width: calc(100% - 40px);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
}

.cookie-consent-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-consent-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-consent-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(2, 92, 181, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.cookie-consent-content {
    flex: 1;
    min-width: 0;
}

.cookie-consent-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.cookie-consent-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-consent-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.cookie-consent-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cookie-consent-link i {
    font-size: 0.75rem;
}

.cookie-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.cookie-consent-btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cookie-consent-btn-reject {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.cookie-consent-btn-reject:hover {
    background: var(--light-bg);
    border-color: var(--text-light);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        width: auto;
        transform: translateY(120%);
        padding: 14px 16px;
    }

    .cookie-consent-banner.show {
        transform: translateY(0);
    }

    .cookie-consent-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .cookie-consent-icon {
        width: 36px;
        height: 36px;
    }

    .cookie-consent-icon i {
        font-size: 18px;
    }

    .cookie-consent-content {
        flex: 1 1 100%;
        min-width: 0;
    }

    .cookie-consent-content h4 {
        font-size: 0.9rem;
    }

    .cookie-consent-content p {
        font-size: 0.75rem;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-consent-link {
        font-size: 0.8rem;
    }

    .cookie-consent-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ============================================
   ÜRÜN TEKLİF İSTE FORMU
   ============================================ */

.product-request-quote-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.request-quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.request-quote-header {
    text-align: center;
    margin-bottom: 40px;
}

.request-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.request-icon i {
    font-size: 36px;
    color: var(--white);
}

.request-quote-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.request-quote-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.request-quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-request {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-request {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-request label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 15px;
    margin-bottom: 2px;
}

.form-group-request label i {
    color: var(--primary-color);
    font-size: 16px;
}

.form-group-request input,
.form-group-request select,
.form-group-request textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    background-color: #f8fafc;
    color: var(--text-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-group-request select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group-request input:focus,
.form-group-request select:focus,
.form-group-request textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(2, 92, 181, 0.1);
}

.form-group-request small {
    font-size: 12px;
    color: var(--text-light);
    margin-top: -4px;
}

.btn-request-quote {
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 10px;
    box-shadow: var(--shadow-md);
}

.btn-request-quote:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-request-quote:active {
    transform: translateY(0);
}

.alert-success-modern,
.alert-error-modern {
    padding: 16px 20px;
    padding-right: 50px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.alert-success-modern i {
    color: #28a745;
    font-size: 18px;
}

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

.alert-error-modern i {
    color: #dc3545;
    font-size: 18px;
}

.alert-close-btn {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.alert-close-btn:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.1);
}

.alert-success-modern .alert-close-btn:hover {
    background-color: rgba(21, 87, 36, 0.1);
}

.alert-error-modern .alert-close-btn:hover {
    background-color: rgba(114, 28, 36, 0.1);
}

.alert-close-btn i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .request-quote-wrapper {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .request-icon {
        width: 60px;
        height: 60px;
    }

    .request-icon i {
        font-size: 28px;
    }

    .request-quote-header h2 {
        font-size: 24px;
    }

    .form-row-request {
        grid-template-columns: 1fr;
    }

    .btn-request-quote {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* ============================================
   TEKLİF MODAL STİLLERİ
   ============================================ */

.quote-modal {
    display: none;
    position: fixed;
    z-index: 99999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.97) !important;
    backdrop-filter: blur(10px);
    z-index: 9999999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    overflow: auto;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-modal-overlay[style*="display: flex"] {
    display: flex !important;
}

.quote-modal-overlay[style*="display:flex"]:not([style*="display: none"]) {
    display: flex !important;
}

.quote-modal-overlay .quote-modal-content {
    position: relative !important;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--white) !important;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    overflow-y: auto;
    overflow-x: hidden;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000000 !important;
    margin: auto;
    /* Scroll bar gizle ama scroll çalışsın */
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}

.quote-modal-content::-webkit-scrollbar {
    width: 6px;
}

.quote-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.quote-modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.quote-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.quote-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3 !important;
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
}

.quote-modal-close:hover,
.quote-modal-close:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.quote-modal .request-quote-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 50px;
    box-shadow: none;
}

.quote-modal .request-quote-header {
    padding-top: 0;
}

.quote-modal-header {
    padding: 40px 50px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #025cb5 0%, #00d4ff 100%);
    color: var(--white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.quote-modal-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.quote-modal-body {
    padding: 40px 50px;
}

.selected-products-summary {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.selected-products-summary h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--text-color);
}

.selected-products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    max-height: 200px;
    overflow-y: auto;
}

.selected-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.selected-product-item .product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
}

.selected-product-item .product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.selected-total-price {
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
    text-align: right;
    font-size: 20px;
    color: var(--text-color);
}

.selected-total-price strong {
    color: var(--primary-color);
    font-size: 24px;
}

@media (max-width: 768px) {
    .quote-modal-content {
        width: 98%;
        max-height: 90vh;
        padding: 5px;
    }

    .quote-modal-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 48px;
        height: 48px;
    }

    .quote-modal .request-quote-wrapper {
        padding: 30px 20px;
    }

    .quote-modal-header {
        padding: 30px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .quote-modal-header h2 {
        font-size: 20px;
    }

    .quote-modal-body {
        padding: 30px 20px;
    }

    .selected-products-summary {
        padding: 20px;
    }

    .favorites-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .favorites-actions-modern {
        width: 100%;
    }

    .btn-bulk-quote-request,
    .btn-select-all-favorites,
    .btn-deselect-all-favorites {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
}


/* ============================================
   FAVORİLER SAYFASI STİLLERİ
   ============================================ */

.favorites-page-modern {
    padding: 60px 0;
    min-height: 60vh;
}

.favorites-header-modern {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.favorites-count-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--text-color);
}

.favorites-total-price-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: var(--text-color);
    background: linear-gradient(135deg, #025cb5 0%, #00d4ff 100%);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    color: var(--white);
    font-weight: 600;
}

.favorites-total-price-modern i {
    font-size: 20px;
}

.favorites-total-price-modern strong {
    font-size: 22px;
    font-weight: 700;
}

.favorites-actions-modern {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-bulk-quote-request,
.btn-select-all-favorites,
.btn-deselect-all-favorites {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-bulk-quote-request {
    background: linear-gradient(135deg, #025cb5 0%, #00d4ff 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-bulk-quote-request:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-select-all-favorites,
.btn-deselect-all-favorites {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-select-all-favorites:hover,
.btn-deselect-all-favorites:hover {
    background: var(--primary-color);
    color: var(--white);
}

.favorite-checkbox-wrapper {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.favorite-checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.favorite-checkbox-wrapper label {
    display: block;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.favorite-checkbox-wrapper label:hover {
    border-color: var(--primary-color);
    background: rgba(2, 92, 181, 0.1);
}

.favorite-checkbox-wrapper input[type="checkbox"]:checked+label {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.favorite-checkbox-wrapper input[type="checkbox"]:checked+label::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 16px;
}

.favorites-count-modern i {
    color: #ff6b6b;
    font-size: 24px;
}

.favorites-count-modern strong {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.favorites-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.favorite-card-modern {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.favorite-card-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.favorite-remove-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #ccc;
}

.favorite-remove-btn:hover {
    background: #ff6b6b;
    color: var(--white);
    transform: scale(1.1);
}

.favorite-remove-btn.active {
    color: #ff6b6b;
}

.favorite-remove-btn.active:hover {
    background: #ff6b6b;
    color: var(--white);
}

/* Ürün Kartları Favori Butonu */
.favorite-btn-card {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #666;
    font-size: 16px;
}

.favorite-btn-card:hover {
    background: #ff6b6b;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.favorite-btn-card.active {
    background: #ff6b6b;
    color: var(--white);
}

.favorite-btn-card.active i {
    font-weight: 900;
}

.favorite-btn-card.active:hover {
    background: #ff5252;
    color: var(--white);
}

.favorite-image-modern {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: var(--light-bg);
}

.favorite-image-modern .badge-modern.sale-badge {
    top: auto;
    bottom: 12px;
    left: 12px;
}

.favorite-image-modern img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.favorite-card-modern:hover .favorite-image-modern img {
    transform: scale(1.05);
}

.favorite-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 92, 181, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.favorite-card-modern:hover .favorite-image-overlay {
    opacity: 1;
}

.favorite-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-align: center;
}

.favorite-overlay-content i {
    font-size: 32px;
    opacity: 0.95;
}

.favorite-overlay-content span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.favorite-info-modern {
    padding: 20px;
}

.favorite-brand-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.favorite-brand-modern i {
    font-size: 10px;
    color: var(--primary-color);
}

.favorite-info-modern h3 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.favorite-info-modern h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.favorite-info-modern h3 a:hover {
    color: var(--primary-color);
}

.favorite-price-modern {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.favorite-price-modern .current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    display: block;
}

.favorite-price-modern .old-price {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
    opacity: 0.8;
    display: block;
    position: relative;
}

.favorite-price-modern .old-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1.5px;
    background: #cbd5e1;
    transform: translateY(-50%);
}

.favorite-actions-modern {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-view-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    min-width: 150px;
    justify-content: center;
    transition: var(--transition-fast);
    width: 100%;
    justify-content: center;
}

.btn-view-product:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-quote-from-favorite {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
    flex: 1;
    min-width: 150px;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.btn-quote-from-favorite:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.favorites-empty-modern {
    text-align: center;
    padding: 80px 20px;
}

.favorites-empty-modern .empty-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites-empty-modern .empty-icon i {
    font-size: 60px;
    color: #ff6b6b;
    opacity: 0.3;
}

.favorites-empty-modern h2 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.favorites-empty-modern p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-browse-products {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-browse-products:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-browse-products i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .favorites-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .favorites-link-topbar .favorites-text {
        display: none;
    }

    .favorites-link-topbar {
        padding: 6px 10px;
    }

    .favorites-count-modern {
        font-size: 16px;
    }

    .favorites-count-modern strong {
        font-size: 20px;
    }

    .favorites-empty-modern {
        padding: 60px 20px;
    }

    .favorites-empty-modern .empty-icon {
        width: 100px;
        height: 100px;
    }

    .favorites-empty-modern .empty-icon i {
        font-size: 50px;
    }

    .favorites-empty-modern h2 {
        font-size: 24px;
    }

    .favorites-empty-modern p {
        font-size: 14px;
    }
}