﻿/* --------------------------------------------------
   HUZUR AMBALAJ - STİL DOSYASI (style.css)
   Konsept: Sürdürülebilirlik (Derin Orman Yeşili) & Doğallık (Kraft Kahvesi)
-------------------------------------------------- */

/* 1. DEĞİŞKENLER & TASARIM SİSTEMİ */
:root {
    /* Renk Paleti */
    --primary: #2b2b2b;
    /* Koyu Gri / Antrasit */
    --primary-dark: #1a1a1a;
    --primary-light: #e6e6e6;
    --secondary: #7a7a7a;
    /* Gri / Gümüş */
    --secondary-dark: #4f4f4f;
    --secondary-light: #f2f2f2;
    --dark: #222222;
    /* Kömür Siyahı */
    --medium: #555555;
    /* Orta Derece Gri */
    --light-bg: #fcfbfa;
    /* Yumuşak Beyaz / Krem */
    --border: #eae6df;
    /* Açık Gri Kenarlık */
    --white: #ffffff;
    --success: #28a745;
    --error: #dc3545;

    /* Yazı Tipleri */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Gölgeler & Geçişler */
    --shadow-sm: 0 2px 8px rgba(28, 58, 39, 0.05);
    --shadow-md: 0 10px 30px rgba(28, 58, 39, 0.08);
    --shadow-lg: 0 20px 40px rgba(28, 58, 39, 0.12);
    --transition-fast: all 0.25s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --header-height-shrink: 70px;
}

/* 2. SIFIRLAMA & GENEL STİLLER */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    width: 0%;
    z-index: 1000;
    transition: width 0.1s ease-out;
}

/* 3. YARDIMCI SINIFLAR & BİLEŞENLER */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--secondary-dark);
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-bar {
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
    margin: 0 auto 24px auto;
    border-radius: 2px;
}

.section-desc {
    color: var(--medium);
    font-size: 1.1rem;
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
    border-radius: 6px;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(197, 168, 128, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* 4. NAVİGASYON VE HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 99;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

/* Sticky Header */
.main-header.sticky {
    height: var(--header-height-shrink);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.logo-icon img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo:hover .logo-icon {
    background-color: var(--secondary);
    color: var(--primary);
    transform: rotate(10deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--secondary-dark);
}

/* Sticky Logo Değişimi (Header transparan olduğunda beyaz, sticky olunca koyu olmasını sağlamak için) */
.main-header:not(.sticky) .logo-text {
    color: var(--white);
}

.main-header:not(.sticky) .logo-icon {
    background-color: var(--white);
    color: var(--primary);
}

/* Desktop Menü */
.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    position: relative;
    padding: 8px 0;
}

.main-header.sticky .nav-link {
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary);
}

.main-header.sticky .nav-link:hover,
.main-header.sticky .nav-link.active {
    color: var(--primary);
}

.main-header.sticky .nav-link.active::after {
    background-color: var(--primary);
}

/* Navigasyon İletişim Butonu */
.btn-nav {
    background-color: var(--secondary);
    color: var(--primary) !important;
    padding: 10px 20px !important;
    border-radius: 6px;
    font-weight: 700;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background-color: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.4);
}

.main-header.sticky .btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
}

.main-header.sticky .btn-nav:hover {
    background-color: var(--secondary);
    color: var(--primary) !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.main-header.sticky .mobile-menu-toggle .bar {
    background-color: var(--primary);
}

/* Active hamburger menu transformation */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 100;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    padding: 10px 0;
}

.mobile-nav-link:hover {
    color: var(--secondary-dark);
}

.mobile-btn-nav {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 36px;
    border-radius: 8px;
}

.mobile-btn-nav:hover {
    background-color: var(--secondary);
    color: var(--primary);
}


/* 5. HERO BÖLÜMÜ (ANASAYFA) */
.hero-section {
    position: relative;
    height: 20vh;
    min-height: 650px;
    background-image: url('Görsel/arka plann.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 54, 50, 0.95) 0%, rgba(18, 38, 26, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(165, 155, 141, 0.2);
    color: var(--secondary-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-top: 40px;
}

.hero-section h1 {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-section h1 .highlight {
    color: var(--secondary);
}

.hero-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin: -30px auto 0;
}

/* Scroll Down indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}


/* Stats wrapper for proper centering with overflow-x:hidden body */
.stats-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    box-sizing: border-box;
}

.stats-section {
    background-color: var(--white);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    width: 100%;
    max-width: 860px;
    border: 1px solid var(--border);
    box-sizing: border-box;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    text-align: center;
    padding: 0 30px;
    justify-items: center;
}

.stat-item {
    position: relative;
    text-align: center;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background-color: var(--border);
}

/* Sayı + artı işareti aynı satırda inline kalır */
.stat-number,
.stat-plus {
    display: inline;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--medium);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* 7. DEĞERLERİMİZ BÖLÜMÜ (NEDEN BİZ?) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.4);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background-color: var(--secondary);
    color: var(--primary);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--medium);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* =============================================
   8. ÜRÜNLER BÖLÜMÜ - TAM TASARIM SİSTEMİ
   ============================================= */

/* --- Filtre Buton Çubuğu --- */
.products-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background-color: var(--white);
    color: var(--medium);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, #2e5c3a 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(28, 58, 39, 0.25);
    transform: translateY(-2px);
}

.filter-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.filter-btn:hover i,
.filter-btn.active i {
    transform: scale(1.15);
}

/* Sonuç sayacı badge */
.filter-count-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    margin-left: 4px;
    line-height: 1.5;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
}

.filter-btn.active .filter-count-badge {
    opacity: 1;
    transform: scale(1);
}

/* --- Ürünler Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all 0.3s ease;
}

/* --- Ürün Kartı --- */
.product-card {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(28, 58, 39, 0.14);
    border-color: rgba(197, 168, 128, 0.5);
}

.product-card.hidden {
    display: none;
}

/* Kart kaybolma/belirme animasyonu */
.product-card.fade-out {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

/* --- Ürün Görsel Sarmalayıcı --- */
.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    flex-shrink: 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

/* Görsel Üzerine Koyu Overlay (hover'da beliren) */
.product-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(18, 38, 26, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover .product-img-wrapper::after {
    opacity: 1;
}

/* Hover'da beliren "Detayları Gör" ikonu */
.product-img-wrapper::before {
    content: '\f06e';
    /* Font Awesome eye icon unicode */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 10px));
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 1.4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    line-height: 54px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-card:hover .product-img-wrapper::before {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* --- Ürün Etiketi (Tag) --- */
.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #7e8580 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 3;
    letter-spacing: 0.4px;
    box-shadow: 0 3px 10px rgba(28, 58, 39, 0.3);
}

/* --- Ürün Bilgi Alanı --- */
.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--secondary-dark);
    display: block;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.product-card:hover .product-info h3 {
    color: #2e5c3a;
}

.product-info p {
    color: var(--medium);
    font-size: 0.9rem;
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* --- Ürün Meta Satırı (Gramaj + Buton) --- */
.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.weight-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--medium);
    background-color: var(--primary-light);
    padding: 5px 12px;
    border-radius: 50px;
}

.weight-info i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Detay Butonu */
.btn-product-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-product-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-product-detail:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-product-detail:hover {
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(197, 168, 128, 0.35);
    transform: translateY(-1px);
}

.btn-product-detail i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.btn-product-detail:hover i {
    transform: translateX(3px);
}

/* --- "Ürün Bulunamadı" Mesajı --- */
.products-empty-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--medium);
    display: none;
}

.products-empty-msg.visible {
    display: block;
}

.products-empty-msg i {
    font-size: 3rem;
    color: var(--border);
    display: block;
    margin-bottom: 16px;
}

.products-empty-msg p {
    font-size: 1rem;
}




/* 10. İLETİŞİM BÖLÜMÜ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

/* İletişim Bilgileri */
.contact-info-column h3,
.contact-form-column h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-column>p {
    color: var(--medium);
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-text p {
    color: var(--medium);
    font-size: 0.95rem;
}

.info-text a:hover {
    color: var(--primary);
}

/* Harita Alanı Tasarımı */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    border: 1px solid var(--border);
    position: relative;
}

/* Gerçek harita embed sarmalayıcısı */
.map-embed-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    filter: saturate(0.9) contrast(1.05);
}

/* Google Maps'te Aç butonu */
.map-open-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--white);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 7px 13px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid var(--border);
    z-index: 10;
}

.map-open-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.map-open-btn i {
    font-size: 0.7rem;
}

/* Eski placeholder stilleri (yedek) */
.interactive-map-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f0ede6;
    background-image: radial-gradient(#d3cebfa1 15%, transparent 16%);
    background-size: 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-marker {
    position: relative;
    color: var(--error);
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: marker-bounce 1.5s infinite alternate ease-in-out;
}

.map-marker .pulse {
    position: absolute;
    width: 20px;
    height: 8px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    animation: marker-pulse-shadow 1.5s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes marker-bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes marker-pulse-shadow {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translateX(-50%) scale(0.6);
        opacity: 0.1;
    }
}

.map-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
}

.map-sub {
    font-size: 0.8rem;
    color: var(--medium);
}


/* İletişim Formu */
.contact-form-column {
    background-color: var(--white);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-form-column>p {
    color: var(--medium);
    margin-bottom: 30px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: var(--error);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--medium);
    font-size: 1rem;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: var(--light-bg);
    color: var(--dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.input-wrapper textarea {
    resize: none;
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23555555' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

/* Textarea wrapper setup */
.textarea-wrapper i {
    top: 16px;
}

.textarea-wrapper textarea {
    padding-top: 14px;
}

/* Focus and Active States */
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(28, 58, 39, 0.08);
}

/* Validations */
.form-group.invalid .input-wrapper input,
.form-group.invalid .input-wrapper select,
.form-group.invalid .input-wrapper textarea {
    border-color: var(--error);
    background-color: #fff8f8;
}

.form-group.invalid .input-wrapper i {
    color: var(--error);
}

.error-msg {
    display: none;
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 6px;
    font-weight: 500;
}

.form-group.invalid .error-msg {
    display: block;
}

/* KVKK Checkbox */
.form-checkbox {
    margin-bottom: 24px;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--medium);
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-checkbox input {
    margin-top: 4px;
}

.kvkk-link {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.form-checkbox.invalid .error-msg {
    display: block;
}

/* Submit Button & Spinner */
.btn-submit {
    width: 100%;
}

.btn-spinner {
    display: none;
}

.submitting .btn-text {
    display: none;
}

.submitting .btn-spinner {
    display: inline-block;
}


/* 11. FOOTER (SAYFA ALTI) */
.main-footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.brand-col .logo {
    margin-bottom: 20px;
}

.brand-col .logo-text {
    color: var(--white);
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary);
    transition: transform 0.25s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-links a:hover i {
    transform: translateX(4px);
}

/* Newsletter Col */
.newsletter-col p {
    margin-bottom: 20px;
}

.newsletter-form .newsletter-wrapper {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border: none;
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-size: 0.9rem;
    border-radius: 8px 0 0 8px;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    background-color: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    background-color: var(--secondary);
    color: var(--primary-dark);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--white);
}

.newsletter-error {
    display: none;
    color: var(--secondary);
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 500;
}

.newsletter-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-policy-links {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-policy-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-policy-links a:hover {
    color: var(--secondary);
}


/* 12. ÜRÜN DETAY MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 38, 26, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--white);
    width: 100%;
    max-width: 860px;
    height: auto;
    max-height: calc(100vh - 48px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92) translateY(10px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background-color: var(--white);
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background-color: var(--primary);
    color: var(--white);
}

.modal-body-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    flex: 1;
    overflow: hidden;
    min-height: 380px;
}

.modal-img-column {
    background-color: #eae6df;
    overflow: hidden;
    position: relative;
}

/* === MODAL SLIDER === */
.modal-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #eae6df;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ok Butonları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition-fast);
    z-index: 5;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow-prev {
    left: 10px;
}

.slider-arrow-next {
    right: 10px;
}

/* Sayaç */
.slider-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 5;
    display: flex;
    align-items: center;
}

/* Nokta İndikatörleri */
.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.slider-dot.active {
    background-color: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.modal-info-column {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-info-column h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.modal-info-column>p {
    color: var(--medium);
    margin-bottom: 12px;
    font-size: 0.88rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-specs {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.product-specs h3 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-specs ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-specs li {
    font-size: 0.83rem;
    color: var(--medium);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.4;
}

.product-specs li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-dark);
    font-size: 0.68rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.modal-cta {
    display: none;
}

.modal-contact-btn {
    width: 100%;
}


/* 13. TOAST BİLDİRİMLERİ */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}

.toast {
    background-color: var(--white);
    color: var(--dark);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 5px solid var(--secondary);
    min-width: 320px;
    max-width: 450px;
    animation: toast-slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: var(--transition-smooth);
    position: relative;
}

.toast.toast-success {
    border-left-color: var(--success);
}

.toast.toast-error {
    border-left-color: var(--error);
}

.toast.toast-info {
    border-left-color: var(--secondary);
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-success .toast-icon {
    color: var(--success);
}

.toast-error .toast-icon {
    color: var(--error);
}

.toast-info .toast-icon {
    color: var(--secondary-dark);
}

.toast-message-wrapper h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--primary);
}

.toast-message-wrapper p {
    font-size: 0.85rem;
    color: var(--medium);
    line-height: 1.4;
}

.toast-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--medium);
    cursor: pointer;
    font-size: 0.9rem;
}

.toast-close-btn:hover {
    color: var(--dark);
}

.toast.hiding {
    animation: toast-slide-out 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toast-slide-in {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-slide-out {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}


/* 14. GÖSTER-GİZLE (FADE-IN REVEAL) SCROLL ANİMASYONLARI - DEVRE DIŞI */
.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: none;
}


/* 15. MOBİL DUYARLILIK (RESPONSIVE BREAKPOINTS) */

/* Laptop / Küçük Masaüstü (1024px altı) */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Tablet (768px altı) */
@media (max-width: 768px) {

    /* Mobil Menü Hamburger Gösterimi */
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-section {
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding-top: calc(var(--header-height) + 40px);
        padding-bottom: 80px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-badge {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .stats-wrapper {
        margin-top: -30px;
        padding: 0 15px;
    }

    .stats-section {
        padding: 30px 20px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-filter-bar {
        gap: 8px;
        margin-bottom: 36px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col h3::after {
        left: 0;
    }

    .modal-overlay {
        padding: 12px;
        align-items: center;
        padding-top: 12px;
    }

    .modal-card {
        max-height: calc(100vh - 24px);
        border-radius: 16px;
        overflow-y: auto;
    }

    .modal-body-content {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .modal-img-column {
        height: 240px;
        flex-shrink: 0;
    }

    /* Mobilde slider görselleri sığır, yaklaşmaz */
    .slider-slide img {
        object-fit: contain;
        background-color: #f0ede6;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .slider-dots {
        bottom: 8px;
        gap: 5px;
    }

    .slider-counter {
        top: 8px;
        right: 8px;
        font-size: 0.65rem;
        padding: 2px 7px;
    }

    .modal-info-column {
        padding: 20px 18px;
        max-height: none;
        overflow-y: visible;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-column {
        padding: 30px 20px;
    }
}

/* Küçük Mobil (480px altı) */
@media (max-width: 480px) {
    .products-filter-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .filter-btn {
        justify-content: center;
        padding: 9px 10px;
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-section h1 {
        font-size: 2.1rem;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 10px;
        gap: 4px;
        margin-top: 10px;
        margin-bottom: 15px;
        display: inline-flex;
        flex-wrap: wrap;
        white-space: normal;
        max-width: 100%;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none !important;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-policy-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Küçük ekranda modal görsel alanı daha kompakt */
    .modal-img-column {
        height: 190px;
    }

    .modal-info-column {
        padding: 16px 14px;
    }

    .modal-info-column h2 {
        font-size: 1.1rem;
    }

    .modal-info-column>p {
        font-size: 0.82rem;
        -webkit-line-clamp: 2;
    }

    .product-specs h3 {
        font-size: 0.75rem;
    }

    .product-specs li {
        font-size: 0.78rem;
    }
}

/* ===================================================
   WHATSAPP FLOATING BUTTON
   =================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.whatsapp-tooltip {
    position: absolute;
    right: 74px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.25s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a1a;
    border-right: none;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================================
   SSS (FAQ) SECTION
   =================================================== */
.faq-section {
    background-color: var(--white);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #b0b0b0;
    box-shadow: var(--shadow-md);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.25s ease, background 0.25s ease;
}

.faq-question:hover {
    color: var(--secondary-dark);
}

.faq-item.open .faq-question {
    color: var(--primary-dark);
    background: var(--secondary-light);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--secondary);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    color: var(--medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 18px 16px 18px;
        font-size: 0.88rem;
    }
}