    /* Reset ve Genel Stiller */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
    }

    /* Tüm resimlerin responsive olması için */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        min-height: 100vh;
        background: url('../images/hero-bg.png') no-repeat center center;
        background-size: cover;
        overflow: hidden;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    /* Background Circle */
    .bg-circle {
        position: absolute;
        width: 1200px;
        height: 1200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(240, 232, 232, 0.3) 100%);
        top: -300px;
        right: -300px;
        z-index: 1;
    }

    /* Container */
    .container {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        z-index: 2;
        width: 100%;
        /* Mobil uyumluluk için */
    }

    /* Header */
    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 80px 0;
    }

    .logo img {
        height: 55px;
        width: auto;
    }

    /* Header Right Container */
    .header-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Navigation */
    .nav {
        display: block;

    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 20px;
        position: relative;
        margin: 0;
        padding: 0;
        left: 280px;
    }

    .nav-link {
        text-decoration: none;
        color: #6B1E1E;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: opacity 0.3s ease;
        position: relative;
    }

    .nav-link:hover {
        opacity: 0.7;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #6B1E1E;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

    /* Social Icons */
    .header-social-icons {
        display: flex;
        gap: 15px;
        position: relative;
        bottom: 70px;
        left: 85px;
        /* left: 85px; Removed to fix overflow */
    }

    .header-social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: transparent;
        border: 2px solid #6B1E1E;
        transition: all 0.3s ease;
    }

    .header-social-link:hover {
        background-color: #6B1E1E;
        transform: translateY(-2px);
    }

    .header-social-link svg {
        width: 16px;
        height: 16px;
        fill: #6B1E1E;
        transition: all 0.3s ease;
    }

    .header-social-link:hover svg {
        fill: #ffffff;
    }

    /* Search Box */
    .search-box {
        position: relative;
        display: flex;
        align-items: center;
    }

    .search-input {
        font-size: 14px;
        width: 200px;
        height: 32px;
        transition: all 0.3s ease;
        background-color: #ffffff;
        padding: 0;
        margin: 0;
        outline: 2px solid #6B1E1E;
        position: relative;
        bottom: 70px;
        left: 110px;
    }

    .search-input:focus {
        width: 240px;
        box-shadow: 0 5px 8px #6B1E1E;
        outline: 2px solid #6B1E1E;
    }

    .search-input::placeholder {
        color: #999;
    }

    .search-icon-svg {
        position: absolute;
        width: 16px;
        height: 16px;
        stroke: #6B1E1E;
        pointer-events: none;
        position: relative;
        bottom: 70px;
        left: 80px;

    }

    /* Mobil Menü Butonu - Yeni Tasarım */
    .mobile-menu-btn {
        display: none;
        background: transparent;
        border: 2px solid #6B1E1E;
        border-radius: 8px;
        padding: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1001;
        position: relative;
    }

    .mobile-menu-btn:hover {
        background: #6B1E1E;
    }

    .mobile-menu-btn:hover svg {
        stroke: #ffffff;
    }

    .mobile-menu-btn.active {
        background: #6B1E1E;
    }

    .mobile-menu-btn.active svg {
        stroke: #ffffff;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Mobile Menu Overlay - Yukarıdan Açılan Menü */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #6B1E1E 0%, #8B2E2E 100%);
        z-index: 9999;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        overflow-y: auto;
    }

    .mobile-menu-overlay.is-active {
        transform: translateY(0);
    }

    .mobile-menu-container {
        padding: 2rem 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-logo img {
        height: 50px;
        width: auto;
        filter: brightness(0) invert(1);
    }

    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        padding: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .mobile-menu-close svg {
        stroke: #ffffff;
    }

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 3rem;
    }

    .mobile-menu-link {
        display: block;
        padding: 1.25rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .mobile-menu-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .mobile-menu-link:hover::before {
        left: 100%;
    }

    .mobile-menu-link:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-link:active {
        transform: translateY(0);
    }

    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-social-link {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .mobile-social-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .mobile-social-link svg {
        width: 24px;
        height: 24px;
        fill: #ffffff;
    }

    /* Hero Content */
    .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 80px;
        margin-bottom: 0;
        gap: 80px;
    }

    /* Hero Text */
    .hero-text {
        flex: 1;
        max-width: 600px;
    }

    .hero-title {
        font-size: 64px;
        font-weight: 700;
        line-height: 1.2;
        color: #8B2828;
        margin-bottom: 50px;
        letter-spacing: -1px;
    }

    .title-light {
        font-weight: 400;
    }

    /* CTA Button */
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 18px 50px;
        background-color: transparent;
        border: 2px solid #6B1E1E;
        border-radius: 50px;
        color: #6B1E1E;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 2px;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .cta-button:hover {
        background-color: #6B1E1E;
        color: #ffffff;
    }

    .cta-button:hover svg path {
        stroke: #ffffff;
    }

    .cta-button svg {
        transition: all 0.3s ease;
    }

    /* Hero Image */
    .hero-image {
        flex: 1;
        position: relative;
        z-index: 3;
        max-width: 100%;
        /* Mobil taşma önleme */
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
        /* Mobil taşma önleme */
        object-fit: contain;
        animation: floatAnimation 3s ease-in-out infinite;
    }

    /* Float Animation */
    @keyframes floatAnimation {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* Company Profile Section */
    .company-profile-section {
        width: 100%;
        margin-top: 40px;
        padding: 40px 0 10px;
    }

    .company-profile-inner {
        display: flex;
        gap: 60px;
        align-items: stretch;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 32px;
        border: 1px solid rgba(107, 30, 30, 0.08);
        padding: 48px 56px;
        box-shadow: 0 30px 80px rgba(107, 30, 30, 0.08);
    }

    .company-profile-copy {
        flex: 1.2;
    }

    .company-profile-eyebrow {
        color: #B75050;
        font-size: 14px;
        letter-spacing: 4px;
        font-weight: 600;
        margin-bottom: 18px;
    }

    .company-profile-title {
        font-size: 48px;
        color: #6B1E1E;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .company-profile-description {
        font-size: 18px;
        line-height: 1.8;
        color: #4D1A1A;
        margin-bottom: 30px;
    }

    .company-profile-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }

    .company-profile-highlights {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .company-profile-highlight {
        background: #fff7f7;
        border: 1px solid rgba(183, 80, 80, 0.2);
        border-radius: 20px;
        padding: 24px;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .company-profile-highlight-index {
        font-size: 20px;
        font-weight: 700;
        color: #B75050;
        min-width: 36px;
    }

    .company-profile-highlight-text {
        font-size: 16px;
        line-height: 1.7;
        color: #4D1A1A;
    }

    /* Company Profile Page */
    .company-profile-page-hero {
        display: flex;
        gap: 60px;
        margin-top: 80px;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
    }

    .company-profile-page-copy {
        flex: 1.2;
        max-width: 1000px;
    }

    .company-profile-page-title {
        font-size: 56px;
        line-height: 1.15;
        color: #6B1E1E;
        margin-bottom: 24px;
    }

    .company-profile-page-description {
        font-size: 18px;
        color: #4D1A1A;
        line-height: 1.8;
        margin-bottom: 30px;
        text-align: justify;
    }

    .company-profile-page-description p {
        margin-bottom: 1rem;
        text-align: justify;
    }

    .company-profile-page-cta {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .company-profile-page-cta-button {
        background-color: #6B1E1E;
        color: #ffffff;
        margin-bottom: 80px;
    }

    .company-profile-page-cta-button:hover {
        background-color: #8B2828;
        color: #ffffff;
    }

    .company-profile-page-note {
        font-size: 16px;
        color: #8B2828;
    }

    .company-profile-page-stats {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .company-profile-stat-card {
        background: #fff;
        border: 1px solid rgba(107, 30, 30, 0.1);
        border-radius: 20px;
        padding: 28px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .company-profile-stat-eyebrow {
        font-size: 12px;
        letter-spacing: 4px;
        color: #B75050;
    }

    .company-profile-stat-card h3 {
        font-size: 22px;
        color: #6B1E1E;
    }

    .company-profile-details {
        background: #fff5f5;
        padding: 120px 0;
    }

    .company-profile-details-header {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 60px;
    }

    .company-profile-details-header h2 {
        font-size: 42px;
        color: #6B1E1E;
        margin-bottom: 12px;
    }

    .company-profile-details-header p {
        color: #4D1A1A;
        line-height: 1.8;
        font-size: 18px;
    }

    .company-profile-details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .company-profile-detail-card {
        background: #ffffff;
        border-radius: 24px;
        border: 1px solid rgba(107, 30, 30, 0.1);
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .company-profile-detail-card-header h3 {
        font-size: 24px;
        color: #6B1E1E;
        margin-top: 8px;
    }

    .company-profile-detail-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0;
        margin: 0;
    }

    .company-profile-detail-list li h4 {
        font-size: 18px;
        color: #8B2828;
        margin-bottom: 6px;
    }

    .company-profile-detail-list li p {
        color: #4D1A1A;
        line-height: 1.6;
    }

    .company-profile-cta {
        padding: 100px 0;
    }

    .company-profile-cta-inner {
        background: #6B1E1E;
        color: #ffffff;
        border-radius: 28px;
        padding: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .company-profile-cta-inner h2 {
        font-size: 40px;
        margin: 12px 0;
    }

    .company-profile-cta-inner p {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
    }

    .company-profile-cta-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        min-width: 220px;
    }

    .company-profile-cta-actions .cta-button {
        border-color: #ffffff;
        color: #6B1E1E;
        background: #ffffff;
    }

    .company-profile-cta-link {
        color: #ffffff;
        text-decoration: underline;
        font-weight: 600;
    }

    /* About Section */
    .about-section {
        position: relative;
        min-height: 100vh;
        background: url('../images/about-bg.png') no-repeat center center;
        background-size: contain;
        display: flex;
        align-items: center;
        padding: 0;
        margin-top: -120px;
    }

    .about-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 100px;
    }

    /* About Text */
    .about-text {
        flex: 0 0 30%;
        position: relative;
        top: -40px;
        max-width: 500px;
    }

    .about-title {
        font-size: 72px;
        font-weight: 700;
        color: #6B1E1E;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    .about-description {
        font-size: 18px;
        line-height: 1.8;
        color: #6B1E1E;
        margin-bottom: 45px;
        font-weight: 400;
    }

    /* About Button */
    .about-button {
        display: inline-block;
        padding: 16px 55px;
        background-color: transparent;
        border: 2px solid #6B1E1E;
        border-radius: 8px;
        color: #6B1E1E;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .about-button:hover {
        background-color: #6B1E1E;
        color: #ffffff;
    }

    /* About Card */
    .about-card {
        flex: 1;
        /* Responsive genişlik */
        max-width: 100%;
        /* Taşma önleme */
        background-color: #ffffff;
        border-radius: 20px;
        position: relative;
        left: 50px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        min-height: 450px;
    }

    /* Products Section */
    .products-section {
        min-height: 100vh;
        background-color: #ffffff;
        padding: 80px 0 100px 0;
        display: flex;
        align-items: center;
    }

    .products-title {
        font-size: 72px;
        font-weight: 700;
        color: #6B1E1E;
        text-align: center;
        margin-bottom: 60px;
        letter-spacing: 2px;
    }


    /* Products Grid */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 40px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        justify-items: center;
        /* Kartları ortala */
    }

    .category-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.6rem 1.4rem;
        border-radius: 999px;
        border: 2px solid var(--chip-color, #6B1E1E);
        color: var(--chip-color, #6B1E1E);
        font-weight: 600;
        background: transparent;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .category-pill:hover {
        background: rgba(107, 30, 30, 0.08);
    }

    .category-pill.is-active {
        background: var(--chip-color, #6B1E1E);
        color: #ffffff;
    }

    /* Product Card */
    .product-card {
        background-color: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        width: 100%;
        /* Responsive genişlik */
        max-width: 250px;
        /* Maksimum genişlik */
        flex-direction: column;
        position: relative;
    }

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(107, 30, 30, 0.2);
    }

    /* Product Image */
    .product-image {
        width: 100%;
        height: 220px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f8f8f8;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .product-card:hover .product-image img {
        transform: scale(1.05);
    }

    /* Product Info */
    .product-info {
        padding: 20px;
        background-color: #6B1E1E;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
    }

    .product-name {
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
        margin: 0;
        letter-spacing: 0.5px;
    }

    .product-link {
        font-size: 14px;
        color: #ffffff;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-weight: 500;
        transition: all 0.3s ease;
        opacity: 0.9;
    }

    .product-link:hover {
        opacity: 1;
        gap: 8px;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .container {
            padding: 0 40px;
        }

        .hero-title {
            font-size: 60px;
        }

        .hero-content {
            gap: 50px;
        }

        /* Products Grid Responsive */
        .products-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .products-title {
            font-size: 60px;
        }

        .company-profile-inner {
            padding: 40px;
            gap: 40px;
        }

        .company-profile-title {
            font-size: 42px;
        }

        .company-profile-page-hero {
            gap: 40px;
        }

        .company-profile-page-title {
            font-size: 48px;
        }

        .company-profile-cta-inner {
            padding: 50px;
        }

        /* Footer Laptop */
        .footer-section {
            overflow: visible;
        }
    }

    @media (max-width: 992px) {
        .nav-menu {
            gap: 30px;
        }

        .nav-link {
            font-size: 14px;
        }

        .search-input {
            width: 180px;
        }

        .search-input:focus {
            width: 220px;
        }

        .hero-content {
            flex-direction: column;
            margin-top: 50px;
            text-align: center;
        }

        .hero-text {
            max-width: 100%;
        }

        .hero-title {
            font-size: 50px;
        }

        .hero-image {
            max-width: 600px;
        }

        .company-profile-inner {
            flex-direction: column;
            padding: 36px;
        }

        .company-profile-highlights {
            width: 100%;
        }

        .company-profile-title {
            font-size: 38px;
        }

        .company-profile-page-hero {
            flex-direction: column;
            margin-top: 50px;
            text-align: center;
        }

        .company-profile-page-copy {
            text-align: center;
        }

        .company-profile-page-title {
            font-size: 42px;
        }

        .company-profile-page-cta {
            justify-content: center;
            flex-direction: column;
        }

        .company-profile-page-stats {
            width: 100%;
        }

        .company-profile-cta-inner {
            flex-direction: column;
            text-align: center;
        }

        .company-profile-cta-actions {
            width: 100%;
            align-items: center;
        }

        /* About Section Responsive */
        .about-content {
            flex-direction: column;
            gap: 50px;
        }

        .about-text {
            max-width: 100%;
            text-align: center;
        }

        .about-title {
            font-size: 56px;
        }

        .about-card {
            max-width: 100%;
            min-height: 400px;
        }

        /* Products Grid Tablet */
        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .products-title {
            font-size: 48px;
            margin-bottom: 50px;
        }

        .product-image {
            height: 200px;
        }

        /* Blog Section Tablet */
        .blog-section {
            padding: 70px 0;
        }

        .blog-title {
            font-size: 38px !important;
            margin-bottom: 50px;
        }

        .blog-slider-wrapper {
            gap: 30px;
        }

        .blog-slider-btn {
            width: 55px;
            height: 55px;
        }

        .blog-card {
            min-width: calc(50% - 15px);
        }

        .blog-card-image {
            height: 300px;
        }

        .blog-card-content {
            padding: 28px;
        }

        .blog-card-title {

            font-size: 21px;

            /* Enforce equal blog card visual size */
            .blog-card {
                display: flex;
                flex-direction: column;
                height: 100% !important;
            }

            .blog-card-image {
                height: 300px !important;
                min-height: 300px !important;
                max-height: 300px !important;
                overflow: hidden !important;
            }

            .blog-card-image img {
                width: 100% !important;
                height: 100% !important;
                object-fit: cover !important;
                display: block !important;
            }

            .blog-card-content {
                flex: 1 1 auto !important;
            }

            /* Stronger enforcement for slider: force equal card heights */
            .blog-slider .blog-card {
                height: 520px !important;
            }

            .blog-slider .blog-card .blog-card-image {
                height: 320px !important;
                min-height: 320px !important;
                max-height: 320px !important;
            }

            @media (max-width: 1024px) {
                .blog-slider .blog-card {
                    height: 480px !important;
                }

                .blog-slider .blog-card .blog-card-image {
                    height: 300px !important;
                }
            }

            @media (max-width: 768px) {
                .blog-slider .blog-card {
                    height: auto !important;
                }

                .blog-slider .blog-card .blog-card-image {
                    height: 350px !important;
                }
            }
        }

        /* Contact Section Tablet */
        .contact-section {
            padding: 70px 0;
        }

        .contact-content {
            flex-direction: column;
            gap: 60px;
        }

        .contact-form-wrapper,
        .contact-map-wrapper {
            max-width: 100%;
            width: 100%;
            position: static;
            right: 0;
        }

        .contact-title {
            font-size: 38px !important;
            margin-bottom: 50px;
            right: 0;
            text-align: center !important;
        }

        .contact-map-wrapper {
            height: 450px;
        }

        .contact-map {
            height: 100%;
        }

        /* Footer Tablet */
        .footer-section {
            overflow: visible;
        }

        .footer-content {
            gap: 60px;
            padding: 0 40px;
        }

        .footer-columns {
            gap: 60px;
            padding-left: 40px;
            flex-wrap: wrap;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 25px;
            /* Mobil padding */
        }

        .header {
            padding: 20px 0;
        }

        .company-profile-inner {
            padding: 28px;
            gap: 24px;
        }

        .company-profile-title {
            font-size: 32px;
        }

        .company-profile-description {
            font-size: 16px;
        }

        .company-profile-highlight {
            flex-direction: column;
            padding: 20px;
        }

        .company-profile-page-title {
            font-size: 34px;
        }

        .company-profile-page-hero {
            margin-top: 30px;
        }

        .company-profile-details {
            padding: 80px 0;
        }

        .company-profile-cta-inner {
            padding: 40px;
        }

        /* Mobil Menü Butonu Göster */
        .mobile-menu-btn {
            display: block;
        }

        /* Desktop Navigation - Mobilde gizle */
        .nav {
            display: none;
        }

        /* Search Box - Mobilde gizle */
        .search-box {
            display: none;
        }

        .hero-content {
            flex-direction: column;
            margin-top: 40px;
            gap: 40px;
        }

        .hero-title {
            font-size: 40px;
            line-height: 1.3;
        }

        .cta-button {
            padding: 15px 40px;
            font-size: 14px;
        }

        .bg-circle {
            width: 800px;
            height: 800px;
            top: -200px;
            right: -200px;
        }

        /* About Section Mobile */
        .about-content {
            flex-direction: column;
            gap: 50px;
        }

        .about-text {
            flex: 1;
            max-width: 100%;
            top: 0;
        }

        .about-title {
            font-size: 42px;
        }

        .about-description {
            font-size: 16px;
        }

        .about-button {
            padding: 14px 45px;
            font-size: 16px;
        }

        .about-card {
            min-height: 350px;
            left: 0;
            /* Mobilde left position kaldır */
            width: 100%;
        }

        /* Products Grid Mobile */
        .products-section {
            padding: 60px 0 80px 0;
        }

        .products-title {
            font-size: 38px;
            margin-bottom: 40px;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .product-image {
            height: 160px;
        }

        .product-info {
            padding: 15px;
        }

        .product-name {
            font-size: 16px;
        }

        .product-link {
            font-size: 12px;
        }

        /* Blog Section Mobile */
        .blog-section {
            padding: 60px 0;
        }

        .blog-title {
            font-size: 38px !important;
            margin-bottom: 40px;
        }

        .blog-slider-wrapper {
            position: relative;
            gap: 0;
            padding: 0;
        }

        .blog-slider-container {
            width: 100%;
            overflow: hidden;
            padding: 0;
        }

        .blog-slider {
            display: flex;
            flex-direction: row;
            gap: 20px;
            padding: 0 10px;
            transition: transform 0.4s ease-in-out;
        }

        .blog-card {
            min-width: calc(100% - 20px);
            max-width: calc(100% - 20px);
            flex: 0 0 calc(100% - 20px);
            margin: 0;
        }

        .blog-card-image {
            height: 350px;
            width: 100%;
        }

        .blog-card-content {
            padding: 28px;
        }

        .blog-card-title {
            font-size: 20px;
        }

        .blog-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            z-index: 10;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .blog-slider-prev {
            left: 10px;
        }

        .blog-slider-next {
            right: 10px;
        }

        .blog-slider-btn svg {
            width: 24px;
            height: 24px;
        }

        /* Contact Section Mobile */
        .contact-section {
            padding: 50px 0;
        }

        .contact-content {
            flex-direction: column;
            gap: 40px;
        }

        .contact-form-wrapper {
            max-width: 100%;
            min-width: auto;
            width: 100%;
            right: 0;
            position: static;
        }

        .contact-map-wrapper {
            max-width: 100%;
            min-width: auto;
            width: 100%;
            right: 0;
            position: static;
            height: 350px;
        }

        .contact-title {
            font-size: 38px !important;
            margin-bottom: 35px;
            right: 0;
            text-align: center !important;
        }

        .form-row {
            flex-direction: column;
            gap: 0;
            width: 100%;
        }

        .form-group {
            width: 100%;
            max-width: 100%;
        }

        .form-group-full {
            width: 100%;
            max-width: 100%;
        }

        .form-label {
            font-size: 15px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 14px;
            font-size: 14px;
            box-sizing: border-box;
        }

        .contact-map {
            height: 100%;
        }

        .contact-submit-button {
            width: 100%;
            padding: 14px;
            font-size: 16px;
        }

        /* Footer Tablet */
        .footer-section {
            overflow: visible;
        }

        .footer-content {
            gap: 50px;
            padding: 0 40px;
            flex-direction: column;
            align-items: center;
        }

        .footer-columns {
            gap: 50px;
            padding-left: 0;
            width: 100%;
            justify-content: center;
        }

        .footer-logo-section {
            flex: 0 0 auto;
            align-items: center;
        }

        .footer-logo {
            width: 220px;
            margin: 0 auto;
        }

        .footer-column {
            align-items: center;
            text-align: center;
        }

        .footer-column-title {
            font-size: 20px;
            text-align: center;
        }

        .footer-links {
            align-items: center;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            text-align: center;
            padding: 0;
        }

        .footer-links li a {
            font-size: 14px;
            text-align: center;
            padding: 0 !important;
        }

        .footer-contact {
            align-items: center;
            padding: 0;
            margin: 0;
        }

        .footer-contact-item {
            font-size: 14px;
            justify-content: center;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .container {
            padding: 0 20px;
        }

        /* Mobil menü küçük ekranlarda */
        .nav-menu {
            padding: 80px 20px 40px;
        }

        .nav-link {
            font-size: 18px;
            padding: 16px 25px;
        }

        .logo img {
            height: 45px;
        }

        .company-profile-inner {
            padding: 22px;
        }

        .company-profile-title {
            font-size: 28px;
        }

        .company-profile-highlight {
            padding: 18px;
        }

        .company-profile-page-title {
            font-size: 30px;
        }

        .company-profile-cta-inner {
            padding: 30px;
        }

        .hero-title {
            font-size: 32px;
        }

        /* Mobil menü genişliğini küçült */
        .nav {
            width: 260px;
            padding: 70px 25px 25px;
        }

        .nav-link {
            font-size: 16px;
            padding: 15px 0;
        }

        .search-input:focus {
            width: 180px;
        }

        .cta-button {
            padding: 12px 30px;
            font-size: 13px;
        }

        /* About Section Small Mobile */
        .about-section {
            padding: 60px 0;
        }

        .about-content {
            flex-direction: column;
            gap: 30px;
        }

        .about-title {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .about-description {
            font-size: 15px;
            margin-bottom: 35px;
        }

        .about-button {
            padding: 12px 35px;
            font-size: 15px;
        }

        .about-card {
            min-height: 300px;
        }

        .about-content {
            gap: 40px;
        }

        /* Products Grid Small Mobile */
        .products-section {
            padding: 50px 0 70px 0;
        }

        .products-title {
            font-size: 32px;
            margin-bottom: 35px;
        }

        .products-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .product-image {
            height: 200px;
        }

        .product-info {
            padding: 18px;
        }

        .product-name {
            font-size: 18px;
        }

        .product-link {
            font-size: 13px;
        }

        /* Blog Section Small Mobile */
        .blog-section {
            padding: 50px 0;
        }

        .blog-title {
            font-size: 32px !important;
            margin-bottom: 35px;
        }

        .blog-slider-wrapper {
            position: relative;
        }

        .blog-slider {
            padding: 0 5px;
        }

        .blog-card {
            min-width: calc(100% - 10px);
            max-width: calc(100% - 10px);
            flex: 0 0 calc(100% - 10px);
        }

        .blog-card-image {
            height: 300px;
        }

        .blog-card-content {
            padding: 22px;
        }

        .blog-card-title {
            font-size: 18px;
        }

        .blog-slider-btn {
            width: 45px;
            height: 45px;
        }

        .blog-slider-prev {
            left: 5px;
        }

        .blog-slider-next {
            right: 5px;
        }

        .blog-slider-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Contact Section Small Mobile */
        .contact-section {
            padding: 40px 0;
        }

        .contact-content {
            flex-direction: column;
            gap: 30px;
        }

        .contact-form-wrapper,
        .contact-map-wrapper {
            width: 100%;
            position: static;
            right: 0;
        }

        .contact-map-wrapper {
            height: 350px;
            position: relative;
            top: 160px;
        }

        .contact-map {
            height: 100%;
        }

        .contact-title {
            font-size: 32px !important;
            margin-bottom: 30px;
            text-align: center !important;
            right: 0;
        }

        .contact-form {
            gap: 20px;
        }

        .form-row {
            flex-direction: column;
            gap: 0;
        }

        .form-group {
            width: 100%;
        }

        .form-group-full {
            width: 100%;
        }

        .form-label {
            font-size: 14px;
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 10px 12px;
            font-size: 14px;
            box-sizing: border-box;
        }

        .form-textarea {
            min-height: 120px;
        }

        .contact-submit-button {
            width: 100%;
            padding: 13px;
            font-size: 15px;
        }

        /* Footer Mobile */
        .footer-section {
            padding: 50px 0;
            min-height: auto;
            overflow: visible;
        }

        .footer-content {
            flex-direction: column;
            gap: 40px;
            padding: 0 20px;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .footer-logo-section {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 50%;
        }

        .footer-logo {
            width: 160px;
            margin: 70px 0px 0px 0;
        }

        .footer-social-icons {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .footer-social-link svg {
            width: 28px;
            height: 28px;
        }

        .footer-columns {
            flex-direction: column;
            gap: 35px;
            padding-left: 0;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            max-width: 100%;
        }

        .footer-column-title {
            font-size: 18px;
            text-align: center;
            margin-bottom: 15px;
        }

        .footer-links {
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .footer-links li {
            text-align: center;
            width: 100%;
            padding: 0;
            margin: 0;
        }

        .footer-links li a {
            font-size: 13px;
            text-align: center;
            padding: 0 !important;
            margin: 0;
            display: inline-block;
        }

        .footer-contact {
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .footer-contact-item {
            font-size: 12px;
            justify-content: center;
            text-align: center;
            max-width: 100%;
            width: 100%;
            flex-direction: column;
            gap: 8px;
            padding: 0;
            margin: 0 auto;
        }

        .footer-contact-item svg {
            margin: 0 auto;
        }

        .footer-contact-item span {
            text-align: center;
            display: block;
            margin: 0 auto;
        }
    }

    /* Blog Section */
    .blog-section {
        min-height: 100vh;
        background: url('../images/blog-bg.png') no-repeat center center;
        background-size: cover;
        padding: 80px 0;
        display: flex;
        align-items: center;
    }

    .blog-title {
        font-size: 72px;
        font-weight: 700;
        color: #6B1E1E;
        text-align: center;
        margin-bottom: 60px;
        letter-spacing: 2px;
    }

    /* Blog Slider */
    .blog-slider-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .blog-slider-container {
        overflow: hidden;
        flex: 1;
    }

    .blog-slider {
        display: flex;
        gap: 30px;
        transition: transform 0.5s ease;
    }

    /* Blog Card */
    .blog-card {
        min-width: calc(33.333% - 20px);
        background-color: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(107, 30, 30, 0.25);
    }

    .blog-card-image {
        width: 100%;
        height: 350px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
    }

    .blog-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .blog-card:hover .blog-card-image img {
        transform: scale(1.05);
    }

    .blog-card-content {
        padding: 30px;
        background: linear-gradient(135deg, #6B1E1E 0%, #8B2828 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .blog-card-title {
        font-size: 22px;
        font-weight: 400;
        color: #ffffff;
        margin: 0;
        letter-spacing: 0.5px;
        text-align: center;
    }

    .blog-card-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.45rem 1.4rem;
        border-radius: 999px;
        background: #ffffff;
        color: #6B1E1E;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-size: 0.9rem;
        border: 1px solid rgba(107, 30, 30, 0.2);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* Blog Slider Buttons */
    .blog-slider-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 2px solid #6B1E1E;
        color: #6B1E1E;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .blog-slider-btn:hover {
        background-color: #6B1E1E;
        color: #ffffff;
        transform: scale(1.1);
    }

    .blog-slider-btn:active {
        transform: scale(0.95);
    }

    .blog-slider-btn svg {
        pointer-events: none;
    }

    /* Contact Section */
    .contact-section {
        min-height: 100vh;
        background: url('../images/contact-bg.png') no-repeat center center;
        background-size: cover;
        padding: 80px 0;
        display: flex;
        align-items: center;
    }

    .contact-title {
        font-size: 72px;
        font-weight: 700;
        color: #6B1E1E;
        text-align: left;
        margin-bottom: 60px;
        letter-spacing: 1px;
        position: relative;
    }

    /* Contact Content */
    .contact-content {
        display: flex;
        gap: 80px;
        align-items: flex-start;
    }

    /* Contact Form */
    .contact-form-wrapper {
        flex: 1;
        max-width: 100%;
        position: relative;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .form-row {
        display: flex;
        gap: 30px;
    }

    .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-group-full {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .form-label {
        font-size: 18px;
        font-weight: 400;
        color: #6B1E1E;
        margin: 0;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 16px;
        font-family: inherit;
        outline: none;
        transition: all 0.3s ease;
        background-color: #ffffff;
        color: #333;
        box-sizing: border-box;
    }

    .form-input:focus,
    .form-textarea:focus {
        border-color: #6B1E1E;
        box-shadow: 0 0 0 3px rgba(107, 30, 30, 0.1);
    }

    .form-textarea {
        resize: vertical;
        min-height: 150px;
    }

    /* Contact Submit Button */
    .contact-submit-button {
        align-self: flex-start;
        padding: 16px 60px;
        background-color: #6B1E1E;
        border: 2px solid #6B1E1E;
        border-radius: 8px;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-top: 15px;
    }

    .contact-submit-button:hover {
        background-color: transparent;
        color: #6B1E1E;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(107, 30, 30, 0.2);
    }

    /* Contact Map */
    .contact-map-wrapper {
        flex: 0 0 auto;
        width: 500px;
        height: 500px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border: 3px solid #ffffff;
        position: relative;
    }

    .contact-map {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    /* Responsive iframe wrapper for mobile */
    @media (max-width: 768px) {
        .contact-map-wrapper {
            width: 100%;
            height: 0;
            padding-bottom: 75%;
            /* 4:3 aspect ratio */
            position: relative;
            right: 0;
        }

        .contact-map {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    }

    /* Footer Section */
    .footer-section {
        position: relative;
        min-height: 500px;
        background: url('../images/footer-bg.png') no-repeat center center;
        background-size: cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 120px 0 20px 0;
    }

    .footer-content {
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 80px;
        width: 100%;
        z-index: 2;
    }

    /* Footer Logo Section */
    .footer-logo-section {
        flex: 0 0 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-bottom: 140px;
    }

    .footer-logo {
        width: 200px;
        height: auto;
        position: relative;
        top: 15px;
    }

    .footer-social-icons {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .footer-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        opacity: 0.9;
    }

    .footer-social-link:hover {
        opacity: 1;
        transform: translateY(-3px);
    }

    .footer-social-link svg {
        width: 32px;
        height: 32px;
    }

    /* Footer Columns */
    .footer-columns {
        display: flex;
        gap: 80px;
        flex: 1;
        justify-content: flex-start;
        padding-left: 60px;
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .footer-column-title {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        padding: 0;
        margin: 0;
    }

    .footer-links li a {
        color: #ffffff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        transition: all 0.3s ease;
        opacity: 0.9;
        display: block;
    }

    .footer-links li a:hover {
        opacity: 1;
        padding-left: 5px;
    }

    /* Footer Contact */
    .footer-contact {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0;
        margin: 0;
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #ffffff;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.6;
        padding: 0;
        margin: 0;
    }

    .footer-contact-item svg {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .footer-contact-item span {
        opacity: 0.9;
    }

    /* Product Detail Page */
    .product-detail {
        padding: 2rem 0 3rem;
    }

    /* Mobile Footer Centering */
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            align-items: center;
            gap: 50px;
            padding: 40px 24px;
            /* daha dar yatay boşluk */
        }

        .footer-columns {
            flex-direction: column;
            align-items: center;
            gap: 40px;
            padding-left: 0;
            /* soldaki kaymayı kaldır */
        }

        .footer-logo-section {
            align-items: center;
            text-align: center;
            position: relative;
            top: 170px;
        }

        .footer-column {
            align-items: center;
        }

        .footer-column-title,
        .footer-links,
        .footer-links li,
        .footer-links li a {
            text-align: center;
        }
    }

    .product-detail-card {
        max-width: 1100px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 20px;
        padding: clamp(1.5rem, 3vw, 3rem);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    }

    .product-detail-grid {
        display: grid;
        grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
        gap: clamp(1.5rem, 4vw, 3rem);
        align-items: flex-start;
    }

    .product-detail-media {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
    }

    .product-detail-image {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        display: block;
        border-radius: 18px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .product-detail-placeholder {
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 18px;
        background: #f3f3f3;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-weight: 600;
    }

    .product-detail-info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        color: #1f1f1f;
    }

    .product-detail-heading h1 {
        font-size: clamp(1.9rem, 4vw, 2.6rem);
        color: #6B1E1E;
        margin-top: 0.5rem;
    }

    .product-detail-category {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        padding: 0.35rem 0.9rem;
        border-radius: 999px;
        background: #fff4f4;
        color: #6B1E1E;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .product-detail-price {
        font-size: clamp(2rem, 3vw, 2.8rem);
        font-weight: 700;
        color: #6B1E1E;
        margin-top: 0.5rem;
    }

    .product-detail-stock-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem 1.5rem;
        border-radius: 14px;
        font-weight: 600;
        border: 1px solid rgba(162, 58, 58, 0.3);
    }

    .product-detail-stock-chip.is-out {
        background: #fff2f2;
        color: #a23a3a;
    }

    .product-detail-stock-text {
        font-weight: 600;
        color: #4a4a4a;
    }

    .product-detail-stock-text.is-out {
        color: #a23a3a;
    }

    .product-detail-description {
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        line-height: 1.8;
        color: #4a4a4a;
    }

    .product-detail-description h3 {
        color: #333;
        margin-bottom: 0.85rem;
    }

    .product-detail-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .product-detail-primary,
    .product-detail-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .product-detail-primary {
        background: #6B1E1E;
        color: #ffffff;
        box-shadow: 0 12px 30px rgba(107, 30, 30, 0.25);
    }

    .product-detail-secondary {
        background: #f4f4f4;
        color: #333;
    }

    .product-detail-primary:hover,
    .product-detail-secondary:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 992px) {
        .product-detail-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .product-detail {
            padding-top: 1rem;
        }

        .product-detail-media {
            order: -1;
        }

        .product-detail-actions {
            flex-direction: column;
        }

        .product-detail-primary,
        .product-detail-secondary {
            width: 100%;
        }
    }

    /* Blog Detail Hero */
    .blog-detail-hero {
        display: flex;
        gap: clamp(2rem, 5vw, 4rem);
        align-items: flex-start;
        margin-top: 60px;
        color: #6B1E1E;
        flex-wrap: wrap;
    }

    .blog-detail-hero-text {
        flex: 1 1 360px;
        max-width: 720px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .blog-detail-back {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        color: #6B1E1E;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .blog-detail-eyebrow {
        letter-spacing: 4px;
        color: #a05a5a;
        font-size: 0.9rem;
        margin: 0;
    }

    .blog-detail-category-pill {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 1.1rem;
        border-radius: 999px;
        background: #fff4f4;
        color: #6B1E1E;
        font-weight: 600;
        width: fit-content;
    }

    .blog-detail-title {
        font-size: clamp(2.2rem, 4vw, 3.6rem);
        line-height: 1.15;
        margin: 0;
    }

    .blog-detail-lede {
        color: #7b4c4c;
        font-size: 1.05rem;
        line-height: 1.8;
        margin: 0;
    }

    .blog-detail-meta-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .meta-chip {
        padding: 0.35rem 1rem;
        border-radius: 999px;
        background: #fcebea;
        border: 1px solid #f4d4cf;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .blog-detail-hero-media {
        flex: 1 1 320px;
        display: flex;
        justify-content: center;
    }

    .blog-detail-hero-image {
        width: 100%;
        border-radius: 28px;
        overflow: hidden;
        border: 1px solid #f4d4cf;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    }

    .blog-detail-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        aspect-ratio: 4 / 3;
    }

    .blog-detail-hero-fallback {
        width: 100%;
        border-radius: 28px;
        border: 1px dashed #f4d4cf;
        padding: 2.5rem;
        text-align: center;
        color: #a05a5a;
        font-weight: 600;
    }

    @media (max-width: 992px) {
        .blog-detail-hero {
            flex-direction: column;
        }

        .blog-detail-hero-media,
        .blog-detail-hero-text {
            width: 100%;
        }
    }

    /* Blog Detail Section */
    .blog-detail-section {
        background-color: #ffffff;
        padding: 80px 0;
        min-height: 100vh;
        position: relative;
        z-index: 1;
    }

    .blog-detail-article {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .blog-detail-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .blog-detail-title {
        font-size: 48px;
        font-weight: 700;
        color: #6B1E1E;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .blog-detail-meta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font-size: 16px;
        color: #999;
    }

    .blog-detail-date,
    .blog-detail-author {
        position: relative;
    }

    .blog-detail-date::after {
        content: '•';
        position: absolute;
        right: -12px;
        color: #999;
    }

    .blog-detail-image {
        width: 100%;
        height: 500px;
        overflow: hidden;
        border-radius: 12px;
        margin-bottom: 50px;
    }

    .blog-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-detail-content {
        font-size: 18px;
        line-height: 1.8;
        color: #333;
    }

    .blog-detail-content p {
        margin-bottom: 25px;
    }

    .blog-detail-content h2 {
        font-size: 32px;
        font-weight: 700;
        color: #6B1E1E;
        margin: 40px 0 25px 0;
    }

    /* Blog Detail Responsive */
    @media (max-width: 768px) {
        .blog-detail-section {
            padding: 60px 0;
        }

        .blog-detail-title {
            font-size: 32px;
        }

        .blog-detail-meta {
            font-size: 14px;
            gap: 15px;
        }

        .blog-detail-image {
            height: 300px;
            margin-bottom: 35px;
        }

        .blog-detail-content {
            font-size: 16px;
        }

        .blog-detail-content h2 {
            font-size: 24px;
            margin: 30px 0 20px 0;
        }

        .blog-detail-content p {
            margin-bottom: 20px;
        }
    }

    @media (max-width: 480px) {
        .blog-detail-title {
            font-size: 28px;
        }

        .blog-detail-image {
            height: 220px;
        }

        .blog-detail-content {
            font-size: 15px;
        }

        .blog-detail-content h2 {
            font-size: 22px;
        }
    }

    /* ============================================
   FOOTER COPYRIGHT - RESIMLI IMZA
   ============================================
   Kullanım: 
   1. Bu CSS dosyasını projenize ekleyin
   2. HTML'e aşağıdaki kodu ekleyin:
   
   <div class="footer-copyright">
       <p>© 2025</br>
           <a href="https://forse.web.tr" target="_blank" rel="noopener noreferrer">
               <img src="LOGO_YOLUNUZ" alt="Forse Web" loading="lazy">
           </a>
       </p>
   </div>
   
   Not: Logo yolunu kendi proje yapınıza göre düzenleyin
   ============================================ */

    /* Footer Copyright - Ana Stiller */
    .footer-copyright {
        position: relative;
        z-index: 1;
        margin-top: 30px;
        padding: 15px 0 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        width: 100%;
    }

    .footer-copyright p {
        font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
        font-size: 16px;
        color: #ffffff;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .footer-copyright a {
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
        margin: 0;
        padding: 0;
    }

    /* Logo Stili - Varsayılan olarak beyaz (dark background için) */
    .footer-copyright a img {
        height: 18px;
        width: auto;
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
        margin: 0;
    }

    /* Hover Efektleri */
    .footer-copyright a:hover img {
        filter: brightness(1) invert(0);
        transform: scale(1.1) translateY(-2px);
    }

    /* Alt Çizgi Animasyonu */
    .footer-copyright a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #FFD700;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .footer-copyright a:hover::after {
        width: 100%;
    }

    /* ============================================
   RESPONSIVE DESIGN
   ============================================ */

    /* Tablet (1024px ve altı) */
    @media screen and (max-width: 1024px) {
        .footer-copyright {
            margin-top: 50px;
            padding-top: 25px;
        }

        .footer-copyright p {
            font-size: 15px;
        }

        .footer-copyright a img {
            height: 22px;
        }
    }

    /* Mobile (768px ve altı) */
    @media screen and (max-width: 768px) {
        .footer-copyright {
            margin-top: 40px;
            padding-top: 20px;
        }

        .footer-copyright p {
            font-size: 14px;
        }

        .footer-copyright a img {
            height: 20px;
        }
    }

    /* Small Mobile (480px ve altı) */
    @media screen and (max-width: 480px) {
        .footer-copyright {
            margin-top: 35px;
            padding-top: 18px;
        }

        .footer-copyright p {
            font-size: 13px;
            gap: 6px;
        }

        .footer-copyright a img {
            height: 18px;
        }
    }

    /* ============================================
   ÖZELLEŞTIRME SEÇENEKLERİ
   ============================================
   
   Açık (Light) Footer için:
   .footer-copyright {
       border-top: 1px solid rgba(0, 0, 0, 0.1);
   }
   .footer-copyright p {
       color: #333333;
   }
   .footer-copyright a img {
       filter: none; (Logoyu olduğu gibi göster)
   }
        }

        .blog-detail-meta {
            font-size: 14px;
            gap: 15px;
        }

        .blog-detail-image {
            height: 300px;
            margin-bottom: 35px;
        }

        .blog-detail-content {
            font-size: 16px;
        }

        .blog-detail-content h2 {
            font-size: 24px;
            margin: 30px 0 20px 0;
        }

        .blog-detail-content p {
            margin-bottom: 20px;
        }
    }

    @media (max-width: 480px) {
        .blog-detail-title {
            font-size: 28px;
        }

        .blog-detail-image {
            height: 220px;
        }

        .blog-detail-content {
            font-size: 15px;
        }

        .blog-detail-content h2 {
            font-size: 22px;
        }
    }

    /* ============================================
   FOOTER COPYRIGHT - RESIMLI IMZA
   ============================================
   Kullanım: 
   1. Bu CSS dosyasını projenize ekleyin
   2. HTML'e aşağıdaki kodu ekleyin:
   
   <div class="footer-copyright">
       <p>© 2025</br>
           <a href="https://forse.web.tr" target="_blank" rel="noopener noreferrer">
               <img src="LOGO_YOLUNUZ" alt="Forse Web" loading="lazy">
           </a>
       </p>
   </div>
   
   Not: Logo yolunu kendi proje yapınıza göre düzenleyin
   ============================================ */

    /* Footer Copyright - Ana Stiller */
    .footer-copyright {
        position: relative;
        z-index: 1;
        margin-top: 30px;
        padding: 15px 0 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        width: 100%;
    }

    .footer-copyright p {
        font-family: 'Bahnschrift SemiCondensed', 'Arial Narrow', Arial, sans-serif;
        font-size: 16px;
        color: #ffffff;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-wrap: wrap;
    }

    .footer-copyright a {
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        position: relative;
        margin: 0;
        padding: 0;
    }

    /* Logo Stili - Varsayılan olarak beyaz (dark background için) */
    .footer-copyright a img {
        height: 18px;
        width: auto;
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
        margin: 0;
    }

    /* Hover Efektleri */
    .footer-copyright a:hover img {
        filter: brightness(1) invert(0);
        transform: scale(1.1) translateY(-2px);
    }

    /* Alt Çizgi Animasyonu */
    .footer-copyright a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #FFD700;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .footer-copyright a:hover::after {
        width: 100%;
    }

    /* ============================================
   RESPONSIVE DESIGN
   ============================================ */

    /* Tablet (1024px ve altı) */
    @media screen and (max-width: 1024px) {
        .footer-copyright {
            margin-top: 50px;
            padding-top: 25px;
        }

        .footer-copyright p {
            font-size: 15px;
        }

        .footer-copyright a img {
            height: 22px;
        }
    }

    /* Mobile (768px ve altı) */
    @media screen and (max-width: 768px) {
        .footer-copyright {
            margin-top: 40px;
            padding-top: 20px;
        }

        .footer-copyright p {
            font-size: 14px;
        }

        .footer-copyright a img {
            height: 20px;
        }
    }

    /* Small Mobile (480px ve altı) */
    @media screen and (max-width: 480px) {
        .footer-copyright {
            margin-top: 35px;
            padding-top: 18px;
        }

        .footer-copyright p {
            font-size: 13px;
            gap: 6px;
        }

        .footer-copyright a img {
            height: 18px;
        }
    }

    /* ============================================
   ÖZELLEŞTIRME SEÇENEKLERİ
   ============================================
   
   Açık (Light) Footer için:
   .footer-copyright {
       border-top: 1px solid rgba(0, 0, 0, 0.1);
   }
   .footer-copyright p {
       color: #333333;
   }
   .footer-copyright a img {
       filter: none; (Logoyu olduğu gibi göster)
   }
   .footer-copyright a:hover img {
       filter: brightness(0.8);
   }
   
   Farklı Hover Rengi için:
   .footer-copyright a::after {
       background-color: #YOUR_COLOR;
   }
   
   ============================================ */

    /* Mega Menu */
    .has-dropdown {
        position: relative;
    }

    .mega-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 1000px;
        max-width: 90vw;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        border-top: 4px solid #6B1E1E;
    }

    .has-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    .mega-menu-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 60px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .mega-menu-category {
        display: flex;
        flex-direction: column;
    }

    .mega-menu-item {
        color: #4D1A1A;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        padding: 10px;
        transition: all 0.2s ease;
        text-transform: uppercase;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mega-menu-item:hover {
        color: #6B1E1E;
        background: rgba(107, 30, 30, 0.05);
        border-radius: 8px;
        padding-left: 15px;
    }

    .mega-menu-item.has-children::after {
        content: '▼';
        font-size: 10px;
        transition: transform 0.3s;
    }

    .mega-menu-item.has-children.expanded::after {
        transform: rotate(180deg);
    }

    .mega-menu-subcategories {
        display: none;
        flex-direction: column;
        padding-left: 15px;
        margin-top: 5px;
    }

    .mega-menu-subcategories.expanded {
        display: flex;
    }

    .mega-menu-subitem {
        color: #555;
        text-decoration: none;
        font-size: 14px;
        padding: 6px 10px;
        transition: color 0.2s;
        display: block;
    }

    .mega-menu-subitem:hover {
        color: #6B1E1E;
        text-decoration: underline;
    }

/* Category Sidebar */
.category-sidebar {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    align-self: flex-start;
}

.category-sidebar-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #6B1E1E;
}

.category-sidebar-header h3 {
    font-size: 1.3rem;
    color: #6B1E1E;
    margin: 0;
}

.category-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-sidebar-item {
    border-radius: 8px;
    transition: background 0.2s;
}

.category-sidebar-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
}

.category-sidebar-link a {
    flex: 1;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.category-sidebar-link:hover {
    background: rgba(107, 30, 30, 0.05);
    border-radius: 8px;
}

.category-sidebar-item.active > .category-sidebar-link {
    background: #6B1E1E;
    border-radius: 8px;
}

.category-sidebar-item.active > .category-sidebar-link a {
    color: #fff;
    font-weight: 600;
}

.category-toggle {
    color: #6B1E1E;
    transition: transform 0.3s;
    cursor: pointer;
    padding: 0.25rem;
}

.category-sidebar-item.expanded .category-toggle {
    transform: rotate(180deg);
}

.category-sidebar-children {
    padding-left: 1rem;
    margin-top: 0.5rem;
    display: none;
}

.category-sidebar-child {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.category-sidebar-child:hover {
    background: rgba(107, 30, 30, 0.05);
    color: #6B1E1E;
    padding-left: 1rem;
}

.category-sidebar-child.active {
    background: rgba(107, 30, 30, 0.1);
    color: #6B1E1E;
    font-weight: 600;
}

/* Update products grid to 4 columns */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-with-sidebar {
        flex-direction: column;
    }
    
    .category-sidebar {
        width: 100%;
        position: static;
        max-height: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
