/*
Theme Name: iWebt
Theme URI: https://istanbulwebtasarim.com.tr
Author: İstanbul Web Tasarım
Author URI: https://istanbulwebtasarim.com.tr
Description: Bootstrap 5.3.3, SwiperJS, Lozad.js ve SweetAlert2 ile modern WordPress teması
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iwebt
Tags: bootstrap, responsive, modern, business, portfolio
*/

/* ==========================================================================
   CSS Variables / Tema Renkleri
   ========================================================================== */
:root {
    /* Primary Colors */
    --iwebt-primary: #667eea;
    --iwebt-primary-dark: #5a6fd6;
    --iwebt-secondary: #764ba2;
    --iwebt-accent: #f093fb;
    
    /* Gradient */
    --iwebt-gradient: linear-gradient(135deg, var(--iwebt-primary) 0%, var(--iwebt-secondary) 100%);
    
    /* Neutral Colors */
    --iwebt-dark: #1a1a2e;
    --iwebt-gray-900: #212529;
    --iwebt-gray-800: #343a40;
    --iwebt-gray-700: #495057;
    --iwebt-gray-600: #6c757d;
    --iwebt-gray-500: #adb5bd;
    --iwebt-gray-400: #ced4da;
    --iwebt-gray-300: #dee2e6;
    --iwebt-gray-200: #e9ecef;
    --iwebt-gray-100: #f8f9fa;
    --iwebt-gray-50: #fafbfc;
    --iwebt-white: #ffffff;
    
    /* Status Colors */
    --iwebt-success: #28a745;
    --iwebt-danger: #dc3545;
    --iwebt-warning: #ffc107;
    --iwebt-info: #17a2b8;
    
    /* Typography */
    --iwebt-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --iwebt-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --iwebt-section-padding: 80px;
    --iwebt-container-padding: 15px;
    
    /* Border Radius */
    --iwebt-radius-sm: 4px;
    --iwebt-radius: 8px;
    --iwebt-radius-lg: 16px;
    --iwebt-radius-xl: 24px;
    
    /* Shadows */
    --iwebt-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --iwebt-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --iwebt-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --iwebt-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --iwebt-transition: all 0.3s ease;
    --iwebt-transition-fast: all 0.15s ease;
    --iwebt-transition-slow: all 0.5s ease;
}

/* ==========================================================================
   Base / Reset
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--iwebt-font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--iwebt-gray-700);
    background-color: var(--iwebt-white);
    overflow-x: hidden;
}

::selection {
    background-color: var(--iwebt-primary);
    color: var(--iwebt-white);
}

a {
    color: var(--iwebt-primary);
    text-decoration: none;
    transition: var(--iwebt-transition);
}

a:hover {
    color: var(--iwebt-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--iwebt-font-heading);
    font-weight: 700;
    color: var(--iwebt-gray-900);
    line-height: 1.3;
    margin-bottom: 0.75em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul, ol { padding-left: 1.5rem; }

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-gradient {
    background: var(--iwebt-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--iwebt-gradient);
}

.section-padding {
    padding: var(--iwebt-section-padding) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
/* .btn {
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--iwebt-radius);
    transition: var(--iwebt-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--iwebt-gradient);
    border: none;
    color: var(--iwebt-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--iwebt-primary-dark) 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: var(--iwebt-shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--iwebt-primary);
    color: var(--iwebt-primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--iwebt-primary);
    border-color: var(--iwebt-primary);
    color: var(--iwebt-white);
}

.btn-white {
    background: var(--iwebt-white);
    color: var(--iwebt-primary);
    border: none;
}

.btn-white:hover {
    background: var(--iwebt-gray-100);
    color: var(--iwebt-primary-dark);
}

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.875rem; } */

/* ==========================================================================
   Forms
   ========================================================================== */
.form-control,
.form-select {
    border: 1px solid var(--iwebt-gray-300);
    border-radius: var(--iwebt-radius);
    font-size: 1rem;
    transition: var(--iwebt-transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--iwebt-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--iwebt-gray-800);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    border: none;
    border-radius: var(--iwebt-radius-lg);
    box-shadow: var(--iwebt-shadow);
    transition: var(--iwebt-transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--iwebt-shadow-lg);
    transform: translateY(-5px);
}

.card-body { padding: 1.5rem; }
.card-title { font-size: 1.25rem; margin-bottom: 0.75rem; }

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header { margin-bottom: 50px; }

.section-subtitle {
    display: inline-block;
    color: var(--iwebt-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--iwebt-gray-900);
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    .section-desc { font-size: 1rem; }
}

/* ==========================================================================
   Logo Shape (Admin'den aktifleştirilirse)
   ========================================================================== */
.navbar-brand.has-logo-shape {
    position: relative;
    z-index: 1;
}

.logo-shape-bg {
     background-image: url(assets/images/logo-shape.png);
    position: absolute;
    top: 0px;
    left:0px;
    max-width: 40%;
    height: 82px;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: #333; */
    width: 100%;
}

.header-transparent .logo-shape-bg {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.header-transparent.header-scrolled .logo-shape-bg {
    background: var(--iwebt-primary);
    opacity: 0.1;
}

@media (max-width: 768px) {
    .logo-shape-bg{display: none;}
}


/* ==========================================================================
   Header Types
   ========================================================================== */

/* --- Normal Header --- */
.header-type-normal {
    position: relative;
    background: var(--iwebt-white);
    box-shadow: var(--iwebt-shadow);
}

.header-type-normal + .header-spacer {
    display: none;
}

/* --- Fixed Header --- */
.header-type-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--iwebt-white);
    transition: var(--iwebt-transition);
}

.header-type-fixed.header-scrolled {
    box-shadow: var(--iwebt-shadow);
}

.header-type-fixed .iwebt-topbar {
    transition: margin-top 0.3s ease;
}

.header-type-fixed .navbar {
    transition: padding 0.3s ease;
}

/* --- Opacity Header --- */
.header-type-opacity {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
}

.header-type-opacity .navbar {
    padding: 20px 0;
    transition: var(--iwebt-transition);
}

.header-type-opacity .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.header-type-opacity .nav-link:hover,
.header-type-opacity .nav-link.active {
    color: #fff !important;
}

.header-type-opacity.header-scrolled {
    position: fixed;
    background: var(--iwebt-white);
    box-shadow: var(--iwebt-shadow);
}

.header-type-opacity.header-scrolled .navbar {
    padding: 10px 0;
}

.header-type-opacity.header-scrolled .nav-link {
    color: var(--iwebt-gray-800) !important;
}

.header-type-opacity.header-scrolled .nav-link:hover,
.header-type-opacity.header-scrolled .nav-link.active {
    color: var(--iwebt-primary) !important;
}

.header-type-opacity.header-scrolled .btn-light {
    background: var(--iwebt-primary);
    color: #fff;
    border-color: var(--iwebt-primary);
}

/* Header Spacer */
.header-spacer {
    height: 76px;
}

.header-spacer.has-topbar {
    height: 116px;
}

.header-spacer[data-header-type="normal"] {
    display: none;
}

/* ==========================================================================
   Breadcrumb with Background Image
   ========================================================================== */
.iwebt-breadcrumb {
    position: relative;
    background: var(--iwebt-gradient);
    padding: 60px 0 40px;
    text-align: center;
    overflow: hidden;
}

.iwebt-breadcrumb.has-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.iwebt-breadcrumb .breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.iwebt-breadcrumb .breadcrumb-overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.6);
}

.iwebt-breadcrumb .breadcrumb-overlay.overlay-light {
    background: rgba(255, 255, 255, 0.8);
}

.iwebt-breadcrumb .breadcrumb-overlay.overlay-gradient {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
}

.iwebt-breadcrumb .container {
    position: relative;
    z-index: 2;
}

.iwebt-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    justify-content: center;
}

.iwebt-breadcrumb .breadcrumb-item {
    font-size: 0.95rem;
}

.iwebt-breadcrumb .breadcrumb-item,
.iwebt-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.iwebt-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.iwebt-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.iwebt-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Light overlay için koyu text */
.iwebt-breadcrumb .breadcrumb-overlay.overlay-light + .container .breadcrumb-item,
.iwebt-breadcrumb .breadcrumb-overlay.overlay-light + .container .breadcrumb-item a {
    color: var(--iwebt-gray-600);
}

.iwebt-breadcrumb .breadcrumb-overlay.overlay-light + .container .breadcrumb-item.active {
    color: var(--iwebt-gray-900);
}

/* Breadcrumb Heights */
.iwebt-breadcrumb.breadcrumb-height-small {
    padding: 40px 0 30px;
}

.iwebt-breadcrumb.breadcrumb-height-large {
    padding: 100px 0 60px;
}

/* Page Header (for pages that need title in breadcrumb area) */
.page-header {
    background: var(--iwebt-gradient);
    padding: 100px 0 60px;
    text-align: center;
    color: var(--iwebt-white);
    margin-bottom: 0;
}

.page-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--iwebt-white);
    margin-bottom: 15px;
}

.page-header-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.page-header .iwebt-breadcrumb {
    background: transparent;
    padding: 20px 0 0;
}

@media (max-width: 768px) {
    .iwebt-breadcrumb {
        padding: 40px 0 30px;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Lozad Lazy Load
   ========================================================================== */
.lozad {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lozad.lozad-loaded {
    opacity: 1;
}

.lozad-bg {
    background-color: var(--iwebt-gray-100);
    transition: background-image 0.3s ease;
}

/* ==========================================================================
   Sticky Sidebar
   ========================================================================== */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* ==========================================================================
   Why Card (About page)
   ========================================================================== */
.why-card {
    background: var(--iwebt-white);
    border-radius: var(--iwebt-radius-lg);
    transition: var(--iwebt-transition);
}

.why-card:hover {
    box-shadow: var(--iwebt-shadow-lg);
    transform: translateY(-5px);
}

.why-icon i {
    transition: var(--iwebt-transition);
}

.why-card:hover .why-icon i {
    transform: scale(1.1);
}

/* ==========================================================================
   Post Navigation
   ========================================================================== */
.nav-link-box {
    display: block;
    padding: 20px;
    background: var(--iwebt-gray-100);
    border-radius: var(--iwebt-radius);
    transition: var(--iwebt-transition);
    text-decoration: none;
}

.nav-link-box:hover {
    background: var(--iwebt-primary);
    color: #fff;
}

.nav-link-box .nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--iwebt-gray-600);
    margin-bottom: 5px;
}

.nav-link-box .nav-title {
    display: block;
    font-weight: 600;
    color: var(--iwebt-gray-900);
}

.nav-link-box:hover .nav-label,
.nav-link-box:hover .nav-title {
    color: #fff;
}

/* ==========================================================================
   Post Tags
   ========================================================================== */
.post-tags a {
    display: inline-block;
    padding: 4px 12px;
    margin: 4px 4px 4px 0;
    background: var(--iwebt-gray-100);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--iwebt-gray-700);
    transition: var(--iwebt-transition);
}

.post-tags a:hover {
    background: var(--iwebt-primary);
    color: #fff;
}

/* ==========================================================================
   Author Box
   ========================================================================== */
.author-box {
    background: var(--iwebt-gray-50);
    border: none;
}

.author-box:hover {
    transform: none;
}

.author-avatar img {
    border: 3px solid var(--iwebt-primary);
}

.author-name a {
    color: var(--iwebt-gray-900);
}

.author-name a:hover {
    color: var(--iwebt-primary);
}



/* aboutsectıonrework */

/* About Section - Minimal CSS */
.about-img {
  margin-right: 40px;
}

.aboutsec-layer1{
    height:450px;
}
.aboutsec-layer1 img{
       object-fit: cover;
    width: 100%;
    height: 100%;
}

.aboutsec-layer2 {
  width: 175px;
  height: 163px;
  left: 0;
  bottom: 0;
  object-fit: cover;
   /* padding-top: 10px;
    padding-right: 10px; */
    background:#fff;
}

.aboutsec-layer3 {
  width: 244px;
  height: 285px;
  right: 0;
  top: 0;
  object-fit: cover;
  /* padding-bottom: 10px;
    padding-left: 10px; */
      background:#fff;
}

.specialborder{
    border:10px solid #fff;
    border-radius:25px;
}

.specialborderrad{
     border-radius:25px;
}

.check-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-danger, #dc3545);
  color: white;
  border-radius: 50%;
  font-size: 12px;
}

.author-stack img {
  width: 54px;
  margin-left: -20px;
}

.author-stack img:first-child {
  margin-left: 0;
}

.list-section {
  padding-right: 30px;
  border-right: 2px solid #dee2e6;
}

.about-shape {
  position: absolute;
  right: -10%;
  bottom: 10%;
  max-width: 200px;
  z-index: -1;
}

/* Custom Animation Delays */
.animate__delay-3s {
  animation-delay: 1.5s;
}

.animate__delay-4s {
  animation-delay: 2s;
}

/* Responsive */
@media (max-width: 991.98px) {
  .about-img {
    margin-right: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  .list-section {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .about-img .img-overlay-1 {
    width: 110px;
    height: 103px;
  }
  .about-img .img-overlay-2 {
    width: 151px;
    height: 175px;
  }
}




/* pageheaderoverlay */
/* Page Header Section */
.iwebt-page-header {
    position: relative;
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    /* margin-bottom: 40px; */
}

/* Height Variations */
.iwebt-page-header.header-height-small {
    padding: 40px 0;
}

.iwebt-page-header.header-height-normal {
    padding: 60px 0;
}

.iwebt-page-header.header-height-large {
    padding: 100px 0;
}

/* Overlay Styles */
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-header-overlay.overlay-dark {
    background: rgba(0, 0, 0, 0.6);
}

.page-header-overlay.overlay-light {
    background: rgba(255, 255, 255, 0.7);
}

.page-header-overlay.overlay-gradient {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
}

/* Content Container */
.iwebt-page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content {
    text-align: center;
}

/* Page Title */
.page-header-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Light overlay için koyu metin */
.overlay-light + .container .page-header-title,
.overlay-light + .container .page-header-description p {
    color: #1a1a2e;
    text-shadow: none;
}

/* Page Description */
.page-header-description {
    max-width: 700px;
    margin: 0 auto 20px;
}

.page-header-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* Breadcrumb Navigation */
.page-header-breadcrumb {
    margin-top: 20px;
}

.page-header-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 25px;
    margin: 0;
    display: inline-flex;
    justify-content: center;
}

.page-header-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.page-header-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header-breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
}

.page-header-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.page-header-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
}

.page-header-breadcrumb .breadcrumb-item i {
    margin-right: 5px;
}

/* Light Overlay için Breadcrumb */
.overlay-light + .container .page-header-breadcrumb .breadcrumb {
    background: rgba(0, 0, 0, 0.1);
}

.overlay-light + .container .page-header-breadcrumb .breadcrumb-item,
.overlay-light + .container .page-header-breadcrumb .breadcrumb-item a {
    color: rgba(26, 26, 46, 0.8);
}

.overlay-light + .container .page-header-breadcrumb .breadcrumb-item.active {
    color: #1a1a2e;
}

/* Responsive */
@media (max-width: 768px) {
    .iwebt-page-header {
        padding: 40px 0;
    }
    
    .iwebt-page-header.header-height-large {
        padding: 60px 0;
    }
    
    .page-header-title {
        font-size: 1.75rem;
    }
    
    .page-header-description p {
        font-size: 1rem;
    }
    
    .page-header-breadcrumb .breadcrumb {
        padding: 10px 20px;
        flex-wrap: wrap;
    }
    
    .page-header-breadcrumb .breadcrumb-item {
        font-size: 0.85rem;
    }
}



/* stat */
/* ==========================================================================
   Stats Section - Modern Hover Effects
   ========================================================================== */

.iwebt-stats-section {
    background: linear-gradient(135deg, var(--iwebt-primary) 0%, var(--iwebt-secondary) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.iwebt-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Stats Container */
.iwebt-stats-section .container {
    position: relative;
    z-index: 1;
}

/* Stat Item Card */
.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--iwebt-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Hover Glow Effect */
.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-item:hover::before {
    opacity: 1;
}

/* Hover State */
.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 30px rgba(255, 255, 255, 0.1);
}

/* Icon Container */
.stat-icon {
    margin-bottom: 25px;
    position: relative;
}

.stat-icon i {
    font-size: 3.5rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Icon Animation on Hover - Using Animate.css */
.stat-item:hover .stat-icon i {
    animation: shakeX 0.6s ease-in-out;
    color: #ffffff;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Alternative hover animations you can use:
.stat-item:hover .stat-icon i {
    animation: bounce 0.6s ease-in-out;
    animation: pulse 0.6s ease-in-out;
    animation: rubberBand 0.6s ease-in-out;
    animation: swing 0.6s ease-in-out;
    animation: tada 0.6s ease-in-out;
    animation: wobble 0.6s ease-in-out;
    animation: jello 0.6s ease-in-out;
    animation: heartBeat 0.6s ease-in-out;
    animation: shakeY 0.6s ease-in-out;
    animation: headShake 0.6s ease-in-out;
}
*/

/* Number */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.05);
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Label */
.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.stat-item:hover .stat-label {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Pulse Ring Effect */
.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.5s ease;
}

.stat-item:hover::after {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
}

/* Fade In Animation - Using Animate.css */
.stat-item {
    animation-delay: 0s;
}

.stat-item:nth-child(1) { 
    animation-delay: 0.1s;
    --animate-delay: 0.1s;
}
.stat-item:nth-child(2) { 
    animation-delay: 0.2s;
    --animate-delay: 0.2s;
}
.stat-item:nth-child(3) { 
    animation-delay: 0.3s;
    --animate-delay: 0.3s;
}
.stat-item:nth-child(4) { 
    animation-delay: 0.4s;
    --animate-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-icon i {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .stat-item:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-icon {
        margin-bottom: 15px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
}




/* cta baslar */
/* ==========================================================================
   CTA & References Combined Section
   ========================================================================== */

.iwebt-cta-references-section {
    background: var(--iwebt-gray-100);
}

/* Main Box */
.cta-references-box {
    min-height: 420px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
    .cta-references-box {
        min-height: 480px;
    }
}

/* ==========================================================================
   Background & Overlay
   ========================================================================== */

.cta-references-box > .bg-dark img {
    object-position: center center;
}

/* Dark Gradient Overlay */
.cta-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

/* Fallback Gradient when no image */
.bg-gradient-primary {
    background: linear-gradient(
        135deg,
        var(--iwebt-primary) 0%,
        var(--iwebt-primary-dark, #5a6fd6) 100%
    );
}

/* ==========================================================================
   CTA Content Area
   ========================================================================== */

.cta-content {
    min-height: 260px;
    z-index: 2;
}

@media (min-width: 992px) {
    .cta-content {
        min-height: 300px;
        padding: 3.5rem !important;
    }
}

@media (min-width: 1200px) {
    .cta-content {
        padding: 4rem !important;
    }
}

/* Title Styling */
.cta-content h2 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 575.98px) {
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content .lead {
        font-size: 1rem;
    }
}

/* ==========================================================================
   References Band
   ========================================================================== */

.references-band {
    z-index: 3;
}

/* Band Overlay - Darker than main overlay */
.references-band-overlay {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Band Title */
.references-band-title h5 {
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .references-band-title h5 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .references-band-title {
        text-align: center;
    }
}

/* ==========================================================================
   Reference Logos
   ========================================================================== */

.reference-logo-white {
    max-height: 150px;
    width: auto;
    max-width: 100%;
    opacity: 0.45;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reference-slide-item:hover .reference-logo-white,
.reference-link:hover .reference-logo-white,
.reference-link:focus .reference-logo-white {
    opacity: 1;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.3));
}

/* Reference Link */
.reference-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 10px;
}

.reference-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Responsive Logo Sizes */
@media (max-width: 767.98px) {
    .reference-logo-white {
        max-height: 80px;
    }
    
    .reference-slide-item:hover .reference-logo-white,
    .reference-link:hover .reference-logo-white {
        transform: translateY(-5px);
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .reference-logo-white {
        max-height: 100px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .reference-logo-white {
        max-height: 120px;
    }
}

@media (min-width: 1200px) {
    .reference-logo-white {
        max-height: 150px;
    }
}

/* ==========================================================================
   Slider Wrapper & Fade Effects
   ========================================================================== */

.references-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.iwebt-cta-references-slider {
    overflow: visible;
}

/* Fade edges for seamless loop effect */
.slider-fade-left,
.slider-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 10;
    pointer-events: none;
}

.slider-fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.slider-fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

/* ==========================================================================
   Button Adjustments for CTA
   ========================================================================== */

.cta-content .btn-light {
    color: var(--iwebt-dark);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.cta-content .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-content .btn-success {
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.cta-content .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 767.98px) {
    .cta-references-box {
        min-height: auto;
    }
    
    .references-band .row {
        text-align: center;
    }
    
    .references-band .py-4 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    
    .slider-fade-left,
    .slider-fade-right {
        width: 20px;
    }
}

/* ==========================================================================
   Animation Enhancements
   ========================================================================== */

.cta-content [data-animate] {
    opacity: 0;
}

.cta-content .animate__animated {
    opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .cta-references-box:hover .cta-bg img {
        transform: scale(1.02);
        transition: transform 8s ease-out;
    }
}




/* exportmap */
/**
 * Map Module Common Styles
 * Export Map + Domestic Map
 * @package iWebt
 * @version 2.3.0
 */

/* ==========================================
   SHARED MAP STYLES
   ========================================== */

.iwebt-export-section,
.iwebt-domestic-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.iwebt-export-section::before,
.iwebt-domestic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Map Container */
.export-map-container,
.domestic-map-container {
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.map-wrapper {
    position: relative;
}

.map-image {
    width: 100%;
    height: auto;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.3s ease;
}

/* ==========================================
   MAP MARKERS - SHARED
   ========================================== */

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-marker.animate-in {
    opacity: 1;
}

/* Marker doğrudan görünür olsun (animasyon yoksa) */
#markersContainer .map-marker,
#domesticMarkersContainer .map-marker {
    opacity: 1;
}

.marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #3b82f6;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.marker-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

/* Highlighted Marker */
.map-marker.highlighted .marker-dot {
    transform: scale(1.4);
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.4);
}

/* ==========================================
   MARKER TOOLTIPS - SHARED
   ========================================== */

.marker-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
    text-align: left;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.98);
}

.map-marker:hover .marker-tooltip,
.map-marker.highlighted .marker-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-country,
.tooltip-city {
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tooltip-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusBlink 1.5s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ==========================================
   MAP LEGEND - SHARED
   ========================================== */

.map-legend {
    color: #64748b;
    font-size: 0.9rem;
}

.legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.source {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.legend-dot.destination {
    background: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* ==========================================
   EXPORT MAP SPECIFIC (DÜNYA HARİTASI)
   ========================================== */

/* Connection Lines SVG */
.connection-lines {
    pointer-events: none;
}

.connection-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 1.5;
    stroke-dasharray: 6 3;
    opacity: 0.7;
    animation: flowLine 1s linear infinite;
    transition: stroke-width 0.3s ease, opacity 0.3s ease;
}

.connection-line.highlighted {
    stroke-width: 2.5;
    opacity: 1;
}

@keyframes flowLine {
    from { stroke-dashoffset: 9; }
    to { stroke-dashoffset: 0; }
}

/* Source Marker (Turkey - Export Map) */
.map-marker.source .marker-dot {
    width: 24px;
    height: 24px;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3);
}

.map-marker.source .marker-dot::before {
    background: #10b981;
}

.source-label {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Country Cards (Export Map) */
.country-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-card:hover,
.country-card.highlighted {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1) !important;
}

.country-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: statusBlink 1.5s ease-in-out infinite;
}

/* ==========================================
   DOMESTIC MAP SPECIFIC (TÜRKİYE HARİTASI)
   ========================================== */

.iwebt-domestic-section {
    background: linear-gradient(135deg, #fef7f0 0%, #fef2e8 100%);
}

.iwebt-domestic-section::before {
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(220, 38, 38, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
}

/* Domestic Marker Colors */
.domestic-marker.marker-primary .marker-dot {
    background: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.domestic-marker.marker-success .marker-dot {
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
}

.domestic-marker.marker-danger .marker-dot {
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

.domestic-marker.marker-warning .marker-dot {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.3);
}

.domestic-marker.marker-info .marker-dot {
    background: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.3);
}

/* Domestic Tooltip */
.domestic-tooltip {
    min-width: 200px;
}

.tooltip-region {
    font-size: 0.8rem;
}

.tooltip-dealer {
    font-size: 0.85rem;
}

.tooltip-phone {
    color: #64748b;
}

/* Dealer Cards (Domestic Map) */
.dealer-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.dealer-card:hover,
.dealer-card.highlighted {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.dealer-card.highlighted {
    border-left: 3px solid var(--bs-primary) !important;
}

.dealer-icon .badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot-small {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    animation: statusBlink 1.5s ease-in-out infinite;
}

.dealer-contact .btn {
    font-size: 0.8rem;
}

/* ==========================================
   STATS SECTION (EXPORT MAP)
   ========================================== */


.export-stats .stat-value {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item {
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 0.5rem;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (max-width: 992px) {
    .marker-dot {
        width: 14px;
        height: 14px;
    }

    .map-marker.source .marker-dot {
        width: 20px;
        height: 20px;
    }

    .marker-tooltip {
        min-width: 160px;
        padding: 10px 14px;
    }
}

@media (max-width: 768px) {
    .marker-dot {
        width: 12px;
        height: 12px;
    }

    .map-marker.source .marker-dot {
        width: 16px;
        height: 16px;
    }

    .marker-tooltip {
        min-width: 140px;
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .source-label {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .map-legend {
        gap: 1rem !important;
        font-size: 0.8rem;
    }

    .country-card .card-body,
    .dealer-card .card-body {
        padding: 0.75rem !important;
    }

    .dealer-card .dealer-icon .badge {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .marker-dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .map-marker.source .marker-dot {
        width: 14px;
        height: 14px;
    }

    .marker-tooltip {
        display: none; /* Mobilde tooltip yerine card'lara yönlendir */
    }

    .map-marker.highlighted .marker-tooltip {
        display: block;
        min-width: 120px;
    }

    .legend-item {
        font-size: 0.75rem;
    }

    .export-stats .stat-value {
        font-size: 1.75rem !important;
    }

    .stat-icon {
        font-size: 2rem;
    }
}

/* ==========================================
   ANIMATION CLASSES
   ========================================== */

.map-marker {
    animation: markerFadeIn 0.5s ease forwards;
}

@keyframes markerFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Staggered animations for markers */
.map-marker:nth-child(1) { animation-delay: 0.1s; }
.map-marker:nth-child(2) { animation-delay: 0.15s; }
.map-marker:nth-child(3) { animation-delay: 0.2s; }
.map-marker:nth-child(4) { animation-delay: 0.25s; }
.map-marker:nth-child(5) { animation-delay: 0.3s; }
.map-marker:nth-child(6) { animation-delay: 0.35s; }
.map-marker:nth-child(7) { animation-delay: 0.4s; }
.map-marker:nth-child(8) { animation-delay: 0.45s; }
.map-marker:nth-child(9) { animation-delay: 0.5s; }
.map-marker:nth-child(10) { animation-delay: 0.55s; }
.map-marker:nth-child(n+11) { animation-delay: 0.6s; }

/* Card animations */
.country-card,
.dealer-card {
    animation: cardFadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes cardFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-card:nth-child(1),
.dealer-card:nth-child(1) { animation-delay: 0.1s; }
.country-card:nth-child(2),
.dealer-card:nth-child(2) { animation-delay: 0.15s; }
.country-card:nth-child(3),
.dealer-card:nth-child(3) { animation-delay: 0.2s; }
.country-card:nth-child(4),
.dealer-card:nth-child(4) { animation-delay: 0.25s; }
.country-card:nth-child(5),
.dealer-card:nth-child(5) { animation-delay: 0.3s; }
.country-card:nth-child(6),
.dealer-card:nth-child(6) { animation-delay: 0.35s; }
.country-card:nth-child(7),
.dealer-card:nth-child(7) { animation-delay: 0.4s; }
.country-card:nth-child(8),
.dealer-card:nth-child(8) { animation-delay: 0.45s; }
.country-card:nth-child(n+9),
.dealer-card:nth-child(n+9) { animation-delay: 0.5s; }

/* product baslar */

/**
 * Products Styles
 * @package iWebt
 * @version 2.3.1
 */

/* ==========================================
   PRODUCT CARDS - GRID VIEW (Default)
   ========================================== */

.product-card-inner {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

/* Grid View - Row içindeki column ayarları */
.products-grid:not(.list-view) .product-card-inner > .row {
    flex-direction: column;
}

.products-grid:not(.list-view) .product-card-image-col,
.products-grid:not(.list-view) .product-card-content-col {
    width: 100%;
    max-width: 100%;
    /* flex: 0 0 100%; */
}

/* Product Image */
.product-card-image {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.products-grid:not(.list-view) .product-card-image {
    aspect-ratio: 1;
}

.product-card-image img {
    transition: transform 0.5s ease;
}

.product-card-inner:hover .product-card-image img {
    transform: scale(1.05);
}

/* Product Badges */
.product-badges .badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4em 0.8em;
}

/* In Cart Badge on Image */
.in-cart-badge .badge {
    font-size: 0.75rem;
    padding: 0.5em 1em;
}

/* Product Title */
.product-title {
    font-size: 1rem;
    line-height: 1.4;
}

.product-title a {
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a:hover {
    color: var(--bs-primary) !important;
}

/* Visibility helpers for Grid/List */
.d-grid-only {
    display: block !important;
}

.d-list-only {
    display: none !important;
}

/* ==========================================
   PRODUCT CARDS - LIST VIEW
   ========================================== */

.products-grid.list-view .product-item {
    flex: 0 0 100%;
    max-width: 100%;
}

.products-grid.list-view .product-card-inner > .row {
    flex-direction: row;
    flex-wrap: nowrap;
}

/* List View - Image Column */
.products-grid.list-view .product-card-image-col {
    flex: 0 0 200px;
    max-width: 200px;
    min-width: 200px;
}

.products-grid.list-view .product-card-image {
    height: 100%;
    min-height: 180px;
    aspect-ratio: auto;
}

.products-grid.list-view .product-card-image img {
    border-radius: 0.375rem 0 0 0.375rem;
}

/* List View - Content Column */
.products-grid.list-view .product-card-content-col {
    flex: 1;
    min-width: 0;
}

/* List View - Title larger */
.products-grid.list-view .product-title {
    font-size: 1.15rem;
    -webkit-line-clamp: 1;
}

/* List View - Visibility */
.products-grid.list-view .d-grid-only {
    display: none !important;
}

.products-grid.list-view .d-list-only {
    display: block !important;
}

/* List View - Footer buttons full width on mobile */
.products-grid.list-view .card-footer .d-flex {
    flex-wrap: wrap;
}

.products-grid.list-view .card-footer .btn {
    flex: 1;
    min-width: 100px;
}

/* ==========================================
   ADD TO CART MODAL
   ========================================== */

#addToCartModal .modal-content {
    border-radius: 1rem;
    overflow: hidden;
}

#addToCartModal .modal-header {
    background: linear-gradient(135deg, var(--bs-primary), #4f46e5);
    color: white;
    border: none;
    padding: 1.25rem 1.5rem;
}

#addToCartModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#addToCartModal .modal-header .btn-close:hover {
    opacity: 1;
}

#addToCartModal .modal-body {
    padding: 1.5rem;
}

#addToCartModal .modal-footer {
    border-top: 1px solid #f1f5f9;
    padding: 1rem 1.5rem;
}

/* Product Preview in Modal */
.modal-product-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-product-image {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-info {
    flex: 1;
    min-width: 0;
}

.modal-product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-product-meta {
    font-size: 0.875rem;
    color: #64748b;
}

/* Quantity Input in Modal */
.quantity-input-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quantity-input-group .btn {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.quantity-input-group input {
    width: 80px;
    height: 44px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* Already in cart message */
.already-in-cart-msg {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

/* ==========================================
   PRODUCT ARCHIVE SIDEBAR
   ========================================== */

.products-sidebar .filter-widget {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.products-sidebar .card-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 1rem 1.25rem;
}

.products-sidebar .card-header h5 {
    font-size: 1rem;
    font-weight: 600;
}

/* Category Filter */
.category-filter a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.category-filter a:hover {
    color: var(--bs-primary) !important;
    padding-left: 5px;
}

.category-filter a.active {
    color: var(--bs-primary) !important;
}

/* Tags Cloud */
.tags-cloud .badge {
    transition: all 0.2s ease;
    cursor: pointer;
}

.tags-cloud .badge:hover {
    background: var(--bs-primary) !important;
    color: white !important;
}

/* Toolbar */
.products-toolbar {
    background: #f8fafc !important;
}

.view-mode .btn.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: white;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* ==========================================
   PRODUCT DETAIL PAGE
   ========================================== */

/* Gallery */
.product-gallery .main-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
}

.product-gallery .main-image {
    position: relative;
}

.product-gallery .main-image img {
    transition: transform 0.3s ease;
    max-height: 400px;
    object-fit: contain;}

/* Thumbnail Gallery */
.thumbnail-gallery {
    margin-top: 1rem;
}

.thumb-item {
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--bs-primary);
    opacity: 1;
}

.thumb-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Variants */
.variant-item .card {
    transition: all 0.3s ease;
    min-width: 100px;
}

.variant-item .card:hover {
    border-color: var(--bs-primary) !important;
    transform: translateY(-2px);
}

.variant-item.active .card {
    border-width: 2px !important;
}

/* Tabs */
#productTabs .nav-link {
    color: #64748b;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

#productTabs .nav-link:hover {
    color: var(--bs-primary);
    border-color: transparent;
}

#productTabs .nav-link.active {
    color: var(--bs-primary);
    border-bottom-color: var(--bs-primary);
    background: transparent;
}

/* Specifications Table */
.product-specs table th {
    background: #f8fafc;
    font-weight: 600;
}

/* Image Zoom Modal */
#imageZoomModal .modal-content {
    background: transparent;
}

#imageZoomModal img {
    max-height: 90vh;
    object-fit: contain;
}

/* ==========================================
   SUPPLIERS SECTION
   ========================================== */

.iwebt-suppliers-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.supplier-card {
    transition: all 0.3s ease;
}

.supplier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.supplier-link {
    text-decoration: none;
    color: inherit;
}

.supplier-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.supplier-card:hover .supplier-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.supplier-name {
    font-size: 0.95rem;
    color: #1e293b;
}

.supplier-category {
    font-size: 0.7rem;
}



/* ==========================================================================
   SUPPLIERS SECTION - 3x3 Grid Slider
   ========================================================================== */

.iwebt-suppliers-section {
    overflow: hidden;
}

/* Sol Taraf İçerik */
.suppliers-content .section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.suppliers-content .section-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.suppliers-content .section-desc {
    font-size: 1rem;
    line-height: 1.7;
}

/* Slider Wrapper */
.suppliers-slider-wrapper {
    position: relative;
}

/* Logo Grid */
.suppliers-grid {
    padding: 0.5rem;
}

/* Logo Card */
.supplier-logo-card {
    background: #fff;
    border-radius: 12px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom:5px;
}

.supplier-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-primary);
}

/* Logo Link */
.supplier-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Logo Image */
.supplier-logo {
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.supplier-logo-card:hover .supplier-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Placeholder (logo yoksa) */
.supplier-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #adb5bd;
    font-size: 0.75rem;
    text-align: center;
}

.supplier-placeholder i {
    font-size: 1.5rem;
}

.supplier-placeholder span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Swiper Pagination */
.suppliers-pagination {
    position: relative;
    bottom: auto !important;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.suppliers-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #dee2e6;
    opacity: 1;
    transition: all 0.3s ease;
}

.suppliers-pagination .swiper-pagination-bullet-active {
    background: var(--bs-primary);
    width: 30px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .suppliers-content {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .suppliers-content .section-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .supplier-logo-card {
        height: 80px;
        padding: 1rem;
    }
    
    .supplier-logo {
        max-height: 45px;
    }
}

@media (max-width: 575.98px) {
    .supplier-logo-card {
        height: 70px;
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .supplier-logo {
        max-height: 35px;
    }
    
    .suppliers-grid .row {
        --bs-gutter-x: 0.5rem;
        --bs-gutter-y: 0.5rem;
    }
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 991px) {
    .sticky-sidebar {
        position: static;
    }
    
    .products-sidebar {
        margin-bottom: 2rem;
    }

    /* List view image smaller on tablet */
    .products-grid.list-view .product-card-image-col {
        flex: 0 0 150px;
        max-width: 150px;
        min-width: 150px;
    }
}

@media (max-width: 767px) {
    .product-gallery .thumb-item img {
        width: 60px;
        height: 60px;
    }
    
    .variant-item .card {
        min-width: 80px;
    }
    
    #productTabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* List view stacks on mobile */
    .products-grid.list-view .product-card-inner > .row {
        flex-direction: column;
    }

    .products-grid.list-view .product-card-image-col {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .products-grid.list-view .product-card-image {
        min-height: auto;
        aspect-ratio: 16/9;
    }

    .products-grid.list-view .product-card-image img {
        border-radius: 0.375rem 0.375rem 0 0;
    }

    .products-grid.list-view .d-grid-only {
        display: block !important;
    }

    .products-grid.list-view .d-list-only {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .product-card .card-body {
        padding: 0.75rem !important;
    }
    
    .product-title {
        font-size: 0.9rem !important;
    }

    /* Modal adjustments */
    .modal-product-preview {
        flex-direction: column;
        text-align: center;
    }

    .modal-product-image {
        width: 100px;
        height: 100px;
    }

    .quantity-input-group .btn {
        width: 40px;
        height: 40px;
    }

    .quantity-input-group input {
        width: 70px;
        height: 40px;
        font-size: 1.1rem;
    }
}







/* Content Overlay Styles */
.content-light-overlay {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.content-dark-overlay {
    background: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
}

.content-dark-overlay a {
    color: #8bb9fe;
}

.content-dark-overlay h1,
.content-dark-overlay h2,
.content-dark-overlay h3,
.content-dark-overlay h4,
.content-dark-overlay h5,
.content-dark-overlay h6 {
    color: #fff;
}

.content-card-overlay {
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-glass-overlay {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Sidebar Sticky */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* Related Posts Card Small Fix */
.related-posts .blog-card-small {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-posts .blog-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.related-posts .blog-card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}




/* Widget Styles */
.widget.card {
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget .card-body {
    padding: 1.25rem;
}

.widget .widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-dark);
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

/* Block widget başlıkları için */
.widget .wp-block-heading {
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 2px solid var(--bs-primary);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}