﻿/* =========================
   ROOT & GENEL
========================= */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    padding-top: 70px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #111;
}

/* Bootstrap focus temizleme */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem #198754;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    letter-spacing: 0.5px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #111;
}

    .nav-link:hover {
        color: #198754;
    }

    /* Alt çizgi hover */
    .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        background-color: #198754;
        left: 0;
        bottom: 0;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 14px;
    padding: 10px 0;
}

.dropdown-item {
    font-size: 15px;
    padding: 8px 20px;
}

    .dropdown-item:hover {
        background: transparent;
        color: #198754;
    }


/* =========================
   SABİT TANITIM BUTONU
========================= */

.tanitim-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    background-color: #198754;
    color: #fff;
    padding: 14px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .tanitim-btn:hover {
        background-color: #157347;
        transform: translateY(-3px);
    }

    .tanitim-btn::after {
        content: "";
        position: absolute;
        right: 18px;
        bottom: -8px;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid #198754;
    }

/* =========================
   ÜRÜN KARTI
========================= */

.product-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 15px;
}

.product-card {
    position: relative;
    background: #fff;
    max-width: 520px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    text-align: center;
    padding: 90px 35px 40px;
}

.product-image {
    position: absolute;
    top: -110px; /* biraz daha yukarı */
    left: 50%;
    transform: translateX(-50%);
    width: 220px; /* RESİM BÜYÜDÜ */
}


/* Fiyat animasyonu */
.product-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: priceFadeUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes priceFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-stock {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    margin-bottom: 24px;
}

.stock-dot {
    width: 10px;
    height: 10px;
    background-color: #198754;
    border-radius: 50%;
}

.product-cta {
    display: block;
    background-color: #198754;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

    .product-cta:hover {
        background-color: #157347;
        transform: translateY(-2px);
    }

.product-subtitle {
    color: #198754;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-description {
    font-size: 15px;
    line-height: 1.6;
}

/* =========================
   TM7 BÖLÜMÜ
========================= */

.tm7-section {
    padding: 80px 15px;
}

.tm7-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.tm7-text h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tm7-lead {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.tm7-features {
    list-style: none;
    padding: 0;
}

    .tm7-features li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 12px;
    }

        .tm7-features li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #198754;
            font-weight: 700;
        }

/* 🔥 TM7 ve Tanıtım görselleri – ORTAK HOVER */
.tm7-image img,
.tmx-image-wrapper img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

    .tm7-image img:hover,
    .tmx-image-wrapper img:hover {
        transform: scale(1.03);
    }

@media (max-width: 991px) {
    .tm7-container {
        flex-direction: column;
    }

    .tm7-text h1 {
        font-size: 30px;
    }
}

/* =========================
   TANITIM METİN BLOĞU
========================= */

.tmx-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tmx-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .tmx-title {
        font-size: 28px;
    }
}

/* =========================
   TM7 DETAY BÖLÜMLERİ
========================= */

.tm7-detail-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 15px;
}

.tm7-detail-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.tm7-detail-text {
    flex: 1;
}

    /* 🔥 YEŞİL BAŞLIK + SOL ÇİZGİ */
    .tm7-detail-text h2 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 16px;
        color: #198754; /* Thermomix yeşili */
        position: relative;
        padding-left: 14px;
        transition: color 0.3s ease;
    }

        /* Sol ince çizgi */
        .tm7-detail-text h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            width: 4px;
            height: calc(100% - 8px);
            background-color: #198754;
            border-radius: 2px;
        }

        /* Hover'da biraz koyulaşsın */
        .tm7-detail-text h2:hover {
            color: #157347;
        }

    .tm7-detail-text p {
        font-size: 17px;
        line-height: 1.7;
        color: #444;
    }

.tm7-detail-image {
    flex: 1;
}

    .tm7-detail-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s ease;
    }

        .tm7-detail-image img:hover {
            transform: scale(1.03);
        }

/* MOBİL */
@media (max-width: 991px) {
    .tm7-detail-row {
        flex-direction: column;
        margin-bottom: 80px;
    }

    .tm7-detail-text h2 {
        font-size: 26px;
        padding-left: 12px;
    }
}
/* YEŞİL BAŞLIKLAR */
.tm7-text h1,
.tmx-title {
    color: #198754; /* Thermomix yeşili */
}

.tm7-video-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.tm7-video {
    width: 50%; /* ⬅️ BURASI videoyu küçültür */
    max-width: 800px; /* Masaüstünde fazla büyümesin */
    height: auto;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.page-center {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* tam orta değil */
    padding-top: 120px; /* biraz aşağıda */
    background: linear-gradient(180deg, #f7f8fa, #ffffff);
}

.form-container {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 36px 32px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    text-align: center;
}

    .form-container h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
    }

.form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

    .form-group input {
        width: 100%;
        padding: 15px 16px;
        font-size: 16px;
        border-radius: 14px;
        border: 1px solid #ddd;
        transition: all 0.3s ease;
    }

        .form-group input:focus {
            border-color: #2ecc71;
            box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.15);
            outline: none;
        }

button {
    width: 100%;
    padding: 15px;
    margin-top: 8px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(39, 174, 96, 0.35);
    }

.success {
    margin-top: 20px;
    padding: 12px;
    background: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border-radius: 12px;
    font-weight: 600;
}

.error {
    margin-top: 20px;
    padding: 12px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border-radius: 12px;
    font-weight: 600;
}

/* Mobil uyum */
@media (max-width: 480px) {
    .page-center {
        padding-top: 80px;
    }

    .form-container {
        padding: 28px 22px;
    }
}

/* Navbar hover ile dropdown açılması */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


/* ==============================
   SOL SABİT SOSYAL BUTONLAR
============================== */

.social-fixed {
    position: fixed;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .social-btn:hover {
        transform: scale(1.12);
        box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    }

    /* WhatsApp */
    .social-btn.whatsapp {
        background-color: #25D366;
    }

    /* Instagram */
    .social-btn.instagram {
        background: linear-gradient( 45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888 );
    }

/* Mobilde biraz küçült */
@media (max-width: 768px) {
    .social-btn {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}


.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    aspect-ratio: 16 / 9;
}

    .video-wrapper iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }


.video-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px 0;
}

    .video-center iframe {
        width: 100%;
        max-width: 900px;
        aspect-ratio: 16 / 9;
        border-radius: 14px;
    }
.siparis-steps-modern {
    max-width: 820px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #198754, #28a745);
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.step-line {
    width: 2px;
    flex-grow: 1;
    background: #e0e0e0;
    margin-top: 6px;
}

.step-item:last-child .step-line {
    display: none;
}

.step-content h5 {
    margin-bottom: 6px;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}
/* Aksesuarlar */

.aksesuar-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: auto;
}

.aksesuar-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

    .aksesuar-card img {
        max-width: 100%;
        border-radius: 12px;
        transition: transform 0.4s ease;
    }

    .aksesuar-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

        .aksesuar-card:hover img {
            transform: scale(1.05);
        }

.aksesuar-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #198754; /* Bootstrap yeşili */
}





.kampanya-baslik {
    color: #198754; /* Bootstrap yeşili */
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}

    /* Alt çizgi efekti */
    .kampanya-baslik::after {
        content: "";
        display: block;
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, #198754, #28a745);
        margin: 10px auto 0;
        border-radius: 10px;
    }

.kampanya-resim {
    max-width: 600px; /* ← burayı değiştirerek büyüt/küçült */
    width: 100%;
}
