@charset "UTF-8";
/* ==========================================================================
   OPENCART PROFESSIONAL THEME SYSTEM
   - Modern CSS Custom Properties Architecture
   - Theme-agnostic Component System
   - Optimized for Performance and Maintainability
   ========================================================================== */
/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (CSS Variables)
   ========================================================================== */
:root {
  /* Color Palette */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --primary: #007bff;
  --secondary: #ef7e1a;
  --musteri-rengi-1: #ef7e1a;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  /* Semantic Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-tertiary: #e9ecef;
  --bg-surface: #ffffff;
  --bg-overlay: #ffffff;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #6c757d;
  --text-inverse: #ffffff;
  --border-primary: #dee2e6;
  --border-secondary: #e9ecef;
  --border-light: #f8f9fa;
  --border-dark: #343a40;
  /* Interactive States */
  --link-color: #007bff;
  --link-hover: #0056b3;
  --focus-color: #80bdff;
  --focus-shadow: rgba(0, 123, 255, 0.25);
  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 3rem;
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.5rem;
  --radius-xl: 1rem;
  /* Typography */
  --font-size-sm: 0.860rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --line-height-base: 1.5;
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition: all 0.2s ease-in-out;
  --transition-fade: opacity 0.15s linear;
  --transition-collapse: height 0.35s ease;
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1050;
  --z-popover: 1070;
  --z-tooltip: 1080;
}
/* ==========================================================================
   2. DARK THEME OVERRIDES
   ========================================================================== */
[data-bs-theme="dark"] {
  --body-bg-color: radial-gradient(circle at top right,
      #111827 100%,
      /* çok hafif beyaz ışık efekti */
      #202e42 60%,
      /* #111827'in açık tonu */
      #111827 70%
      /* ana koyu renk */
    );
  --primary: #182339;
  --secondary: #ef7e1a;
  --success: #198754;
  --info: #0dcaf0;
  --warning: #ffc107;
  --danger: #dc3545;
  --bg-primary: #182339;
  --bg-secondary: #253760;
  --bg-tertiary: #172033;
  --bg-surface: #111827;
  --bg-overlay: #2d3338;
  --text-primary: #f0f0f0;
  --text-secondary: #adb5bd;
  --text-muted: #6c757d;
  --text-inverse: #fff;
  --text-white: #ffffff;
  --btn-cart-color: #6c757d;
  --text-body-secondary: #ffffff;
  /*Product Details */
  --product-body-primary: var(--primary);
  --border-primary: #223253;
  --border-secondary: #182339;
  --border-light: #6c757d;
  --border-dark: #000000;
  --bg-header-menu: #182339;
  --header-menu-link: #adb5bd;
  --text-sepet-icon: #fff;
  --text-account-icon: #fff;
  --text-category-icon: #fff;
  --text-wishlist-icon: #adb5bd;
  --bg-footer-primary: #192338;
  --link-color: #6ea8fe;
  --link-hover: #9ec5fe;
  --focus-color: #86b7fe;
  --focus-shadow: rgba(13, 110, 253, 0.25);
  /* Blog */
  --blog-bg-transparent: rgba(13, 110, 253, 0.25);
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.45);
}
/* Blog */
.blog-header-body {
  background-color: var(--blog-bg-transparent);
}
/* ==========================================================================
   4. BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: var(--default-font);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background: var(--body-bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: background-color var(--transition-base), color var(--transition-base);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* ==========================================================================
   5. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
}
p {
  font-size: var(--font-size-sm);
  margin-top: 0;
  margin-bottom: var(--space-md);
}
a {
  text-decoration: none;
  transition: color var(--transition-fast);
  cursor: pointer;
}
a:hover, a:focus {
  color: var(--link-hover);
}
.contact-page h1 {
  color: var(--text-white) !important;
  text-shadow: -3px 0px 0px var(--text-primary);
}
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: var(--space-sm);
  font-size: calc(var(--font-size-base) * 1.5);
  line-height: inherit;
  color: var(--text-primary);
  border: 0;
  border-bottom: 1px solid var(--border-primary);
}
label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-primary);
}
/* Required field indicator */
label.required::before, label:has(+ input:required)::before, label:has(+ select:required)::before, label:has(+ textarea:required)::before, label:has(+ div *[required])::before {
  content: "* ";
  color: var(--danger);
  font-weight: 600;
}
/* ==========================================================================
   6. COMPONENT SYSTEM 
   ========================================================================== */
/* Cards */
.card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-secondary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.card:hover {
  box-shadow: var(--shadow);
}
/* Buttons */
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem var(--focus-shadow);
}
.btn-primary {
  color: var(--text-inverse) !important;
  background-color: var(--link-primary) !important;
  border: none !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: var(--link-primary-hover) !important;
}
.btn-secondary {
  color: var(--text-inverse) !important;
  background-color: var(--secondary) !important;
  border: none !important;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--primary) !important;
  color: var(--text-inverse) !important;
  border: none !important;
}
.btn-outline-primary {
  color: var(--text-primary) !important;
  background-color: transparent !important;
  border-color: var(--border-primary) !important;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: var(--text-inverse) !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.btn-link {
  color: var(--text-primary) !important;
  text-decoration: underline;
  background-color: transparent;
}
/* Form Controls */
.form-control:focus, .form-select:focus {
  color: var(--text-primary);
  background-color: var(--bg-surface);
  border-color: var(--focus-color);
  outline: 0;
  box-shadow: 0 0 0 0.2rem var(--focus-shadow);
}
.form-check-input {
  cursor: pointer;
}
.form-check-input:checked {
  background-color: var(--musteri-rengi-1) !important;
  border-color: var(--musteri-rengi-1) !important;
}
/* ==========================================================================
   7. OPENCART SPECIFIC COMPONENTS
   ========================================================================== */
/* Header */
header {
  background-color: var(--bg-surface);
  border: unset;
}
/* Top Bar */
#top {
  border-bottom: 1px solid var(--border-secondary);
  background-color: var(--musteri-rengi-1);
  color: var(--text-inverse);
  font-size: 15px !important;
  font-weight: 500;
}
#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  color: var(--text-secondary);
  vertical-align: middle;
  padding: var(--space-sm) 0 var(--space-xs) 0;
  transition: color var(--transition-fast);
}
#top .list-inline-item > a:hover, #top .list-inline-item .dropdown > a:hover {
  color: var(--text-primary);
}
/* Navigation */
/* Logo */
#logo img {
  max-height: 50px;
  max-width: 90%;
}
/* Product Components */
.product-thumb {
  position: relative;
  height: 100%;
  background-color: var(--bg-surface);
  transition: all var(--transition-base);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  border: 1px solid var(--border-secondary);
}
.product-thumb:hover {
  border: 1px solid var(--border-primary) !important;
  box-shadow: var(--shadow-sm);
}

.product-thumb .image {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: var(--bs-black);
	height: 180px;
	width: 100%;
}


.product-thumb .description {
  padding: var(--space-sm);
  height: 85px !important;
  max-height: 85px;
}
.product-thumb .description h4 {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}
.product-thumb .button button:hover {
  color: var(--text-primary);
  background-color: var(--bg-secondary);
}
.product-thumb .button button + button {
  border-left: 1px solid var(--border-primary);
}
.product-thumb .button button i {
  transition: transform var(--transition-base);
}
.product-thumb .button button:hover i {
  animation: iconBounce 0.5s ease;
}
/* Price Components */
.price {
  color: var(--text-primary);
}
.price-new {
  font-weight: 600;
  color: var(--danger);
}
.price-old {
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-tax {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  display: block;
}
/* ==========================================================================
   8. LAYOUT COMPONENTS
   ========================================================================== */
/* Container System */
#container {
  width: 100%;
  min-height: 100vh;
  position: relative;
}
#content {
  min-height: 300px;
}
.container-fluid {
  max-width: 1920px;
}
/* Footer */
.footer-top {
  color: var(--text-secondary);
}
footer {
  background-color: var(--bg-footer-primary);
  border-top: 1px solid var(--border-primary);
  color: var(--text-secondary);
}
footer h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin: var(--space-sm) 0;
}
footer a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
footer a:hover {
  color: var(--text-primary);
}
footer hr {
  border-top: none;
  border-bottom: 1px solid var(--border-primary);
}
/* ==========================================================================
   9. UTILITY COMPONENTS
   ========================================================================== */
/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: var(--z-fixed);
  background: var(--bg-surface);
  border: 2px solid var(--border-primary);
  border-radius: 50px;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  transition: all var(--transition-base);
}
.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.theme-toggle i {
  color: var(--text-primary);
  font-size: 1.2rem;
  margin: 0 var(--space-xs);
  transition: all var(--transition-base);
}
/* Alerts */
.alert {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  border: 1px solid var(--border-primary);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}
.alert-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background-color: var(--primary);
  animation: fillAlertBar 4s linear forwards;
  z-index: 1;
}
/* Alert Container */
/* Modal Components */
.modal-content {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-primary);
  color: var(--text-primary);
  border-radius: var(--radius-lg);
}
.modal-header {
  border-bottom: 1px solid var(--border-primary);
}
.modal-footer {
  border-top: 1px solid var(--border-primary);
}
/* Navigation Tabs */
.nav-tabs {
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-primary);
}
.nav-tabs .nav-link {
  color: var(--text-primary);
  border: 1px solid transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: all var(--transition-fast);
}
.nav-tabs .nav-link:hover {
  border-color: var(--border-primary);
  color: var(--link-hover);
}
.nav-tabs .nav-link.active {
  background-color: var(--bg-surface);
  border-color: var(--border-primary) var(--border-primary) var(--bg-surface);
  color: var(--text-primary);
}
/* Accordion */
.accordion-button {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  border: unset;
}
.accordion-button:not(.collapsed) {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}
.accordion-body {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}
/* Pagination */
.pagination-modern {
  --bs-pagination-padding-x: var(--space-md);
  --bs-pagination-padding-y: var(--space-sm);
  --bs-pagination-font-size: var(--font-size-base);
  --bs-pagination-border-width: 2px;
  --bs-pagination-border-radius: var(--radius-lg);
  gap: var(--space-sm);
}
.pagination-modern .page-link {
  border-radius: var(--bs-pagination-border-radius) !important;
  border: var(--bs-pagination-border-width) solid transparent;
  font-weight: 500;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  min-width: 3rem;
  text-align: center;
  background: var(--bg-surface);
  color: var(--text-secondary);
  border-color: var(--border-secondary);
}
.pagination-modern .page-link:hover {
  background: var(--primary);
  color: var(--text-inverse) !important;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.pagination-modern .page-item.active .page-link {
  background: var(--primary);
  color: var(--text-inverse);
  border-color: var(--primary);
}
.pagination-modern .page-item.disabled .page-link {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}
/* ==========================================================================
   10. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 576px) {
  .pagination-modern {
    --bs-pagination-padding-x: var(--space-sm);
    --bs-pagination-padding-y: var(--space-xs);
    --bs-pagination-font-size: var(--font-size-sm);
    gap: var(--space-xs);
  }
  .pagination-modern .page-link {
    min-width: 2.5rem;
  }
  .btn {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-sm);
  }
}
@media (min-width: 768px) {
  #logo {
    text-align: left;
  }
  .col-form-label {
    text-align: right;
  }
}
@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0;
  }
  .product-list .product-thumb .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-list .product-thumb .button {
    border-left: 1px solid var(--border-primary);
    width: calc(100% - var(--space-md));
    margin-left: var(--space-md);
  }
}
/* ==========================================================================
   11. ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes iconBounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fillAlertBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.3;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 0.2;
  }
  20% {
    opacity: 1;
  }
}
/* ==========================================================================
   12. UTILITY CLASSES
   ========================================================================== */
/* Text Utilities */
.text-primary {
  color: var(--text-primary) !important;
}
.text-secondary {
  color: var(--text-secondary) !important;
}
.text-muted {
  color: var(--text-muted) !important;
}
/* Background Utilities */
.bg-primary {
  background-color: var(--bg-primary) !important;
}
.bg-secondary {
  background-color: var(--bg-secondary) !important;
}
.bg-surface {
  background-color: var(--bg-surface) !important;
}
/* Border Utilities */
.border {
  border-color: var(--border-primary) !important;
}
.border-top {
  border-top-color: var(--border-primary) !important;
}
.border-bottom {
  border-bottom-color: var(--border-primary) !important;
}
/* Layout Utilities */
.no-click {
  pointer-events: none;
}
.overflow-y-auto-only {
  max-height: auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
/* Striped Content */
.striped-divs > div:nth-child(odd) {
  background-color: var(--surface) !important;
}
.striped-divs > div:nth-child(even) {
  background-color: var(--bg-tertiary) !important;
}
/* Rating System */
.rating .fa-stack {
  width: 20px;
}
.rating .fa-star {
  color: var(--text-secondary);
  font-size: 15px;
  transition: color var(--transition-fast);
}
.rating .fa-star.checked {
  color: var(--warning);
}
/* Loader Animation */
.loader-dots {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}
.loader-dots span {
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 50%;
  animation: bounce 0.6s infinite ease-in-out;
}
.loader-dots span:nth-child(2) {
  animation-delay: 0.1s;
}
.loader-dots span:nth-child(3) {
  animation-delay: 0.2s;
}
/* ==========================================================================
   13. LEGACY SUPPORT & OVERRIDES
   ========================================================================== */
/* Bootstrap Overrides */
.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--text-primary);
  background-color: var(--bg-surface);
}
/* Cookie Notice */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: var(--z-modal);
  opacity: 0.95;
  color: var(--text-inverse);
  background: var(--text-primary);
}
#cookie div {
  font-size: var(--font-size-base);
  color: var(--text-inverse);
}
/* Theme-Specific Enhancements */
[data-bs-theme="light"] .card {
  border-radius: var(--radius-lg);
}
[data-bs-theme="light"] .product-body {
  background-color: var(--product-body-primary);
}
[data-bs-theme="light"] .border-color-primary {
  border-color: var(--border-light) !important;
}
[data-bs-theme="light"] .product-tabs {
  background-color: var(--bg-primary);
}
[data-bs-theme="light"] .form-control, [data-bs-theme="light"] .form-select {
  border-radius: var(--radius-lg);
}
[data-bs-theme="light"] .product-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
[data-bs-theme="light"] .modal-content {
  border-radius: var(--radius-lg);
  border: none;
}
[data-bs-theme="dark"] .nav-tabs .nav-link {
  border-radius: unset;
  margin-right: 2px;
  background-color: var(--bg-secondary);
}
[data-bs-theme="dark"] .nav-tabs .nav-link.active {
  border-radius: unset;
  margin-right: 2px;
  background-color: var(--bg-primary);
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-radius: unset;
  border-color: transparent !important;
}
[data-bs-theme="light"] .alert {
  border-radius: var(--radius-xl);
  border: none;
}
[data-bs-theme="light"] .header-search-button {
  border-radius: 0px var(--radius-xl) var(--radius-xl) 0rem;
}
[data-bs-theme="dark"] .invert-img {
  filter: unset;
}
[data-bs-theme="dark"] .product-tabs {
  background-color: var(--bg-primary);
}
[data-bs-theme="dark"] .product-body {
  background-color: var(--product-body-primary);
}
[data-bs-theme="dark"] .border-color-primary {
  border-color: var(--border-primary) !important;
}

[data-bs-theme="dark"] .form-control {
  border-radius: var(--radius-lg);
  background-color: var(--bg-surface);
  border-color: var(--border-primary);
  color: var(--text-inverse) !important;
}
[data-bs-theme="dark"] .nav-tabs .nav-link {
  border-radius: unset;
  margin-right: 2px;
  background-color: var(--bg-secondary);
}
[data-bs-theme="dark"] .nav-tabs .nav-link.active {
  border-radius: unset;
  margin-right: 2px;
  background-color: var(--bg-primary);
}

[data-bs-theme="dark"] .btn-primary {
	background-color: var(--bg-primary) !important;
	border: solid 1px var(--border-primary) !important;
	color: var(--text-primary) !important;
}

[data-bs-theme="dark"] .btn-primary:hover, [data-bs-theme="dark"] .btn-primary:focus {
  background-color: var(--bg-tertiary) !important;
  border: inset 1px transparent !important;
  color: var(--text-primary) !important;
}
.form-select {
  color: var(--text-primary);
  background-color: var(--bg-primary);
  border-color: var(--border-primary);
}
/* ==========================================================================
   14. ADVANCED COMPONENTS
   ========================================================================== */
/* Blog Components */
.blog-thumb {
  border: 1px solid var(--border-primary);
  margin-bottom: var(--space-md);
  background-color: var(--bg-surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition-base);
}
.blog-thumb:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.blog-thumb h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: var(--space-md);
  overflow: hidden;
}
.blog-thumb .image img {
  transition: transform var(--transition-base);
}
.blog-thumb .description {
  padding: var(--space-md);
  color: var(--text-primary);
}
/* Cart Components */
.cart {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius);
}
.cart-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-primary);
  padding: var(--space-md);
  border-radius: var(--radius) var(--radius) 0 0;
}
.total {
  background-color: var(--bg-tertiary);
  padding: var(--space-md);
  margin: var(--space-md);
}
/* Sidebar Components */
.sidebar {
  background-color: var(--bg-surface);
  border-right: 1px solid var(--border-primary);
  min-height: 100vh;
}
/* Offcanvas Components */
.offcanvas {
  background-color: var(--bg-surface);
  color: var(--text-primary);
}
.offcanvas-header {
  padding: var(--space-lg) var(--space-md);
  background: linear-gradient(-45deg, var(--bg-tertiary), var(--bg-surface));
  border-bottom: 1px solid var(--bg-tertiary);
}
.offcanvas-body {
  padding: var(--space-md);
}
/* Form Switches */
.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}
.form-switch .form-check-input {
  background-color: var(--bg-tertiary);
  border-color: var(--border-primary);
  transition: all var(--transition-base);
}
.form-switch .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.form-switch .form-check-input:focus {
  box-shadow: 0 0 0 0.25rem var(--focus-shadow);
}
.form-check-input-lg {
  width: 3rem !important;
  height: 1.5rem;
}
/* Badge Components */
/* Dropdown Components */
.dropdown-menu {
  color: var(--text-primary);
  border: 1px solid var(--bg-tertiary) !important;
  background: var(--bg-secondary);
  box-shadow: unset !important;
}
.dropdown-item {
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  transition: all var(--transition-fast);
}
.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}
.dropdown-item.active {
  background-color: var(--primary);
  color: var(--text-inverse);
}
.dropdown-divider {
  border-top: 1px solid var(--border-primary);
  margin: var(--space-xs) 0;
}
/* Toast Components */
.toast {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-primary);
  color: var(--text-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.toast-header {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-primary);
  color: var(--text-primary);
}
.toast-body {
  padding: var(--space-md);
}
/* Progress Components */
.progress {
  background-color: var(--bg-tertiary);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 2px var(--shadow-sm);
}
.progress-bar {
  background-color: var(--primary);
  transition: width var(--transition-base);
}
/* Spinner Components */
.spinner-border {
  color: var(--primary);
}
.spinner-grow {
  color: var(--primary);
}
/* List Group Components */
.list-group {
  border-radius: var(--radius);
  overflow: hidden;
}
.list-group-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-primary);
  color: var(--text-primary);
  padding: var(--space-md);
  transition: all var(--transition-fast);
}
.list-group-item:hover {
  background-color: var(--bg-secondary);
}
.list-group-item.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-inverse);
}
.list-group-item:first-child {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.list-group-item:last-child {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
/* ==========================================================================
   15. PERFORMANCE OPTIMIZATIONS
   ========================================================================== */
/* GPU Acceleration for Animations */
.btn, .card, .product-thumb, .theme-toggle, .pagination-modern .page-link {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, box-shadow;
}
/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .product-thumb:hover, .btn:hover, .card:hover {
    transform: none !important;
  }
}
/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --border-primary: #000000;
    --border-secondary: #000000;
    --shadow-sm: 0 0 0 2px #000000;
    --shadow: 0 0 0 3px #000000;
    --shadow-lg: 0 0 0 4px #000000;
  }
  [data-bs-theme="dark"] {
    --border-primary: #ffffff;
    --border-secondary: #ffffff;
    --shadow-sm: 0 0 0 2px #ffffff;
    --shadow: 0 0 0 3px #ffffff;
    --shadow-lg: 0 0 0 4px #ffffff;
  }
}
/* Print Styles */
@media print {
  .theme-toggle, .btn, .offcanvas, .modal {
    display: none !important;
  }
  body {
    background: white !important;
    color: black !important;
  }
  .card, .product-thumb {
    border: 1px solid #000 !important;
    box-shadow: none !important;
  }
}
/* ==========================================================================
   16. ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */
/* Focus Indicators */
:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}
button:focus-visible, .btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}
/* Screen Reader Only Content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
/* Skip Links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: var(--text-inverse);
  padding: 8px;
  text-decoration: none;
  border-radius: var(--radius);
  z-index: var(--z-tooltip);
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 6px;
}
/* High Contrast Text */
.text-contrast-high {
  color: var(--text-primary);
  font-weight: 600;
}
/* ==========================================================================
   17. ERROR HANDLING & FALLBACKS
   ========================================================================== */
/* Fallback for CSS Custom Properties */
@supports not (color: var(--primary)) {
  body {
    background-color: #ffffff;
    color: #212529;
  }
  .btn-primary {
    background-color: #007bff !important;
    border-color: #007bff !important;
  }
  .btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
  }
  .card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
  }
}
/* Image Loading Fallbacks */
img {
  max-width: 100%;
  height: auto;
}
img[src=""], img:not([src]) {
  opacity: 0;
}
/* Loading States */
.loading {
  position: relative;
  pointer-events: none;
}
.loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--border-primary);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ==========================================================================
   18. THEME DEMO SECTION
   ========================================================================== */
.theme-section {
  margin: var(--space-xl) 0;
  padding: var(--space-xl);
  background-color: var(--bg-secondary);
  border-radius: var(--radius);
  border: 1px solid var(--border-primary);
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.theme-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius);
  padding: var(--space-md);
  transition: all var(--transition-base);
}
.theme-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
/* ==========================================================================
   19. FINAL OPTIMIZATIONS
   ========================================================================== */
/* Font Loading Optimization */
@font-face {
  font-family: "System UI";
  src: local("system-ui"), local("-apple-system"), local("BlinkMacSystemFont");
  font-display: swap;
}
/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* Content Security */
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}
a {
  color: var(--text-primary) !important;
}
/* Genel ayarlar */
/* Header Menu Start */
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  padding: 8px 0;
  border: none;
  transition: color 0.15s ease-in-out;
  font-size: 0.95rem;
}
.dropdown-item:hover {
  background: none;
}
.dropdown-divider {
  margin: 15px 0;
}
.nav-link.dropdown-toggle::after {
  margin-left: 8px;
}
/* Desktop Hover Effects */
.navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}
/* Overlay for desktop dropdown */
.dropdown-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
/* Mobile Category Display */
/* Navbar Toggler */
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler i {
  color: white;
  font-size: 1.2rem;
}
/* Offcanvas Styles */
.offcanvas {
  width: 280px;
  max-width: 90%;
}
.offcanvas-title {
  font-weight: 600;
}
/* Mobile Navigation Drill-down System */
.offcanvas-nav {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--bg-header-menu);
  color: var(--text-primary);
}
.nav-level {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-header-menu);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.nav-level.active {
  transform: translateX(0);
}
.nav-level.next {
  transform: translateX(100%);
}
.nav-level.prev {
  transform: translateX(-100%);
}
.nav-item-wrapper:last-child {
  border-bottom: none;
}
.header-cart-button::before {
  content: "";
  font-family: "bootstrap-icons";
  font-size: 26px;
  color: var(--text-sepet-icon);
  display: inline-block;
  margin-right: 0px;
  line-height: 1;
  position: relative;
}
.header-cart-button:hover::before {
  animation: cartIconJump 0.4s ease forwards;
}
.header-account-button::before {
  content: "";
  font-family: "bootstrap-icons";
  font-size: 26px;
  color: var(--text-account-icon);
  position: relative;
  display: inline-block;
  margin-right: 0px;
  line-height: 1;
}
.header-account-button:hover::before {
  animation: cartIconJump 0.4s ease forwards;
}
.header-category-button::before {
  content: "";
  font-family: "bootstrap-icons";
  font-size: 26px;
  color: var(--text-category-icon);
  position: relative;
  display: inline-block;
  margin-right: 0px;
  line-height: 1;
}
.header-category-button:hover::before {
  animation: cartIconJump 0.4s ease forwards;
}
.btn-animation {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer !important;
  border: none !important;
  color: var(--btn-cart-color) !important;
  padding: 0px !important;
}
.btn-animation::before {
  content: var(--icon-content, "");
  font-family: "bootstrap-icons";
  color: var(--btn-cart-color) !important;
  position: relative;
  display: inline-block;
  font-size: 24px;
}
.product-thumb:hover .btn-animation::before {
  animation: cartIconJump 0.4s ease forwards;
}
.btn-animation-off {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer !important;
  border: none !important;
  color: var(--btn-cart-color) !important;
  padding: 0px !important;
}
.btn-animation-off::before {
  content: "";
  font-family: "bootstrap-icons";
  color: var(--btn-cart-color) !important;
  position: relative;
  display: inline-block;
  font-size: 24px;
}
.product-thumb:hover .btn-animation-off::before {
  animation: cartIconJump 0.4s ease forwards;
}
@keyframes pulseShadow {
  0%, 100% {
    box-shadow: inset 0 0 2px rgba(255, 25, 25, 0.2);
  }
  50% {
    box-shadow: inset 0 0 8px rgba(255, 238, 0, 0.4);
  }
}
.pulse-shadow {
  animation: pulseShadow 2s ease-in-out infinite;
  border: 1px solid transparent;
  /* sınır görünürlüğü için */
}
@keyframes cartIconJump {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 0;
    transform: translateY(8px);
    /* aşağı doğru kaybolur */
  }
  60% {
    opacity: 0;
    transform: translateY(-10px);
    /* yukarıdan yeniden girişe hazırlanır */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    /* yerine oturur */
  }
}
.product-thumb:hover .wishlist {
  opacity: 1 !important;
  animation: cartIconSlideRight 0.4s ease forwards;
}
@keyframes cartIconSlideRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  20% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.nav-link:hover {
  background-color: var(--bs-bg-body-tertiary-hover);
  color: #0d6efd;
}
.nav-link .active {
  background-color: rgb(var(--bs-body-color-rgb));
  border-radius: 7px;
}
.nav-link.has-children::after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #6c757d;
}
.back-button::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
}
.category-title {
  margin: 0;
}
/* Mobil menü linkleri */
.offcanvas-nav .nav-link {
  width: 100%;
  text-align: left;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.offcanvas-nav .nav-link.has-children::after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 1.1em;
  padding-left: 0.5rem;
}
.offcanvas-nav .nav-link:hover, .offcanvas-nav .nav-link:focus {
  background: var(--bg-surface);
  color: var(--text-primary);
  text-decoration: none;
}
.offcanvas-nav .nav-link.has-children:hover::after, .offcanvas-nav .nav-link.has-children:focus::after {
  color: var(--text-primary);
}
.category-title {
  color: var(--text-primary);
  padding: 10px 20px;
  margin: 0;
  background-color: var(--bg-tertiary);
  font-size: 0.95rem;
}
/* Header Menu End */
.rounded-lg {
  border-radius: 0.5rem !important;
}
.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 0.8rem;
  --bs-btn-font-size: 0.8rem;
}
.wishlist {
  opacity: 0 !important;
}
#toggle-theme {
  cursor: pointer;
}
@media (max-width: 1024px) {
  .icon-cart {
    padding: 0.3rem;
  }
  .wishlist {
    height: 26px !important;
    width: 26px !important;
    padding: 0 !important;
    opacity: 1 !important;
  }
  .product-controls .btn, .product-controls .form-control {
    font-size: 0.875rem;
    /* Küçük font */
  }
  .border-start-sm-only {
    border-left: none !important;
    /* LTR */
    border-right: none !important;
    /* RTL ihtimali */
  }
  .offcanvas-nav .nav-link {
    font-size: 0.95rem !important;
  }
}
/* Header Menu Start */
.header-menu-desktop {
  background-color: var(--bg-header-menu);
  padding: 0;
}
.header-menu-desktop li:hover {
  transition: all 0.3s ease;
}
.header-menu-desktop > li a {
  color: var(--header-main-menu-link) !important;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  -webkit-transition: var(--transition-slow);
  -o-transition: var(--transition-base);
  transition: var(--transition-base);
}
.header-menu-desktop li:hover a {
  color: var(--header-main-menu-link-hover) !important;
}
/* Header Menu End */
.cart-badge {
  height: 20px !important;
  width: 20px !important;
  background-color: var(--success);
  color: var(--text-inverse);
  border: none;
}
.carousel {
  border: none !important;
  border-radius: 0px;
  box-shadow: unset;
  margin-bottom: 50px;
  overflow: hidden;
}
.carousel .carousel-control-prev {
  opacity: 1;
  left: 20px;
  color: var(--text-primary);
}
.carousel .carousel-control-next {
  opacity: 1;
  right: 20px;
  color: var(--text-primary);
}
.carousel:hover .carousel-control-prev {
  opacity: 0.7;
  left: 20px;
  color: var(--text-secondary);
}
.carousel:hover .carousel-control-next {
  opacity: 0.7;
  right: 20px;
  color: var(--text-secondary);
}
.breadcrumb {
  padding: 10px 0.5rem;
}
.price-new {
  font-weight: 600 !important;
  color: var(--danger);
  font-size: 18px;
}
/* Blog Post Styles */

.card-text {
	color: #5c6d91;
}

.company-logo {
  max-height: 60px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .company-logo {
    max-height: 50px !important;
    object-fit: contain;
  }
  #logo img {
    max-width: 100%;
  }
  .header-cart-button::before {
    font-size: 20px;
    padding: 3px;
  }
  .header-account-button::before {
    font-size: 20px;
    padding: 3px;
  }
  .header-category-button::before {
    font-size: 20px;
    padding: 3px;
  }
  .nav-tabs .nav-link {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-tertiary);
    border-right: 1px solid var(--border-primary) !important;
    font-size: 13px;
  }
  .nav-tabs .nav-link:last-child {
    border-right: 1px solid transparent !important;
  }
  .footer-top {
    line-height: 32px;
  }
  .customer-border-bottom {
    border-bottom: 1px solid var(--bs-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}
.newsletter-form .form-control {
  height: 3rem;
  padding-left: 1.5rem;
}
.lh-32 {
  line-height: 32px !important;
}
.toast {
  transform: translateX(-60%);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.toast.showing, .toast.show {
  transform: translateX(0);
}
.btn-whatsapp {
  background-color: #25D366;
  color: #fff !important;
}
.btn-whatsapp:hover {
  background-color: #128C7E;
}
.card-header {
  color: var(--text-primary);
  background-color: unset;
}
.card-body {
  color: var(--text-primary);
}
.card-footer {
  color: var(--text-muted);
}

.text-box-limit {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: box;
  line-height: 26px;
  min-height: 70px;
  max-height: 70px;
  height: 70px;
  position: relative;
}
.text-box-limit-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: box;
  line-height: 26px;
  min-height: 55px;
  max-height: 55px;
  height: 55px;
  position: relative;
}
.text-box-limit-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: box;
  line-height: 26px;
  min-height: 80px;
  max-height: 80px;
  height: 80px;
  position: relative;
}

.btn-danger {
  color: var(--text-inverse) !important;
}
/* Sosyal Medya İkonları için Renk Düzenlemeleri */
.social-btn {
  --bs-btn-font-size: 1.8125rem;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
}
.btn-social {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-social i {
  transition: all 0.3s ease;
  color: var(--text-primary);
  font-size: 24px;
}
/* Hover efekti: ikon veya içerik hafif parlak */
.btn-social {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.btn-social::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
}
.btn-social:hover::before {
  right: 100%;
}
.btn-social:hover i {
  filter: brightness(1.3);
}


.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}


.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.feature-card .feature-icon i {
  color: var(--musteri-rengi-1);
}
.footer-top i {
  color: var(--musteri-rengi-1);
}
.thumb-slider .swiper-slide-thumb-active img {
  border-color: unset;
}
.mainmenu-fs-16 {
  font-size: 16px !important;
}
.shippingMethodName {
  color: var(--musteri-rengi-1);
}

.gradient-border {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: block;
}


.gradient-border::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 3px;
	border-radius: inherit;
	background: linear-gradient(80deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary), var(--bg-surface));
	/* -webkit-mask: linear-gradient(var(--bg-primary) 0 0) content-box, linear-gradient(var(--bg-secondary) 0 0); */
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	z-index: -1;
}


.card-footer {
	background-color: transparent !important;
	border-top: unset !important;
	padding:5px !important;
	height: 165px !important;
	max-height: 165px !important;
	min-height: 165px !important;
}



.image {
    overflow: hidden; /* taşan kısmı gizle */
}

.image img {
    display: block;
    width: 100%;
    height: auto;
}



/* End of Professional OpenCart Theme System */
