﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(180deg, #f8f5f6 0%, #ffffff 45%, #f7f7f8 100%);
    color: #1f2937;
    line-height: 1.5;
}

/* COLORS */
:root {
    --brand-red: #8b1226;
    --brand-red-dark: #5f0b18;
    --brand-red-soft: #f4e6e9;
    --brand-black: #151515;
    --brand-gray: #6b7280;
    --border: #e5e7eb;
    --white: #ffffff;
}

/* HEADER */
.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(139, 18, 38, 0.13);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.07);
}

.top-line {
    height: 5px;
    background: linear-gradient(90deg, var(--brand-red-dark), var(--brand-red), #b21f38, var(--brand-red-dark));
}

.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    min-height: 92px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* LOGO */
.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

    .logo-area img {
        max-height: 68px;
        width: auto;
        display: block;
        filter: drop-shadow(0 8px 12px rgba(139, 18, 38, 0.16));
    }

/* NAVIGATION */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

    .nav-list > li {
        position: relative;
    }

        .nav-list > li > a {
            display: block;
            padding: 13px 18px;
            color: #1f2937;
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            border-radius: 999px;
            transition: all 0.22s ease;
        }

            .nav-list > li > a:hover {
                background: var(--brand-red-soft);
                color: var(--brand-red);
            }

/* DROPDOWN */
.dropdown-toggle::after {
    content: "▾";
    font-size: 11px;
    margin-left: 8px;
    color: var(--brand-red);
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 520px;
    padding-top: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: all 0.22s ease;
    z-index: 9999;
}

.dropdown:hover .dropdown-panel,
.dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* ÜRÜNLER MENÜSÜ */
.dropdown-menu {
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(139, 18, 38, 0.14);
    border-radius: 22px;
    box-shadow: 0 26px 65px rgba(15, 23, 42, 0.18);
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: hidden;
}

    .dropdown-menu li {
        border: none;
    }

        .dropdown-menu li a {
            display: flex;
            align-items: center;
            min-height: 48px;
            padding: 13px 15px;
            color: #374151;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border-radius: 15px;
            background: #fafafa;
            border: 1px solid #f0f0f0;
            transition: all 0.2s ease;
        }

            .dropdown-menu li a::before {
                content: "";
                width: 8px;
                height: 8px;
                margin-right: 10px;
                border-radius: 50%;
                background: var(--brand-red);
                box-shadow: 0 0 0 4px rgba(139, 18, 38, 0.10);
                flex-shrink: 0;
            }

            .dropdown-menu li a:hover {
                background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
                color: #ffffff;
                border-color: var(--brand-red);
            }

/* ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* SEARCH */
.search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(139, 18, 38, 0.18);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.search-input {
    width: 180px;
    border: none;
    outline: none;
    background: transparent;
    padding: 11px 15px;
    font-size: 14px;
    color: #111827;
}

    .search-input::placeholder {
        color: #9ca3af;
    }

.search-button {
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: #ffffff;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.2s ease;
}

    .search-button:hover {
        background: linear-gradient(135deg, #a1162e, var(--brand-red-dark));
    }

/* LOGIN */
.login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    background: var(--brand-black);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    transition: all 0.2s ease;
}

    .login-button:hover {
        background: var(--brand-red);
    }

/* MAIN */
.site-main {
    max-width: 1320px;
    margin: 0 auto;
    padding: 38px 32px;
    min-height: calc(100vh - 180px);
}

/* BUTTONS */
.up-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.up-btn-red {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(139, 18, 38, 0.24);
}

    .up-btn-red:hover {
        transform: translateY(-2px);
    }

.up-btn-dark {
    background: #151515;
    color: #ffffff;
}

    .up-btn-dark:hover {
        background: var(--brand-red);
        transform: translateY(-2px);
    }

.up-btn-white {
    background: #ffffff;
    color: var(--brand-red);
}

    .up-btn-white:hover {
        background: #f8e7eb;
    }

/* HERO SIMPLE */
.up-hero-simple {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 42px;
    padding: 34px 0 58px;
}

.up-hero-simple-text {
    position: relative;
    z-index: 2;
}

.up-eyebrow,
.up-section-title span,
.up-info-left span,
.up-cta-simple span {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

.up-hero-simple h1 {
    max-width: 680px;
    margin-bottom: 20px;
    color: #151515;
    font-size: clamp(46px, 6vw, 78px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -2.4px;
}

.up-hero-simple p {
    max-width: 690px;
    margin-bottom: 28px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.75;
}

.up-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.up-hero-product {
    background: #050505;
    border-radius: 32px;
    padding: 34px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(139, 18, 38, 0.16);
}

    .up-hero-product img {
        width: 100%;
        height: 390px;
        object-fit: contain;
        display: block;
    }

/* SECTIONS */
.up-section {
    padding: 62px 0;
}

.up-section-title {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

    .up-section-title h2,
    .up-info-left h2,
    .up-cta-simple h2 {
        margin-bottom: 16px;
        color: #151515;
        font-size: clamp(30px, 4vw, 46px);
        line-height: 1.12;
        font-weight: 950;
        letter-spacing: -1.2px;
    }

    .up-section-title p,
    .up-info-left p,
    .up-cta-simple p {
        color: #5b6472;
        font-size: 16px;
        line-height: 1.76;
    }

/* PRODUCT SHOWCASE */
.up-product-showcase {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.up-showcase-card {
    background: #ffffff;
    border: 1px solid rgba(139, 18, 38, 0.12);
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.09);
    transition: all 0.25s ease;
}

    .up-showcase-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 64px rgba(15, 23, 42, 0.15);
    }

.up-showcase-image {
    height: 270px;
    background: #050505;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .up-showcase-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
    }

.up-showcase-card:nth-child(2) .up-showcase-image {
    background: #ffffff;
}

.up-showcase-content {
    padding: 26px;
}

    .up-showcase-content span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-bottom: 16px;
        border-radius: 15px;
        background: var(--brand-red-soft);
        color: var(--brand-red);
        font-size: 14px;
        font-weight: 950;
    }

    .up-showcase-content h3 {
        margin-bottom: 10px;
        color: #151515;
        font-size: 22px;
        line-height: 1.25;
        font-weight: 950;
    }

    .up-showcase-content p {
        color: #5b6472;
        font-size: 15px;
        line-height: 1.65;
    }

/* INFO BAND */
.up-info-band {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    margin: 46px 0;
    padding: 42px;
    border-radius: 34px;
    background: #ffffff;
    border: 1px solid rgba(139, 18, 38, 0.12);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.up-info-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

    .up-info-list div {
        padding: 22px;
        border-radius: 22px;
        background: #fafafa;
        border: 1px solid #eeeeee;
    }

    .up-info-list strong {
        display: block;
        margin-bottom: 6px;
        color: var(--brand-red);
        font-size: 18px;
        font-weight: 950;
    }

    .up-info-list span {
        color: #6b7280;
        font-size: 14px;
        font-weight: 700;
    }

/* PRODUCT FEATURES */
.up-product-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.up-product-item {
    display: flex;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(139, 18, 38, 0.12);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    transition: all 0.25s ease;
}

    .up-product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 26px 56px rgba(15, 23, 42, 0.13);
    }

.up-product-no {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.up-product-item h3 {
    margin-bottom: 8px;
    color: #151515;
    font-size: 19px;
    line-height: 1.28;
    font-weight: 950;
}

.up-product-item p {
    color: #5b6472;
    font-size: 14px;
    line-height: 1.65;
}

/* LOCAL SEO */
.up-local-seo {
    padding: 62px 0;
}

.up-local-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

    .up-local-grid div {
        background: #ffffff;
        border: 1px solid rgba(139, 18, 38, 0.12);
        border-radius: 28px;
        padding: 30px;
        box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
    }

    .up-local-grid h3 {
        margin-bottom: 12px;
        color: #151515;
        font-size: 21px;
        line-height: 1.28;
        font-weight: 950;
    }

    .up-local-grid p {
        color: #5b6472;
        font-size: 15px;
        line-height: 1.7;
    }

/* CTA SIMPLE */
.up-cta-simple {
    margin: 62px 0 28px;
    padding: 42px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(139, 18, 38, 0.97), rgba(95, 11, 24, 0.98));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 26px 64px rgba(139, 18, 38, 0.26);
}

    .up-cta-simple span {
        background: rgba(255, 255, 255, 0.14);
        color: #ffffff;
    }

    .up-cta-simple h2 {
        color: #ffffff;
        max-width: 720px;
    }

    .up-cta-simple p {
        color: rgba(255, 255, 255, 0.84);
        max-width: 760px;
    }

    .up-cta-simple .up-btn {
        flex-shrink: 0;
    }

/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #151515 0%, #25050b 48%, #5f0b18 100%);
    color: #e5e7eb;
    text-align: center;
    padding: 28px 16px;
    font-size: 14px;
}

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .footer-inner strong {
        color: #ffffff;
        font-size: 15px;
    }

    .footer-inner span {
        color: #cbd5e1;
        font-size: 13px;
    }

/* RESPONSIVE */
@media (max-width: 1150px) {

    .up-product-showcase,
    .up-product-list,
    .up-local-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .up-info-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1000px) {

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px;
        gap: 18px;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .up-hero-simple {
        grid-template-columns: 1fr;
        padding-top: 20px;
    }

    .up-hero-product img {
        height: 320px;
    }

    .up-cta-simple {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MOBİL */
@media (max-width: 720px) {

    body {
        overflow-x: hidden;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 9999;
    }

    .site-main {
        padding: 30px 18px;
    }

    .header-inner {
        min-height: auto;
        padding: 16px 14px;
        gap: 14px;
    }

    .logo-area img {
        max-height: 54px;
    }

    .main-nav {
        width: 100%;
        overflow: visible;
    }

    .nav-list {
        width: 100%;
        gap: 5px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
    }

        .nav-list > li {
            position: relative;
        }

            .nav-list > li > a {
                padding: 10px 12px;
                font-size: 14px;
            }

    /* MOBİL ÜRÜNLER DROPDOWN DÜZELTME */
    .dropdown {
        position: static;
    }

    .dropdown-panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        width: 92vw;
        min-width: 0;
        max-width: 92vw;
        max-height: 58vh;
        padding-top: 10px;
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%);
        z-index: 99999;
    }

    .dropdown:hover .dropdown-panel,
    .dropdown:focus-within .dropdown-panel {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%);
    }

    .dropdown-menu {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-height: 55vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.99);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.20);
    }

        .dropdown-menu li a {
            min-height: 44px;
            padding: 11px 13px;
            font-size: 14px;
        }

    .dropdown-toggle {
        cursor: pointer;
    }

    .search-box,
    .header-actions,
    .login-button {
        width: 100%;
    }

    .search-input {
        width: 100%;
    }

    .up-hero-simple h1 {
        font-size: 48px;
        letter-spacing: -1.4px;
    }

    .up-hero-simple p {
        font-size: 16px;
    }

    .up-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .up-btn {
        width: 100%;
    }

    .up-product-showcase,
    .up-product-list,
    .up-local-grid,
    .up-info-list {
        grid-template-columns: 1fr;
    }

    .up-hero-product {
        padding: 20px;
        border-radius: 24px;
    }

        .up-hero-product img {
            height: 260px;
        }

    .up-showcase-image {
        height: 230px;
    }

    .up-section,
    .up-local-seo {
        padding: 44px 0;
    }

    .up-info-band,
    .up-cta-simple,
    .up-showcase-card,
    .up-product-item,
    .up-local-grid div {
        border-radius: 24px;
    }

    .up-info-band,
    .up-cta-simple {
        padding: 26px;
    }
}
