/**
 * PlastDerm - Optimize Edilmiş Ana Stil Dosyası
 * 
 * @package PlastDerm
 * @version 2.0
 * 
 * İÇİNDEKİLER:
 * 1. Kök Değişkenler ve Tipografi
 * 2. Genel Yapı ve Düzen
 * 3. Üst Bar ve Navigasyon
 * 4. Hero Bölümü
 * 5. Ana Sayfa Bölümleri
 * 6. Hizmetler Sayfası
 * 7. Blog Sayfası (Yeni)
 * 8. Ürün Sayfası (Yeni)
 * 9. Galeri Sayfası (Yeni)
 * 10. İletişim Sayfası
 * 11. Footer
 * 12. Yardımcı Bileşenler
 * 13. Animasyonlar
 * 14. Medya Sorguları
 * 15. Tarayıcı Uyumluluğu Düzeltmeleri
 * 16. Baskı Stilleri
 */

/*--------------------------------------------------------------
1. Kök Değişkenler ve Tipografi
--------------------------------------------------------------*/
:root {
    /* Ana Renkler */
    --primary: #fb3099;
    --primary-light: #ff80b9;
    --primary-dark: #e22b5c;
    --secondary: #87cfde;
    --secondary-light: #b0e3ef;
    --secondary-dark: #5ba9b8;
    
    /* Nötr Renkler */
    --dark: #2d3142;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #dee2e6;
    --gray-dark: #495057;
    
    /* Tamamlayıcı Renkler */
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Gradyanlar */
    --gradient-primary: linear-gradient(to right, var(--primary), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--primary), var(--secondary-dark));
    --gradient-hero: linear-gradient(to right, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0.4));
    --gradient-topbar: linear-gradient(to right, #acafd2, #ed579a);
    
    /* Yuvarlatılmış Köşeler */
    --border-radius-sm: 5px;
    --border-radius: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 30px;
    --border-radius-circle: 50%;
    
    /* Gölgeler */
    --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.05);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 10px 20px rgba(251, 48, 153, 0.2);
    
    /* Geçiş Süreleri */
    --transition-fast: 0.2s;
    --transition: 0.3s;
    --transition-slow: 0.5s;
    
    /* Z-indeks Katmanları */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
    
    /* Konteynır Genişlikleri */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-xxl: 1320px;
    
    /* Kenar boşlukları */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 1rem;
    --spacing-4: 1.5rem;
    --spacing-5: 3rem;
    --spacing-6: 4.5rem;
    --spacing-7: 6rem;
    
    /* Metin büyüklükleri */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Font family grupları */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --font-accent: 'Playfair Display', serif;
}

/* Base Typography */
body {
    font-family: var(--font-secondary);
    color: #555;
    overflow-x: hidden;
    background-color: #fff;
    line-height: 1.6;
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    /* color: var(--dark); */
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-3xl);
}

h4 {
    font-size: var(--font-size-2xl);
}

h5 {
    font-size: var(--font-size-xl);
}

h6 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition);
}

a:hover, a:focus {
    color: var(--primary-dark);
    text-decoration: none;
}

strong, b {
    font-weight: 600;
}

.btn-link {
    text-decoration: none !important;
}

/*--------------------------------------------------------------
2. Genel Yapı ve Düzen
--------------------------------------------------------------*/
.section-spacing {
    padding: 100px 0;
}

.section-spacing-lg {
    padding: 120px 0;
}

.section-spacing-sm {
    padding: 70px 0;
}

.section-title-wrapper {
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}

.section-title {
    position: relative;
    font-size: var(--font-size-4xl);
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bg-light {
    background-color: var(--light);
}

.bg-primary {
    background-color: var(--primary);
    color: white;
}

.bg-secondary {
    background-color: var(--secondary);
    color: var(--dark);
}

.bg-dark {
    background-color: var(--dark);
    color: white;
}

.bg-gray {
    background-color: #f9f9fa;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary-dark) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-light {
    color: var(--light) !important;
}

.text-muted {
    color: var(--gray) !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: var(--container-sm);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: var(--container-md);
    }
}

@media (min-width: 992px) {
    .container {
        max-width: var(--container-lg);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: var(--container-xl);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: var(--container-xxl);
    }
}

/* Genel Grid Sistemini Optimize Edelim */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

/* Standart Düğme Stilleri */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 24px;
    font-size: var(--font-size-base);
    line-height: 1.5;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transition: all var(--transition-slow);
    z-index: -1;
}

.btn-primary:hover:before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary);
    padding: 8px 24px;
}

.btn-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: all var(--transition-slow);
    z-index: -1;
}

.btn-secondary:hover:before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.btn-sm {
    padding: 8px 20px;
    font-size: var(--font-size-sm);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Form Elementleri */
.form-control {
    height: 55px;
    border: 1px solid #e1e1e1;
    border-radius: var(--border-radius);
    padding: 0 20px;
    font-size: var(--font-size-base);
    transition: all var(--transition);
    width: 100%;
    color: var(--dark);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
    outline: none;
}

textarea.form-control {
    height: 150px;
    padding-top: 15px;
    resize: none;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-label {
    margin-bottom: 0;
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
}

/*--------------------------------------------------------------
3. Üst Bar ve Navigasyon
--------------------------------------------------------------*/
/* Top Bar */
.top-bar {
    background: var(--gradient-topbar);
    color: white;
    padding: 8px 0;
    font-size: var(--font-size-sm);
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: all var(--transition);
}

.top-bar a:hover {
    color: var(--light);
    opacity: 0.8;
}

.top-bar .social-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-circle);
    margin-left: 8px;
    transition: all var(--transition);
}

.top-bar .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.navbar-brand img {
    max-height: 60px;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 16px;
    position: relative;
    transition: all var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: static;
    width: auto;
    height: auto;
    background: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 15px 0;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    transition: all var(--transition);
    color: var(--gray);
    font-size: 0.95rem;
}

.navbar-nav .dropdown-item:hover, 
.navbar-nav .dropdown-item:focus, 
.navbar-nav .dropdown-item.active {
    background-color: rgba(251, 48, 153, 0.08);
    color: var(--primary);
    transform: translateX(5px);
}

.nav-btn {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-xl);
    padding: 10px 24px;
    font-weight: 500;
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transition: all var(--transition-slow);
    z-index: -1;
}

.nav-btn:hover:before {
    left: 0;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    color: white;
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/*--------------------------------------------------------------
4. Hero Bölümü
--------------------------------------------------------------*/
.hero-section {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: -1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 15px;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 1s 0.3s forwards;
}

.typed-text {
    color: var(--primary);
}

.hero-text {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeIn 1s 0.6s forwards;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s 0.9s forwards;
}

.hero-btn {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-xl);
    padding: 15px 35px;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
}

.hero-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-btn:hover:before {
    left: 0;
}

.hero-btn:hover {
    box-shadow: var(--shadow-primary);
    transform: translateY(-5px);
    color: white;
}

.hero-btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-xl);
    padding: 13px 35px;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition);
    margin-left: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    text-decoration: none;
}

.hero-btn-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    z-index: -1;
}

.hero-btn-secondary:hover:before {
    width: 100%;
}

.hero-btn-secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
}

/* İç Sayfa Hero - Daha Kısa ve Bilgi Amaçlı */
.page-hero {
    height: 40vh;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.page-hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding-right: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: white;
}

/*--------------------------------------------------------------
5. Ana Sayfa Bölümleri
--------------------------------------------------------------*/
/* Services Section */
.services-section {
    padding: var(--spacing-7) 0;
    background-color: #f9f9fa;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

.service-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: all var(--transition);
}

.service-card:hover .service-img::after {
    opacity: 1;
}

.service-content {
    padding: 30px;
    text-align: center;
    position: relative;
}

.service-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    transition: all var(--transition);
}

.service-card:hover .service-content h3 {
    color: var(--primary);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 500;
    transition: all var(--transition);
    text-decoration: none;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition);
}

.service-link:hover::after {
    width: 100%;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* About Section */
.about-section {
    padding: var(--spacing-7) 0;
    position: relative;
    overflow: hidden;
}

.about-img {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right bottom, rgba(251, 48, 153, 0.4), rgba(135, 207, 222, 0.4));
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.about-img:hover::before {
    opacity: 0.6;
}

.about-content {
    padding: 30px 0 30px 30px;
}

.about-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.about-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-dark);
}

.about-content p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--gray);
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: var(--font-size-lg);
    color: var(--gray);
}

.about-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-7) 0;
    background: linear-gradient(135deg, rgba(172, 175, 210, 0.95), rgba(237, 87, 154, 0.95));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px;
    transition: all var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    transition: all var(--transition);
}

.stat-item:hover .stat-icon {
    background-color: rgba(255, 255, 255, 0.4);
    transform: rotateY(180deg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.stat-text {
    font-size: var(--font-size-base);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Gallery */
.video-section {
    padding: var(--spacing-7) 0;
    background-color: #f9f9fa;
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: all var(--transition);
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.video-container:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(251, 48, 153, 0.8);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1;
    transition: all var(--transition);
}

.video-play:hover {
    background-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    opacity: 0.8;
    transition: opacity var(--transition);
}

.video-container:hover .video-overlay {
    opacity: 0.5;
}

.video-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-weight: 600;
    font-size: var(--font-size-lg);
    z-index: 1;
    transition: all var(--transition);
}

.video-container:hover .video-title {
    bottom: 30px;
}

/* Video Modal */
.video-modal .modal-dialog {
    max-width: 800px;
    margin: 30px auto;
}

.video-modal .modal-content {
    background-color: transparent;
    border: none;
}

.video-modal .modal-body {
    position: relative;
    padding: 0;
}

.video-modal .close, 
.video-modal .btn-close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    font-size: 2rem;
    color: white;
    opacity: 1;
    background-color: transparent;
    border: none;
}

/* Before After Section */
.before-after-section {
    padding: var(--spacing-7) 0;
    background-color: #fff;
}

.comparison-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-comp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 3px solid white;
}

.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: var(--border-radius-circle);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.img-comp-slider:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);
}

.img-comp-before,
.img-comp-after {
    position: absolute;
    top: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 8;
}

.img-comp-before {
    left: 20px;
}

.img-comp-after {
    right: 20px;
}

/* Instagram Gallery */
.instagram-section {
    padding: var(--spacing-7) 0;
    background-color: #fff;
    position: relative;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.instagram-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 320px;
    display: block;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.instagram-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-light);
}

.instagram-item.image-error {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.instagram-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(251, 48, 153, 0.2), rgba(135, 207, 222, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all var(--transition);
}

.instagram-item:hover .instagram-overlay,
.instagram-item.image-error .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-img {
    transform: scale(1.1);
}

.instagram-icon {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s 0.1s;
}

.instagram-item:hover .instagram-icon,
.instagram-item.image-error .instagram-icon {
    transform: translateY(0);
    opacity: 1;
}

.instagram-caption {
    color: white;
    text-align: center;
    padding: 0 15px;
    font-size: 0.9rem;
    max-height: 100px;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s 0.2s;
    margin: 0;
}

.instagram-item:hover .instagram-caption,
.instagram-item.image-error .instagram-caption {
    transform: translateY(0);
    opacity: 1;
}

.instagram-btn {
    margin-top: 40px;
    text-align: center;
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-7) 0;
    background-color: #f9f9fa;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
}

.testimonial-wrapper {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    margin: 20px 15px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(251, 48, 153, 0.08);
}

.testimonial-content {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-info {
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.testimonial-treatment {
    font-size: var(--font-size-sm);
    color: var(--primary);
    font-weight: 500;
}

.testimonial-divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 15px 0;
}

/* Swiper Testimonials */
.swiper-testimonials {
    padding-bottom: 60px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/*--------------------------------------------------------------
6. Hizmetler Sayfası
--------------------------------------------------------------*/
/* Hizmet Detay Sayfası */
.service-detail {
    padding: var(--spacing-7) 0;
}

.service-detail-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.service-detail-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-detail-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    margin: 30px 0;
    padding: 30px;
    background-color: #f9f9fa;
    border-radius: var(--border-radius);
}

.service-features h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 20px;
    color: var(--dark);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    color: var(--gray);
}

.service-features-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}

.service-cta {
    margin: 40px 0;
    padding: 40px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-lg);
    text-align: center;
    color: white;
}

.service-cta h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 20px;
    color: white;
}

.service-cta p {
    margin-bottom: 30px;
    font-size: var(--font-size-lg);
    opacity: 0.9;
}

/* Hizmetler Liste Sayfası */
.services-list {
    padding: var(--spacing-7) 0;
}

.services-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 8px 20px;
    margin: 5px;
    background-color: transparent;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-xl);
    color: var(--gray);
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

/*--------------------------------------------------------------
7. Blog Sayfası (Yeni)
--------------------------------------------------------------*/
/* Blog Liste Sayfası */
.blog-section {
    padding: var(--spacing-7) 0;
    background-color: #fff;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    position: relative;
    overflow: hidden;
    padding-top: 60%; /* 5:3 Aspect Ratio */
}

.blog-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-img .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    font-size: var(--font-size-xs);
    border-radius: var(--border-radius-xl);
    text-transform: uppercase;
    font-weight: 600;
    z-index: 1;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    margin-bottom: 15px;
    font-size: var(--font-size-sm);
    color: var(--gray);
    display: flex;
    align-items: center;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-title {
    font-size: var(--font-size-xl);
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-title a {
    color: var(--dark);
    text-decoration: none;
    transition: all var(--transition);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    flex-grow: 1;
}

.blog-link {
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition);
}

.blog-link i {
    margin-left: 5px;
    transition: transform var(--transition);
}

.blog-link:hover {
    color: var(--primary-dark);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Blog Detay Sayfası */
.blog-detail {
    padding: var(--spacing-7) 0;
}

.blog-detail-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.blog-detail-img img {
    width: 100%;
    height: auto;
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-title {
    font-size: var(--font-size-4xl);
    margin-bottom: 15px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    color: var(--gray);
    font-size: var(--font-size-sm);
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 5px;
}

.blog-detail-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-detail-content {
    margin-bottom: 40px;
    line-height: 1.8;
}

.blog-detail-content p,
.blog-detail-content ul,
.blog-detail-content ol,
.blog-detail-content blockquote {
    margin-bottom: 20px;
}

.blog-detail-content h2, 
.blog-detail-content h3, 
.blog-detail-content h4 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-detail-content blockquote {
    padding: 20px;
    border-left: 5px solid var(--primary);
    background-color: #f9f9fa;
    font-style: italic;
    position: relative;
}

.blog-detail-content blockquote p {
    margin-bottom: 0;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.blog-detail-tags {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blog-detail-tags span {
    font-weight: 600;
    margin-right: 10px;
    color: var(--dark);
}

.blog-detail-tags a {
    display: inline-block;
    margin: 5px;
    padding: 5px 15px;
    background-color: #f9f9fa;
    border-radius: var(--border-radius-xl);
    font-size: var(--font-size-sm);
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition);
}

.blog-detail-tags a:hover {
    background-color: var(--primary);
    color: white;
}

.blog-detail-share {
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.blog-detail-share span {
    font-weight: 600;
    margin-right: 15px;
    color: var(--dark);
}

.blog-detail-share a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-circle);
    background-color: #f9f9fa;
    color: var(--gray);
    margin-right: 10px;
    transition: all var(--transition);
}

.blog-detail-share a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.blog-pagination {
    padding: 30px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.blog-pagination-link {
    display: flex;
    align-items: center;
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition);
}

.blog-pagination-link:hover {
    color: var(--primary);
}

.blog-pagination-link i {
    margin-right: 10px;
}

.blog-pagination-next {
    text-align: right;
}

.blog-pagination-next i {
    margin-right: 0;
    margin-left: 10px;
}

.blog-pagination-title {
    font-weight: 600;
    color: var(--dark);
    margin-top: 5px;
    transition: all var(--transition);
}

.blog-pagination-link:hover .blog-pagination-title {
    color: var(--primary);
}

/* Blog Sidebar */
.blog-sidebar {
    margin-bottom: 40px;
}

.blog-sidebar-widget {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.blog-sidebar-title {
    font-size: var(--font-size-xl);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
    position: relative;
}

.blog-sidebar-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
}

.blog-search-form {
    position: relative;
}

.blog-search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    transition: all var(--transition);
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.blog-search-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    border: none;
    background-color: transparent;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition);
}

.blog-search-btn:hover {
    color: var(--primary);
}

.blog-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories-list li {
    border-bottom: 1px solid var(--gray-light);
    padding: 10px 0;
}

.blog-categories-list li:last-child {
    border-bottom: none;
}

.blog-categories-list a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition);
}

.blog-categories-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.blog-categories-list .category-count {
    font-size: var(--font-size-sm);
    background-color: var(--gray-light);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-circle);
    transition: all var(--transition);
}

.blog-categories-list a:hover .category-count {
    background-color: var(--primary);
    color: white;
}

.blog-recent-post {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.blog-recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
}

.blog-recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-recent-post-info {
    flex-grow: 1;
}

.blog-recent-post-title {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.blog-recent-post-title a {
    color: var(--dark);
    text-decoration: none;
    transition: all var(--transition);
}

.blog-recent-post-title a:hover {
    color: var(--primary);
}

.blog-recent-post-date {
    font-size: var(--font-size-xs);
    color: var(--gray);
    display: flex;
    align-items: center;
}

.blog-recent-post-date i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
}

.blog-tags a {
    display: inline-block;
    margin: 5px;
    padding: 5px 15px;
    background-color: #f9f9fa;
    border-radius: var(--border-radius-xl);
    font-size: var(--font-size-sm);
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition);
}

.blog-tags a:hover {
    background-color: var(--primary);
    color: white;
}

/* Blog Yorum Bölümü */
.blog-comments {
    margin-top: 60px;
}

.blog-comments-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.blog-comments-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.blog-comment {
    display: flex;
    padding: 30px;
    margin-bottom: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.blog-comment-avatar {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-circle);
    margin-right: 20px;
    overflow: hidden;
}

.blog-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-comment-body {
    flex-grow: 1;
}

.blog-comment-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.blog-comment-author {
    font-weight: 600;
    color: var(--dark);
}

.blog-comment-date {
    font-size: var(--font-size-sm);
    color: var(--gray);
}

.blog-comment-content {
    margin-bottom: 15px;
    color: var(--gray);
}

.blog-comment-reply {
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition);
}

.blog-comment-reply i {
    margin-right: 5px;
}

.blog-comment-reply:hover {
    color: var(--primary-dark);
}

.blog-comment-form {
    margin-top: 60px;
}

.blog-comment-form-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.blog-comment-form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

/*--------------------------------------------------------------
8. Ürün Sayfası (Yeni)
--------------------------------------------------------------*/
/* Ürünler Liste Sayfası */
.products-section {
    padding: var(--spacing-7) 0;
}

.products-filter {
    margin-bottom: 40px;
}

.products-sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-view-buttons {
    display: flex;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9fa;
    color: var(--gray);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.view-btn:first-child {
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.view-btn:last-child {
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.view-btn.active, .view-btn:hover {
    background-color: var(--primary);
    color: white;
}

.products-sort-select {
    padding: 10px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    color: var(--gray);
    background-color: white;
    cursor: pointer;
}

.products-sort-select:focus {
    outline: none;
    border-color: var(--primary);
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: all var(--transition);
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card-img {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.product-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.product-card:hover .product-card-img img {
    transform: scale(1.1);
}

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius-xl);
    z-index: 1;
}

.badge-new {
    background-color: var(--primary);
    color: white;
}

.badge-sale {
    background-color: var(--danger);
    color: white;
}

.product-card-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-circle);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition);
    z-index: 1;
    opacity: 0;
    transform: translateY(-10px);
}

.product-card:hover .product-card-wishlist {
    opacity: 1;
    transform: translateY(0);
}

.product-card-wishlist:hover {
    background-color: var(--primary);
    color: white;
}

.product-card-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: all var(--transition);
    z-index: 1;
}

.product-card:hover .product-card-actions {
    transform: translateY(0);
}

.product-card-action {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-circle);
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.product-card-action:hover {
    background-color: var(--primary);
    color: white;
}

.product-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card-category {
    font-size: var(--font-size-xs);
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-card-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: all var(--transition);
}

.product-card-title a:hover {
    color: var(--primary);
}

.product-card-price {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.product-price-regular {
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--primary);
}

.product-price-compare {
    font-size: var(--font-size-sm);
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-card-rating {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.product-card-stars {
    color: #ffc107;
    font-size: var(--font-size-sm);
    margin-right: 5px;
}

.product-card-reviews {
    font-size: var(--font-size-xs);
    color: var(--gray);
}

/* Ürün Detay Sayfası */
.product-detail {
    padding: var(--spacing-7) 0;
}

.product-gallery {
    position: relative;
    margin-bottom: 30px;
}

.product-gallery-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.product-gallery-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    margin: -5px;
}

.product-gallery-thumb {
    width: calc(25% - 10px);
    margin: 5px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}

.product-gallery-thumb.active {
    border-color: var(--primary);
}

.product-gallery-thumb img {
    width: 100%;
    height: auto;
}

.product-summary {
    padding-left: 30px;
}

.product-title {
    font-size: var(--font-size-3xl);
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-stars {
    color: #ffc107;
    font-size: var(--font-size-base);
    margin-right: 10px;
}

.product-review-count {
    color: var(--gray);
    font-size: var(--font-size-sm);
}

.product-price {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.product-compare-price {
    font-size: var(--font-size-lg);
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 15px;
    font-weight: 400;
}

.product-availability {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.product-availability i {
    margin-right: 5px;
    color: var(--success);
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-short-info {
    margin-bottom: 30px;
}

.product-info-item {
    display: flex;
    margin-bottom: 10px;
}

.product-info-label {
    width: 120px;
    font-weight: 600;
    color: var(--dark);
}

.product-variations {
    margin-bottom: 30px;
}

.product-variation-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-variation-options {
    display: flex;
    flex-wrap: wrap;
}

.product-variation-option {
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.product-variation-color {
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-circle);
    border: 2px solid transparent;
    transition: all var(--transition);
}

.product-variation-color.active {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary);
}

.product-variation-size {
    min-width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 0 10px;
    transition: all var(--transition);
}

.product-variation-size.active, .product-variation-size:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.product-quantity {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.product-quantity-label {
    margin-right: 15px;
    font-weight: 600;
    color: var(--dark);
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9fa;
    border: none;
    cursor: pointer;
    color: var(--gray);
    transition: all var(--transition);
}

.quantity-btn:hover {
    background-color: var(--gray-light);
}

.quantity-number {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

.product-actions {
    display: flex;
    margin-bottom: 30px;
}

.product-buy-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    margin-right: 15px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.product-buy-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.product-wishlist-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gray-light);
    background-color: white;
    color: var(--gray);
    cursor: pointer;
    transition: all var(--transition);
}

.product-wishlist-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.product-share {
    display: flex;
    align-items: center;
}

.product-share-label {
    margin-right: 15px;
    font-weight: 600;
    color: var(--dark);
}

.product-share-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: var(--border-radius-circle);
    background-color: #f9f9fa;
    color: var(--gray);
    margin-right: 10px;
    transition: all var(--transition);
}

.product-share-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.product-tabs {
    margin-top: 60px;
}

.product-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 30px;
}

.product-tab-item {
    padding: 15px 30px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
}

.product-tab-item.active {
    color: var(--primary);
    border-color: var(--primary);
}

.product-tab-content {
    display: none;
}

.product-tab-content.active {
    display: block;
}

.product-tab-pane {
    line-height: 1.8;
}

.product-tab-pane h3 {
    margin-bottom: 20px;
}

.product-specifications {
    width: 100%;
    border-collapse: collapse;
}

.product-specifications tr:nth-child(even) {
    background-color: #f9f9fa;
}

.product-specifications th, .product-specifications td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-light);
}

.product-specifications th {
    font-weight: 600;
    color: var(--dark);
    width: 30%;
}

.product-review {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.product-review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.product-review-author {
    font-weight: 600;
    color: var(--dark);
}

.product-review-date {
    font-size: var(--font-size-sm);
    color: var(--gray);
}

.product-review-rating {
    margin-bottom: 15px;
    color: #ffc107;
}

.product-review-content {
    line-height: 1.8;
    color: var(--gray);
}

.related-products {
    margin-top: 80px;
}

.related-products-title {
    font-size: var(--font-size-2xl);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.related-products-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

/*--------------------------------------------------------------
9. Galeri Sayfası (Yeni)
--------------------------------------------------------------*/
.gallery-section {
    padding: var(--spacing-7) 0;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery-filter-btn {
    padding: 8px 20px;
    margin: 5px;
    background-color: transparent;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-xl);
    color: var(--gray);
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    position: relative;
    padding-top: 70%; /* 10:7 Aspect Ratio */
}

.gallery-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(251, 48, 153, 0.2), rgba(135, 207, 222, 0.6));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.5rem;
    transform: scale(0);
    transition: all var(--transition);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-caption {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.gallery-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.gallery-category {
    font-size: var(--font-size-sm);
    color: var(--primary);
}

.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

/* Lightbox Stili */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--primary);
}

/*--------------------------------------------------------------
10. İletişim Sayfası
--------------------------------------------------------------*/
.contact-section {
    padding: var(--spacing-7) 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.contact-box {
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info-wrapper {
    background: var(--gradient-primary);
    padding: 40px;
    color: white;
    height: 100%;
    border-radius: var(--border-radius-lg);
}

.contact-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: white;
}

.contact-info-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-content p, 
.contact-info-content a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all var(--transition);
    margin: 0;
}

.contact-info-content a:hover {
    color: white;
}

.contact-form-wrapper {
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius-lg);
}

.contact-form-title {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.form-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-xl);
    padding: 15px 40px;
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-submit:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    transition: all 0.4s ease;
    z-index: -1;
}

.form-submit:hover:before {
    left: 0;
}

.form-submit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

/* Map Section */
.map-section {
    position: relative;
    height: 500px;
}

.map-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/*--------------------------------------------------------------
11. Footer
--------------------------------------------------------------*/
.footer {
    background-color: #1e2833;
    color: #888;
    padding-top: 100px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.02;
    z-index: 0;
}

.footer-widget {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 180px;
}

.footer-widget p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-widget-title {
    color: white;
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    padding-left: 15px;
    font-size: 0.95rem;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover:before {
    color: white;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-contact-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-contact-text a {
    color: #888;
    text-decoration: none;
    transition: all var(--transition);
}

.footer-contact-text a:hover {
    color: white;
}

.footer-social {
    display: flex;
    margin-top: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-circle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    margin-right: 10px;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: #15202b;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
}

/*--------------------------------------------------------------
12. Yardımcı Bileşenler
--------------------------------------------------------------*/
/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: var(--border-radius-circle);
    text-align: center;
    font-size: 2rem;
    box-shadow: var(--shadow);
    z-index: var(--z-fixed);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-btn::after {
    content: 'Whatsapp İletişim';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    white-space: nowrap;
}

.whatsapp-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    text-decoration: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: white;
    transform: translateY(-5px);
}

/* Yükleniyor Animasyonu */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    transition: all 0.5s;
}

.loading.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-circle);
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Bildirim Modalı */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: var(--border-radius-lg);
    color: white;
    z-index: var(--z-tooltip);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.5s;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background-color: var(--success);
}

.notification-error {
    background-color: var(--danger);
}

.notification-info {
    background-color: var(--info);
}

/* Custom Alert & Modal */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    width: 100%;
    max-width: 500px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transform: translateY(-20px);
    transition: all var(--transition);
    opacity: 0;
}

.custom-modal-overlay.active .custom-modal {
    transform: translateY(0);
    opacity: 1;
}

.custom-modal-header {
    padding: 20px;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin: 0;
}

.custom-modal-close {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition);
}

.custom-modal-close:hover {
    transform: rotate(90deg);
}

.custom-modal-body {
    padding: 30px;
}

.custom-modal-footer {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--gray-light);
}

.custom-modal-btn {
    padding: 10px 25px;
    border-radius: var(--border-radius-xl);
    font-weight: 500;
    transition: all var(--transition);
    margin-left: 10px;
    cursor: pointer;
}

.custom-modal-btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.custom-modal-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.custom-modal-btn-secondary {
    background-color: transparent;
    color: var(--gray);
    border: 1px solid var(--gray-light);
}

.custom-modal-btn-secondary:hover {
    background-color: var(--gray-light);
    color: var(--dark);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    z-index: var(--z-fixed);
    transform: translateY(100%);
    transition: all 0.5s;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-notice-text {
    margin-bottom: 15px;
}

.cookie-notice-text p {
    margin-bottom: 0;
}

.cookie-notice-actions .btn {
    margin-left: 10px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.pagination-item {
    margin: 0 5px;
}

.pagination-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-circle);
    background-color: white;
    color: var(--gray);
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.pagination-link:hover, 
.pagination-link.active {
    background: var(--gradient-primary);
    color: white;
}

.pagination-prev, 
.pagination-next {
    width: auto;
    padding: 0 15px;
    border-radius: var(--border-radius-xl);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.fw-bold {
    font-weight: 600;
}

.fw-normal {
    font-weight: 400;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-column {
    flex-direction: column !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.rounded {
    border-radius: var(--border-radius) !important;
}

.rounded-lg {
    border-radius: var(--border-radius-lg) !important;
}

.rounded-circle {
    border-radius: var(--border-radius-circle) !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/*--------------------------------------------------------------
13. Animasyonlar
--------------------------------------------------------------*/
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typing {
    from {
        width: 0;
    }
}
    
@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Typing Animation for Hero */
.typing-wrapper {
    display: inline-block;
}

.typing-demo {
    width: 22ch;
    animation: typing 3.5s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid var(--primary);
}

/* AOS Animasyon Eklentisi Konfigürasyonu */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/*--------------------------------------------------------------
14. Medya Sorguları
--------------------------------------------------------------*/
/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    :root {
        --font-size-xs: 0.7rem;
        --font-size-sm: 0.8rem;
        --font-size-base: 0.9rem;
        --font-size-lg: 1rem;
        --font-size-xl: 1.1rem;
        --font-size-2xl: 1.3rem;
        --font-size-3xl: 1.6rem;
        --font-size-4xl: 1.8rem;
        --font-size-5xl: 2rem;
    }
    
    .section-spacing, 
    .section-spacing-lg, 
    .section-spacing-sm {
        padding: 50px 0;
    }
    
    .section-title-wrapper {
        margin-bottom: 40px;
    }
    
    .top-bar {
        display: none;
    }
    
    .navbar-brand img {
        max-height: 50px;
    }
    
    .navbar.scrolled .navbar-brand img {
        max-height: 40px;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: var(--border-radius);
        margin-top: 15px;
    }
    
    .nav-btn {
        display: block;
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
    
    .hero-section {
        height: auto;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .hero-btn, 
    .hero-btn-secondary {
        display: block;
        width: 100%;
        margin: 0 0 15px 0;
        text-align: center;
    }
    
    .about-content {
        padding: 30px 0 0 0;
    }
    
    .about-content h2 {
        font-size: var(--font-size-3xl);
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .video-container {
        margin-bottom: 20px;
    }
    
    .video-play {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-title {
        font-size: var(--font-size-base);
    }
    
    .video-modal .close,
    .video-modal .btn-close {
        right: 0;
        top: -40px;
    }
    
    .video-modal .modal-dialog {
        max-width: 95%;
        margin: 30px auto;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-submit {
        width: 100%;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 80px;
    }
    
    .footer {
        padding-top: 70px;
    }
    
    .footer-widget-title {
        font-size: var(--font-size-lg);
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    /* Blog */
    .blog-detail-title {
        font-size: var(--font-size-3xl);
    }
    
    .blog-sidebar {
        margin-top: 50px;
    }
    
    .blog-pagination-link {
        font-size: var(--font-size-sm);
    }
    
    /* Products */
    .products-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-sort {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-view-buttons {
        margin-bottom: 15px;
    }
    
    .product-gallery-thumb {
        width: calc(33.33% - 10px);
    }
    
    .product-summary {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product-variations {
        flex-wrap: wrap;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-buy-btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .product-wishlist-btn {
        width: 100%;
        border-radius: var(--border-radius);
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Small devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .section-spacing, 
    .section-spacing-lg, 
    .section-spacing-sm {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content {
        padding: 30px 0 0 0;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
    
    /* Blog */
    .blog-sidebar {
        margin-top: 50px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .section-spacing, 
    .section-spacing-lg, 
    .section-spacing-sm {
        padding: 80px 0;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: var(--border-radius);
        margin-top: 15px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-content {
        padding: 30px 0 0 0;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .contact-info-wrapper {
        margin-bottom: 30px;
    }
    
    /* Blog */
    .blog-sidebar {
        margin-top: 50px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .section-spacing, 
    .section-spacing-lg, 
    .section-spacing-sm {
        padding: 90px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/*--------------------------------------------------------------
15. Tarayıcı Uyumluluğu Düzeltmeleri
--------------------------------------------------------------*/
/* IE10+ için CSS düzeltmeleri */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .hero-section::before {
        background: rgba(255, 255, 255, 0.7);
    }
    
    .nav-btn,
    .hero-btn,
    .service-link::after,
    .about-content h2::after,
    .section-title:after,
    .testimonial-divider,
    .footer-widget-title::after,
    .blog-sidebar-title:after {
        background-color: var(--primary);
    }
    
    .stats-section {
        background-color: var(--primary);
    }
}

/* Safari için düzeltmeler */
@supports (-webkit-overflow-scrolling: touch) {
    .hero-section {
        background-attachment: scroll;
    }
    
    .stats-section {
        background-attachment: scroll;
    }
}

/* Firefox için düzeltmeler */
@-moz-document url-prefix() {
    .service-link::after {
        bottom: -3px;
    }
}

/* Edge için düzeltmeler */
@supports (-ms-ime-align: auto) {
    .hero-section::before {
        background: rgba(255, 255, 255, 0.7);
    }
}

/*--------------------------------------------------------------
16. Baskı Stilleri
--------------------------------------------------------------*/
@media print {
    @page {
        margin: 0.5cm;
    }
    
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    .top-bar,
    .navbar,
    .hero-section,
    .footer,
    .whatsapp-btn,
    .back-to-top {
        display: none !important;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
    
    img {
        max-width: 100% !important;
    }
    
    a, a:visited {
        text-decoration: underline;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    
    tr, img {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
17. Sosyal Medya Bölümü
--------------------------------------------------------------*/
.social-section {
    background: linear-gradient(135deg, #fb3099 0%, #87cfde 100%);
    color: white;
}

.social-section .section-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    color: white;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.social-link span {
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-link:nth-child(1) i { color: #E4405F; }
.social-link:nth-child(2) i { color: #1877F2; }
.social-link:nth-child(3) i { color: #FF0000; }
.social-link:nth-child(4) i { color: #1DA1F2; }

@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1rem;
    }
    
    .social-link i {
        font-size: 2rem;
    }
}