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

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

:root {
    --logo-size: 40px;
    --navbar-height: 100px;
}

body {
    font-family: 'Figtree', sans-serif;
    background-color: #ffffff;
    min-height: 100%;
}

.ustbar-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    gap: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
}

.logo {
    margin-left: 100px;
    cursor: pointer;
    display: inline-block;
}

.logo img {
    height: 60px;
    display: block;
}

.animated-logo {
    display: flex;
    align-items: center;
    transform: scale(0.7);
}

.wheel-container {
    position: relative;
    display: inline-block;
    width: var(--logo-size);
    height: var(--logo-size);
}

.wheel {
    width: var(--logo-size);
    height: var(--logo-size);
    animation: rotate 3s linear infinite;
}

.logo-part1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(var(--logo-size) * 0.43);
    height: calc(var(--logo-size) * 0.43);
    object-fit: contain;
}

.logo-part2 {
    height: calc(var(--logo-size) * 0.85);
    margin-left: calc(var(--logo-size) * 0.02);
    margin-top: calc(var(--logo-size) * 0.12);
}

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

.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.menu-item i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    color: #e31e24;
    transform: translateY(-2px);
}

.menu-item:hover i {
    transform: scale(1.2);
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e31e24;
    transition: width 0.3s ease;
}

.menu-item:hover::after {
    width: 100%;
}

/* Mega Menu */
.menu-item-dropdown {
    position: relative;
}

.menu-item-dropdown .menu-item {
    cursor: pointer;
}

.dropdown-icon {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.menu-item-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.mega-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    padding: 40px 30px;
    min-width: 1100px;
    max-width: 1200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-top: 3px solid #e31e24;
}

.menu-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 25px;
}

.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu-title {
    font-size: 13px;
    font-weight: 700;
    color: #e31e24;
    margin: 0 0 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.3;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-menu-list li a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.65);
    font-size: 13px;
    line-height: 1.4;
    transition: all 0.25s ease;
    display: block;
    padding: 4px 0;
}

.mega-menu-list li a:hover {
    color: #e31e24;
    padding-left: 8px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px 35px 8px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    outline: none;
    width: 200px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #e31e24;
    width: 250px;
}

.search-input::placeholder {
    color: #999;
}

.search-icon {
    position: absolute;
    right: 15px;
    color: #666;
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: #e31e24;
}

.language-selector {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background-color: transparent;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.lang-btn:hover {
    background-color: #e31e24;
    border-color: #e31e24;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(227, 30, 36, 0.3);
}

.lang-btn:hover i {
    transform: rotate(15deg);
}

#content {
    padding: 0;
}

.ana-sayfa {
    width: 100%;
}

.showcase-slider {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--navbar-height));
    height: calc(100vh - var(--navbar-height));
    overflow: hidden;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    margin-top: var(--navbar-height);
}

.showcase-title-bar {
    width: 100%;
    background: #2d2b2c;
    padding: 20px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    flex-shrink: 0;
}

.title-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.title-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-separator {
    width: 2px;
    height: 30px;
    background: #e31e24;
}

.title-highlight {
    font-size: 24px;
    font-weight: 700;
    color: #e31e24;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slider-container {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.9), rgba(192, 26, 31, 0.9));
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide:nth-child(1) {
    background: #ffffff url('assets/ASM30DF.png') center/contain no-repeat;
    background-position: center center;
    background-size: 100%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide:nth-child(2) {
    background: #ffffff url('assets/ASM40ZT.png') center center no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide:nth-child(3) {
    background: #ffffff url('assets/GEM926.png') center top no-repeat;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide:nth-child(4) {
    background: #ffffff url('assets/PS15.png') center/contain no-repeat;
    background-position: center bottom 90%;
    background-size: 100%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide:nth-child(5) {
    background: #ffffff url('assets/OPL25.png') no-repeat;
    background-position: center 60%;
    background-size: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #e31e24;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-btn:hover {
    background-color: #e31e24;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1a1a1a;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: #e31e24;
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.slider-arrow i {
    font-size: 20px;
}

.slider-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.indicator:hover {
    opacity: 1;
}

.indicator.active {
    background-color: #e31e24;
    width: 40px;
    border-radius: 6px;
    opacity: 1;
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.hamburger-btn:hover {
    color: #e31e24;
}

.mobile-controls {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.mobile-menu-header h3 {
    margin: 0;
    color: #333;
    font-size: 20px;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #e31e24;
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.mobile-menu-item i {
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.mobile-menu-item:hover {
    background-color: #f8f9fa;
    border-left-color: #e31e24;
    color: #e31e24;
}

.mobile-menu-item.mobile-search {
    border-top: 2px solid #f0f0f0;
    margin-top: 10px;
}

.mobile-menu-accordion {
    display: flex;
    flex-direction: column;
}

.mobile-menu-accordion > .mobile-menu-item {
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-item-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #546e7a;
}

.mobile-menu-accordion.active .accordion-arrow {
    transform: rotate(180deg);
    color: #e31e24;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.mobile-menu-accordion.active .mobile-submenu {
    max-height: 2000px;
}

.mobile-category-header {
    padding: 15px 20px 8px 40px;
    color: #263238;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 15px;
    border-left: 3px solid #e31e24;
    background: linear-gradient(90deg, rgba(227, 30, 36, 0.08) 0%, transparent 100%);
}

.mobile-category-header:first-child {
    margin-top: 0;
}

.mobile-submenu-item {
    display: block;
    padding: 12px 20px 12px 55px;
    color: #546e7a;
    text-decoration: none;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-submenu-item:hover {
    background: #fff;
    color: #e31e24;
    border-left-color: #e31e24;
    padding-left: 60px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-controls {
        display: flex;
        gap: 10px;
    }

    .ustbar-container {
        padding: 15px 20px;
        gap: 20px;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background-color: #fff !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
    }

    .logo {
        margin-left: 0;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .logo img {
        height: 40px;
    }

    .animated-logo {
        transform: scale(0.6);
    }

    .contact-box {
        right: 0 !important;
        top: 75% !important;
    }

    .contact-box-inner {
        padding: 10px 6px 10px 10px !important;
        gap: 8px !important;
        border-radius: 30px 0 0 30px !important;
    }

    .contact-item {
        width: 32px !important;
        height: 32px !important;
    }

    .contact-item i {
        font-size: 14px !important;
    }

    .contact-item .fa-whatsapp {
        font-size: 16px !important;
    }

    .contact-item::before,
    .contact-item::after {
        display: none !important;
    }

    :root {
        --navbar-height: 75px;
    }

    .showcase-slider {
        min-height: auto !important;
        height: auto !important;
        margin-top: var(--navbar-height) !important;
        gap: 0 !important;
        position: relative !important;
        overflow: visible !important;
    }

    .slider-container {
        height: 300px !important;
        min-height: 300px !important;
        position: relative !important;
        width: 100%;
        padding-bottom: 0 !important;
        flex: none !important;
    }

    .slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: none !important;
        background-color: transparent !important;
        display: block !important;
        pointer-events: none !important;
    }

    .slide.active {
        pointer-events: auto !important;
    }

    .scroll-down-container {
        position: relative !important;
        padding: 30px 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: transparent !important;
        flex-shrink: 0 !important;
    }

    .products-section {
        margin-top: -30px !important;
    }

    .product-card:nth-child(7) {
        display: none !important;
    }

    .scroll-down-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }

    .showcase-title-bar {
        padding: 12px 20px;
        gap: 10px;
        min-height: 70px;
        max-height: 70px;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 0 !important;
    }

    .title-content {
        gap: 10px;
        width: 100%;
        overflow: hidden;
    }

    .title-text {
        font-size: 9px;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .title-separator {
        height: 16px;
        flex-shrink: 0;
    }

    .title-highlight {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
        min-width: 0;
    }

    .slide-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-arrow i {
        font-size: 16px;
    }

    .slide:nth-child(1) {
        background-color: #ffffff !important;
        background-image: url('assets/ASM30DF.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .slide:nth-child(2) {
        background-color: #ffffff !important;
        background-image: url('assets/ASM40ZT.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .slide:nth-child(3) {
        background-color: #ffffff !important;
        background-image: url('assets/GEM926.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .slide:nth-child(4) {
        background-color: #ffffff !important;
        background-image: url('assets/PS15.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .slide:nth-child(5) {
        background-color: #ffffff !important;
        background-image: url('assets/OPL25.png') !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 30px;
    }
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

#loading-screen .animated-logo {
    --logo-size: 120px;
}

.contact-box {
    position: fixed;
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1000;
}

.contact-box-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    padding: 15px 12px 15px 15px;
    border-radius: 50px 0 0 50px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.contact-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    position: relative;
}

.contact-item i {
    font-size: 22px;
    transition: all 0.3s ease;
    font-weight: 900;
}

.contact-item .fa-whatsapp {
    font-size: 26px;
}

.contact-item:hover {
    background-color: #e31e24;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 3px 12px rgba(227, 30, 36, 0.25);
}

.contact-item:hover i {
    transform: scale(1.02);
}

.contact-item::before {
    content: attr(title);
    position: absolute;
    right: 65px;
    background-color: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.contact-item::after {
    content: '';
    position: absolute;
    right: 55px;
    border: 6px solid transparent;
    border-left-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-item:hover::before,
.contact-item:hover::after {
    opacity: 1;
    visibility: visible;
}

.scroll-down-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background-color: transparent;
    flex-shrink: 0;
}

.scroll-down-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2d2b2c;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-down-btn:hover {
    background-color: #e31e24;
    transform: translateY(3px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.products-section {
    padding: 50px 0 80px 0;
    background-color: transparent;
}

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

.products-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #263238;
    margin-bottom: 15px;
}

.products-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #78909C;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(227, 30, 36, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e31e24 0%, #c01a1f 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    box-shadow: 0 12px 35px rgba(227, 30, 36, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: rgba(227, 30, 36, 0.3);
}

.product-card img {
    width: 100%;
    height: calc(100% - 70px);
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-card.product-contain img {
    object-fit: contain;
}

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

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.85) 50%,
        rgba(26, 26, 26, 0.75) 100%);
    padding: 18px 20px;
    height: 70px;
    display: flex;
    align-items: center;
    border-top: 2px solid #e31e24;
    backdrop-filter: blur(8px);
}

.product-overlay::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e31e24 0%, #ff4444 100%);
    transition: width 0.4s ease;
}

.product-card:hover .product-overlay::before {
    width: 100%;
}

.product-overlay h3 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    text-align: left;
    width: 100%;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay h3 {
    transform: translateX(5px);
    color: #e31e24;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .products-container {
        padding: 0 30px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .product-overlay h3 {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 40px 0 60px 0;
    }

    .products-container {
        padding: 0 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card img {
        height: calc(100% - 55px);
    }

    .product-overlay {
        height: 55px;
        padding: 12px;
    }

    .product-overlay h3 {
        font-size: 0.75rem;
    }
}

/* About Section */
.about-section {
    padding: 120px 0 100px 0;
    background: linear-gradient(135deg, #e31e24 0%, #c01a1f 100%);
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #263238;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-section .section-title {
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #546e7a;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.section-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-main-text {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.about-main-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.lead-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e31e24;
    margin-bottom: 25px;
    line-height: 1.4;
}

.about-main-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #546e7a;
    margin-bottom: 20px;
}

.about-main-text p:last-child {
    margin-bottom: 0;
}


.services-title {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.services-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 0 auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon i {
    font-size: 36px;
    color: #e31e24;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #263238;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #78909C;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: transparent;
}

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

.contact-header {
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.contact-info-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e31e24 0%, #c01a1f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: #fff;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 8px 0;
}

.contact-details p {
    font-size: 0.95rem;
    color: #546e7a;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: #546e7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #e31e24;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    border: 3px solid #e31e24;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.contact-map.animate-in {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0 60px 0;
    }

    .contact-section {
        padding: 60px 0;
    }

    .about-container,
    .contact-container {
        padding: 0 20px;
    }

    .about-main-text {
        padding: 30px 25px;
    }

    .lead-text {
        font-size: 1.3rem;
    }

    .about-main-text p {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 32px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

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

    .contact-map {
        min-height: 300px;
    }
}

/* Footer Styles */
/* ========================================
   FOOTER - Modern Professional Design
   ======================================== */

.site-footer {
    background: #2d2b2c;
    color: #fff;
    margin-top: 100px;
}

.footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 70px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    height: 55px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 380px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link i {
    font-size: 18px;
}

.social-link:hover {
    background: #e31e24;
    border-color: #e31e24;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

/* Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

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

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 24px 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-list li {
    line-height: 1.6;
    position: relative;
    padding-left: 18px;
}

.footer-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #e31e24;
    font-size: 14px;
    top: 0;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Contact List Specific Styles */
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 0;
}

.footer-contact-list li::before {
    content: none;
}

.footer-contact-list i {
    color: #e31e24;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact-list span,
.footer-contact-list a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-list a:hover {
    color: #fff;
    transform: none;
}

/* Bottom Section */
.footer-bottom {
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-asimato {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ========================================
   FOOTER MOBILE STYLES
   ======================================== */

@media (max-width: 768px) {
    .site-footer {
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 40px 25px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-tagline {
        display: none;
    }

    .footer-social {
        justify-content: center;
        margin-top: 0;
        gap: 16px;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .social-link i {
        font-size: 20px;
    }

    /* Hide all footer links columns on mobile */
    .footer-links {
        display: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 24px 25px;
        gap: 8px;
    }

    .footer-bottom p {
        font-size: 0.88rem;
    }
}

/* ========================================
   İLETİŞİM SAYFASI
   ======================================== */

.iletisim-sayfa {
    min-height: 100vh;
    margin-top: var(--navbar-height);
}

/* Hero Section */
.iletisim-hero {
    background: linear-gradient(135deg, #e31e24 0%, #c01a1f 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.iletisim-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 35px 0;
    line-height: 1.6;
}

.hero-quick-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-btn {
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.quick-contact-btn:hover {
    background: #fff;
    color: #e31e24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quick-contact-btn.whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.quick-contact-btn i {
    font-size: 20px;
}

/* İletişim Content */
.iletisim-content {
    padding: 80px 0;
    background: #f5f5f5;
}

.iletisim-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Info Items Grid */
.info-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card-full {
    margin-bottom: 40px;
}

/* Dual Grid for Merkez & Harita */
.iletisim-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    grid-auto-rows: 1fr;
}

.iletisim-dual-grid .iletisim-card {
    height: 100%;
}

/* Form Full Width */
.form-card {
    margin-bottom: 0;
}

/* İletişim Card */
.iletisim-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.iletisim-card:last-child {
    margin-bottom: 0;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #e31e24;
}

/* Info Items */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e31e24 0%, #c01a1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: #fff;
}

.info-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #263238;
    margin: 0 0 8px 0;
}

.info-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #546e7a;
    margin: 0;
}

.info-text a {
    color: #546e7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #e31e24;
}

/* Merkez Resmi */
.merkez-card,
.harita-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.merkez-card .card-title,
.harita-card .card-title {
    flex-shrink: 0;
    margin-bottom: 30px;
}

.merkez-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

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

/* Harita */
.harita-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

.harita-container iframe {
    height: 100%;
}

/* İletişim Formu */
.form-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #546e7a;
    margin: 0 0 30px 0;
}

.iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #263238;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Figtree', sans-serif;
    color: #263238;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e31e24;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Consents */
.form-consents {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid #e31e24;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consent-item input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #e31e24;
}

.consent-item label {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #263238;
    cursor: pointer;
    font-weight: normal;
    margin: 0;
}

.consent-item label a {
    color: #e31e24;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.consent-item label a:hover {
    color: #c01a1f;
}

.form-actions {
    margin-top: 20px;
}

.submit-btn {
    padding: 14px 40px;
    background: linear-gradient(135deg, #e31e24 0%, #c01a1f 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(227, 30, 36, 0.3);
}

.submit-btn i {
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .iletisim-hero {
        padding: 70px 20px 60px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 20px;
        margin-bottom: 20px;
    }

    .hero-title {
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-bottom: 30px;
    }

    .quick-contact-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .iletisim-content {
        padding: 60px 0;
    }

    .iletisim-container {
        padding: 0 25px;
    }

    .info-card-full {
        margin-bottom: 30px;
    }

    .info-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .iletisim-dual-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .iletisim-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .card-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .info-item {
        gap: 15px;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

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

    .harita-container {
        height: 300px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .form-consents {
        padding: 15px;
        margin-top: 20px;
    }

    .consent-item {
        gap: 10px;
    }

    .consent-item label {
        font-size: 0.85rem;
    }

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

/* Tablet Responsive */
@media (min-width: 600px) and (max-width: 968px) {
    .info-items-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ========================================
   KVKK SAYFASI
   ======================================== */

.kvkk-sayfa {
    min-height: 100vh;
    margin-top: var(--navbar-height);
}

/* KVKK Hero */
.kvkk-hero {
    background: linear-gradient(135deg, #e31e24 0%, #c01a1f 100%);
    padding: 60px 20px;
    text-align: center;
}

.kvkk-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.kvkk-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}

.kvkk-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* KVKK Content */
.kvkk-content {
    padding: 60px 0;
    background: #f5f5f5;
}

.kvkk-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.kvkk-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.kvkk-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 30px 0;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #e31e24;
}

.kvkk-text {
    color: #546e7a;
    line-height: 1.8;
}

.kvkk-text p {
    margin: 0 0 20px 0;
    font-size: 1rem;
}

.kvkk-text strong {
    color: #263238;
    font-weight: 600;
}

.kvkk-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e31e24;
    margin: 40px 0 20px 0;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.kvkk-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.kvkk-list > li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.kvkk-list > li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #e31e24;
    font-size: 16px;
    font-weight: bold;
}

.kvkk-sublist {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.kvkk-sublist li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.kvkk-sublist li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #e31e24;
}

.kvkk-numbered-list {
    padding-left: 25px;
    margin: 20px 0;
}

.kvkk-numbered-list li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.kvkk-info-box {
    background: #f5f5f5;
    border-left: 4px solid #e31e24;
    padding: 25px 30px;
    margin: 30px 0 0 0;
    border-radius: 8px;
}

.kvkk-info-box p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #263238;
}

/* KVKK footer spacing override */
body.kvkk-page .site-footer {
    margin-top: 0;
}

/* Kiralama footer spacing override */
body.kiralama-page .site-footer {
    margin-top: 0;
}

/* ========== KİRALAMA PAGE STYLES ========== */

.kiralama-sayfa {
    min-height: 100vh;
    background: #f5f5f5;
}

/* Kiralama Hero Section */
.kiralama-hero {
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.kiralama-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.kiralama-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.kiralama-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.kiralama-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.kiralama-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Kiralama Content Section */
.kiralama-content {
    padding: 60px 0;
    position: relative;
    padding-top: calc(var(--navbar-height) + 60px);
}

.kiralama-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Avantajlar Card */
.avantajlar-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.avantajlar-title {
    font-size: 2rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 40px 0;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #e31e24;
}

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

.avantaj-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.avantaj-item:hover {
    background: #fff;
    border-color: #e31e24;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.1);
}

.avantaj-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

.avantaj-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.avantaj-text p {
    margin: 0;
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Kiralama Form Card */
.kiralama-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 15px 0;
    text-align: center;
}

.form-card-description {
    color: #546e7a;
    text-align: center;
    margin: 0 0 40px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.kiralama-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kiralama-content {
        padding: 40px 0;
        padding-top: calc(var(--navbar-height) + 40px);
    }

    .kiralama-container {
        padding: 0 20px;
    }

    .avantajlar-card,
    .kiralama-form-card {
        padding: 30px 20px;
    }

    .avantajlar-title,
    .form-card-title {
        font-size: 1.5rem;
    }

    .avantajlar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .avantaj-item {
        padding: 20px;
    }

    .avantaj-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .avantaj-text p {
        font-size: 0.9rem;
    }
}

/* KVKK Mobile */
@media (max-width: 768px) {
    .kvkk-hero {
        padding: 50px 20px;
    }

    .kvkk-content {
        padding: 40px 0 60px;
    }

    .kvkk-container {
        padding: 0 20px;
    }

    .kvkk-card {
        padding: 30px 25px;
    }

    .kvkk-main-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }

    .kvkk-section-title {
        font-size: 1.2rem;
        margin: 30px 0 15px 0;
        padding-top: 25px;
    }

    .kvkk-text p {
        font-size: 0.95rem;
    }

    .kvkk-list > li {
        font-size: 0.95rem;
        padding-left: 20px;
    }

    .kvkk-sublist li {
        font-size: 0.9rem;
    }

    .kvkk-info-box {
        padding: 20px;
    }

    .kvkk-info-box p {
        font-size: 0.9rem;
    }
}

/* ========== KURUMSAL PAGE STYLES ========== */

.kurumsal-sayfa {
    min-height: 100vh;
    background: #f5f5f5;
}

/* Kurumsal Content Section */
.kurumsal-content {
    padding: 60px 0;
    position: relative;
    padding-top: calc(var(--navbar-height) + 60px);
}

.kurumsal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Kurumsal Card Base */
.kurumsal-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.kurumsal-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e31e24;
    margin: 0 0 30px 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.kurumsal-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e31e24 0%, #b71c1c 100%);
    border-radius: 2px;
}

/* Hakkımızda Card */
.hakkimizda-content p {
    color: #546e7a;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

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

/* Vizyon & Misyon Grid */
.vizyon-misyon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vizyon-card,
.misyon-card {
    position: relative;
    overflow: hidden;
}

.vizyon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #e31e24 0%, #ff4757 100%);
}

.misyon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #b71c1c 0%, #e31e24 100%);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.vizyon-card p,
.misyon-card p {
    color: #546e7a;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
}

/* Değerlerimiz Grid */
.degerler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.deger-item {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.deger-item:hover {
    background: #fff;
    border-color: #e31e24;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.1);
}

.deger-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.deger-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 15px 0;
}

.deger-item p {
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Neden Yucensa Grid */
.neden-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.neden-item {
    position: relative;
    padding: 30px 30px 30px 90px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #e31e24;
}

.neden-item:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.1);
    transform: translateX(5px);
}

.neden-number {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.neden-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 12px 0;
}

.neden-item p {
    color: #546e7a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Asimato Card */
.asimato-card {
    background: linear-gradient(135deg, #263238 0%, #37474f 100%);
    color: #fff;
}

.asimato-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: center;
}

.asimato-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(227, 30, 36, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #e31e24;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.asimato-text .kurumsal-section-title {
    text-align: left;
    color: #fff;
}

.asimato-text .kurumsal-section-title::after {
    left: 0;
    transform: none;
    background: linear-gradient(90deg, #e31e24 0%, #ff4757 100%);
}

.asimato-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.asimato-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.asimato-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.asimato-list li:last-child {
    border-bottom: none;
}

.asimato-list li i {
    color: #e31e24;
    font-size: 1.1rem;
}

/* Kurumsal footer spacing override */
body.kurumsal-page .site-footer {
    margin-top: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .kurumsal-content {
        padding: 40px 0;
        padding-top: calc(var(--navbar-height) + 40px);
    }

    .kurumsal-container {
        padding: 0 20px;
    }

    .kurumsal-card {
        padding: 30px 20px;
    }

    .kurumsal-section-title {
        font-size: 1.5rem;
    }

    .vizyon-misyon-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .degerler-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .neden-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .neden-item {
        padding: 70px 20px 20px 20px;
    }

    .neden-number {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }

    .asimato-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .asimato-logo {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .asimato-text .kurumsal-section-title {
        text-align: center;
    }

    .asimato-text .kurumsal-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.kategori-sayfa {
    min-height: 100vh;
    background: #f5f5f5;
}

.kategori-content {
    padding: 60px 0;
    padding-top: calc(var(--navbar-height) + 60px);
}

.kategori-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #546e7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e31e24;
}

.breadcrumb .separator {
    color: #b0bec5;
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: #263238;
    font-weight: 600;
}

.kategori-header {
    text-align: center;
    margin-bottom: 50px;
}

.kategori-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #263238;
    margin: 0 0 15px 0;
}

.kategori-description {
    font-size: 1.1rem;
    color: #546e7a;
    margin: 0;
}

.filter-bar {
    background: #fff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.product-count {
    font-size: 1rem;
    color: #546e7a;
    font-weight: 600;
}

.sort-select {
    padding: 10px 35px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #263238;
    background: #fff;
    cursor: pointer;
    font-family: 'Figtree', sans-serif;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23546e7a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-select:hover {
    border-color: #e31e24;
}

.sort-select:focus {
    outline: none;
    border-color: #e31e24;
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

body.kategori-page .product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    aspect-ratio: auto !important;
    position: static !important;
}

body.kategori-page .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

body.kategori-page .product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f9f9f9;
}

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

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

body.kategori-page .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}

body.kategori-page .product-badge.new {
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
}

body.kategori-page .product-info {
    padding: 25px;
}

body.kategori-page .product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

body.kategori-page .product-description {
    font-size: 0.9rem;
    color: #546e7a;
    margin: 0 0 20px 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.kategori-page .product-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e31e24;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.kategori-page .product-detail-btn:hover {
    gap: 12px;
}

body.kategori-page .product-detail-btn i {
    font-size: 0.8rem;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.empty-icon i {
    font-size: 4rem;
    color: #b0bec5;
}

.empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 15px 0;
}

.empty-state p {
    font-size: 1.1rem;
    color: #546e7a;
    margin: 0 0 30px 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

body.kategori-page .site-footer {
    margin-top: 0;
}

@media (max-width: 768px) {
    .kategori-content {
        padding: 40px 0;
        padding-top: calc(var(--navbar-height) + 40px);
    }

    .kategori-container {
        padding: 0 20px;
    }

    .kategori-title {
        font-size: 1.8rem;
    }

    .kategori-description {
        font-size: 1rem;
    }

    .filter-bar {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .filter-right {
        width: 100%;
    }

    .sort-select {
        width: 100%;
    }

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

    .breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
}

/* ==================== ÜRÜN DETAY SAYFASI ==================== */

.urun-sayfa {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.urun-content {
    padding: 60px 0 80px;
    padding-top: calc(var(--navbar-height) + 60px);
}

.urun-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.urun-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

/* Ürün Galerisi */
.urun-gallery {
    position: static;
}

.main-image {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.main-image:hover::after {
    background: rgba(0, 0, 0, 0.05);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.zoom-icon {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.main-image:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.thumbnail {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    aspect-ratio: 1;
    overflow: hidden;
}

.thumbnail:hover {
    border-color: #e31e24;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
}

.thumbnail.active {
    border-color: #e31e24;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

/* Ürün Bilgileri */
.urun-info {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.urun-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #263238;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.urun-description {
    font-size: 1.2rem;
    color: #546e7a;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

/* Teknik Özellikler Tablosu */
.specs-table {
    margin-bottom: 40px;
}

.specs-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #e31e24;
}

.specs-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.specs-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 18px 20px;
    font-weight: 600;
    color: #455a64;
    background: #f8f9fa;
    width: 45%;
}

.spec-value {
    padding: 18px 20px;
    color: #263238;
    font-weight: 500;
}

.specs-table tbody tr:hover .spec-label {
    background: #eceff1;
}

/* Ürün Açıklama Bölümü (Vinçler için) */
.product-description-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.description-content {
    color: #455a64;
    line-height: 1.8;
    font-size: 1rem;
}

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

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

/* Aksiyon Butonları */
.urun-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 200px;
}

.brochure-btn {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.brochure-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.price-btn {
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.action-btn i {
    font-size: 1.3rem;
}

/* Yükleniyor Durumu */
.loading-state {
    text-align: center;
    padding: 100px 40px;
}

.loading-state i {
    font-size: 4rem;
    color: #e31e24;
    margin-bottom: 20px;
}

.loading-state p {
    font-size: 1.2rem;
    color: #546e7a;
    font-weight: 500;
}

/* Hata Durumu */
.error-state {
    text-align: center;
    padding: 80px 40px;
}

.error-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffc107 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.error-icon i {
    font-size: 4rem;
    color: #ff6f00;
}

.error-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #263238;
    margin: 0 0 25px 0;
}

body.urun-page .site-footer {
    margin-top: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    margin: 0 auto;
    display: block;
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    user-select: none;
    background: rgba(227, 30, 36, 0.8);
    border-radius: 50%;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(227, 30, 36, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .urun-grid {
        gap: 40px;
    }

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

@media (max-width: 992px) {
    .urun-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .urun-gallery {
        position: static;
    }

    .urun-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .urun-content {
        padding: 40px 0 60px;
        padding-top: calc(var(--navbar-height) + 40px);
    }

    .urun-container {
        padding: 0 20px;
    }

    .urun-info {
        padding: 30px 25px;
    }

    .urun-title {
        font-size: 1.6rem;
    }

    .urun-description {
        font-size: 1rem;
    }

    .specs-title {
        font-size: 1.3rem;
    }

    .spec-label,
    .spec-value {
        padding: 14px 15px;
        font-size: 0.95rem;
        display: block;
        width: 100%;
    }

    .spec-label {
        padding-bottom: 8px;
    }

    .spec-value {
        padding-top: 8px;
        background: #f8f9fa;
    }

    .urun-actions {
        flex-direction: column;
    }

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

    .thumbnail-list {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 10px;
    }

    .main-image {
        padding: 20px;
    }

    .zoom-icon {
        width: 40px;
        height: 40px;
        bottom: 30px;
        right: 30px;
        font-size: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-content {
        max-width: 90vw;
        max-height: 80vh;
    }

    .lightbox {
        padding: 0;
    }
}

/* ===================================
   ARAMA SİSTEMİ STİLLERİ
   =================================== */

/* Header Arama - Autocomplete */
.search-container {
    position: relative;
}

.search-autocomplete {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 500px;
    overflow-y: auto;
}

.search-autocomplete.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.autocomplete-list {
    padding: 8px;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.autocomplete-item:hover {
    background: #f5f5f5;
}

.autocomplete-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e31e24, #c01a1f);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.autocomplete-content {
    flex: 1;
    min-width: 0;
}

.autocomplete-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-text strong {
    color: #e31e24;
    font-weight: 600;
}

.autocomplete-type {
    font-size: 12px;
    color: #999;
}

.autocomplete-loading {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.autocomplete-footer {
    padding: 8px;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

.autocomplete-see-all {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #e31e24, #c01a1f);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.autocomplete-see-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
}

/* Arama Sayfası */
.arama-sayfa {
    padding-top: var(--navbar-height);
    min-height: 100vh;
    background: #f8f9fa;
}

.arama-content {
    padding: 40px 0;
}

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

.arama-header {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    position: relative;
}

.arama-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.search-box-container {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.search-input-large {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    transition: all 0.3s ease;
}

.search-input-large:focus {
    outline: none;
    border-color: #e31e24;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.search-btn-large {
    padding: 16px 32px;
    background: linear-gradient(135deg, #e31e24, #c01a1f);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
}

.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 40px;
    right: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
}

.autocomplete-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.arama-stats {
    padding: 16px 0;
    color: #666;
    font-size: 15px;
}

.arama-results {
    min-height: 400px;
}

.results-grid {
    display: grid;
    gap: 20px;
}

.result-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.result-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #e31e24, #c01a1f);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.result-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.result-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 8px;
    font-size: 48px;
    color: #999;
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.result-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.result-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #999;
}

.result-category,
.result-relevance {
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-action {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #e31e24;
    font-size: 16px;
    transition: all 0.3s ease;
}

.result-card:hover .result-action {
    background: linear-gradient(135deg, #e31e24, #c01a1f);
    color: white;
}

.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.loading-spinner i {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.empty-icon {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
}

.empty-state p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.suggestion-text {
    margin-top: 8px;
    font-style: italic;
}

.popular-searches {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.popular-searches h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.popular-searches h3 i {
    color: #e31e24;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.search-tag {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tag:hover {
    background: linear-gradient(135deg, #e31e24, #c01a1f);
    color: white;
    border-color: #e31e24;
    transform: translateY(-2px);
}

.quick-categories {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quick-categories h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-categories h3 i {
    color: #e31e24;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.category-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    gap: 12px;
}

.category-quick-card:hover {
    background: linear-gradient(135deg, #e31e24, #c01a1f);
    color: white;
    border-color: #e31e24;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.2);
}

.category-quick-card i {
    font-size: 32px;
}

.category-quick-card span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .search-autocomplete {
        width: 320px;
    }

    .arama-header {
        padding: 24px;
    }

    .arama-title {
        font-size: 24px;
    }

    .search-box-container {
        flex-direction: column;
    }

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

    .result-card {
        flex-direction: column;
        text-align: center;
    }

    .result-image,
    .result-icon {
        width: 100px;
        height: 100px;
    }

    .result-meta {
        justify-content: center;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .autocomplete-dropdown {
        left: 20px;
        right: 20px;
    }
}

/* Autocomplete Thumbnail */
.autocomplete-thumbnail {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
}

.autocomplete-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
